Relational Database Management System Oracle Corporation Database Computing
Relational Database Management System Oracle Corporation Database Computing
Relational Database Management System Oracle Corporation Database Computing
What is the maximum buffer size that can be specified using the
DBMS_OUTPUT.ENABLE function?
1000000
Can you use a commit statement within a database trigger?
Yes, if you are using autonomous transactions in the Database triggers
What is an UTL_FILE? What are different procedures and functions associated
with it?
The UTL_FILE package lets your PL/SQL programs read and write operating system
(OS) text files. It provides a restricted version of standard OS stream file input/output
(I/O).
Subprogram -Description
FOPEN function-Opens a file for input or output with the default line size.
IS_OPEN function -Determines if a file handle refers to an open file.
FCLOSE procedure -Closes a file.
FCLOSE_ALL procedure -Closes all open file handles.
GET_LINE procedure -Reads a line of text from an open file.
PUT procedure-Writes a line to a file. This does not append a line terminator.
NEW_LINE procedure-Writes one or more OS-specific line terminators to a file.
PUT_LINE procedure -Writes a line to a file. This appends an OS-specific line
terminator.
PUTF procedure -A PUT procedure with formatting.
FFLUSH procedure-Physically writes all pending output to a file.
FOPEN function -Opens a file with the maximum line size specified.
What are between database triggers and form triggers?
Database triggers are fired whenever any database action like INSERT, UPATE,
DELETE, LOGON LOGOFF etc occurs. Form triggers on the other hand are fired in
response to any event that takes place while working with the forms, say like navigating
from one field to another or one block to another and so on.
What is OCI. What are its uses?
OCI is Oracle Call Interface. When applications developers demand the most powerful
interface to the Oracle Database Server, they call upon the Oracle Call Interface (OCI).
OCI provides the most comprehensive access to all of the Oracle Database functionality.
The newest performance, scalability, and security features appear first in the OCI API. If
you write applications for the Oracle Database, you likely already depend on OCI. Some
types of applications that depend upon OCI are:
This file is used by any forms client session. When a user try to access forms ,
f60webmx picks up this file and based on this configuration file creates a forms session
to user/client.
What is Multi Node System ?
Multi Node System in Oracle Applications 11i means you have Applications 11i
Component on more than one system. Typical example is Database, Concurrent
Manager on one machine and forms, Web Server on second machine is example of Two
Node System
Can the default values be assigned to actual parameters?
Yes. In such case you don’t need to specify any value and the actual parameter will take
the default value provided in the function definition.
What is difference between a formal and an actual parameter?
The formal parameters are the names that are declared in the parameter list of the
header of a module. The actual parameters are the values or expressions placed in the
parameter list of the actual call to the module.
What are different modes of parameters used in functions and procedures?
There are three different modes of parameters: IN, OUT, and IN OUT.
IN - The IN parameter allows you to pass values in to the module, but will not pass
anything out of the module and back to the calling PL/SQL block. In other words, for the
purposes of the program, its IN parameters function like constants. Just like constants,
the value of the formal IN parameter cannot be changed within the program. You cannot
assign values to the IN parameter or in any other way modify its value.
IN is the default mode for parameters. IN parameters can be given default values in the
program header.
OUT - An OUT parameter is the opposite of the IN parameter. Use the OUT parameter
to pass a value back from the program to the calling PL/SQL block. An OUT parameter
is like the return value for a function, but it appears in the parameter list and you can, of
course, have as many OUT parameters as you like.
Inside the program, an OUT parameter acts like a variable that has not been initialised.
In fact, the OUT parameter has no value at all until the program terminates successfully
(without raising an exception, that is). During the execution of the program, any
assignments to an OUT parameter are actually made to an internal copy of the OUT
parameter. When the program terminates successfully and returns control to the calling
block, the value in that local copy is then transferred to the actual OUT parameter. That
value is then available in the calling PL/SQL block.
IN OUT - With an IN OUT parameter, you can pass values into the program and return a
value back to the calling program (either the original, unchanged value or a new value
set within the program). The IN OUT parameter shares two restrictions with the OUT
parameter: