Tag: databases
Questions Related to databases
-
The package itself cannot be called, parameterized, or nested.
-
The format of a package is similar to that of a subprogram.
-
The contents can be shared by many applications once written.
-
None of the above.
-
Row
-
Statement
-
ORACLE FORM trigger
-
Before
-
CREATE OR REPLACE FUNCTION tax_amt (p_id NUMBER) RETURN NUMBER
-
CREATE OR REPLACE PROCEDURE tax_amt (p_id NUMBER) RETURN NUMBER
-
CREATE OR REPLACE PROCEDURE tax_amt (p_id NUMBER, p_amount OUT NUMBER)
-
CREATE OR REPLACE FUNCTION tax_amt (p_id NUMBER) RETURN NUMBER(10,2)
-
CREATE OR REPLACE PROCEDURE tax_amt (p_id NUMBER, p_amount OUT NUMBER(10, 2))
-
A stored procedure uses the DELCLARE keyword in the procedure specification to declare formal parameters.
-
A stored procedure is named PL/SQL block with at least one parameter declaration in the procedure specification.
-
A stored procedure must have at least one executable statement in the procedure body.
-
A stored procedure uses the DECLARE keyword in the procedure body to declare formal parameters.
-
EXECUTE UPD_BAT_STAT;
-
EXECUTE UPD_BAT_STAT(V_AB=>10, V_ID=>31);
-
EXECUTE UPD_BAT_STAT(31, 'FOUR', 'TWO');
-
UPD_BAT_STAT(V_AB=>10, V_ID=>31);
-
RUN UPD_BAT_STAT;
-
g_comm has a value of 15 at 9:06am for Smith.
-
g_comm has a value of 15 at 9:06am for Jones.
-
g_comm has a value of 20 at 9:06am for both Jones and Smith.
-
g_comm has a value of 15 at 9:03 am for both Jones and Smith.
-
g_comm has a value of 10 at 9:06am for both Jones and Smith.
-
g_comm has a value of 10 at 9:03am for both Jones and Smith.
-
Querying with the SELECT * notification.
-
Declaring variables with the %TYPE attribute.
-
Specifying schema names when referencing objects.
-
Declaring records by using the %ROWTYPE attribute.
-
Specifying package.procedure notation while executing procedures.