Try your best. . :)
CASCADE_TRIGGER_CNT
OPEN_CURSORS
OPEN_TRIGGERS
OPEN_DB_TRIGGERS
Rate this question:
All package variables.
Boolean variables.
Private procedures and functions.
Public procedures and functions.
Rate this question:
They reduce network round trips.
They postpone PL/SQL parsing until run time.
They allow the application to perform high speed processing locally.
They reduce the number of calls to the database and decrease network traffic by bundling commands.
They reduce the number of calls to the database and decrease network traffic by using the local PL/SQL engine.
When the NEW_PRODUCT_VIEW is dropped.
When rows of the product table are updated through SQI Plus.
When the internal logic of the QUERY_PRODUCT procedure is modified.
When a new column that can contain null values is added to the product table.
When a new procedure s created that updates rows in the product table directly.
You cannot recompile program units using a PL/SQL program.
You can use the DBMS_DDL. REOMPILE package procedure to recompile the program units.
You can use the DBMS_ALTER. COMPILE packaged procedure to recompile the program units.
You can use the DBMS_DDL.ALTER_COMPILE packaged procedure to recompile the program units.
You can use the DBMS_SQL.ALTER_COMPILE packaged procedure to recompile the program units.
EXECUTE privilege on the MAINTAIN_DATA package.
INVOKE privilege on the MAINTAIN_DATA package.
EXECUTE privilege on the program units in the MAINTAIN_DATA package.
Object privilege on all of the objects that the MAINTAIN_DATA package is accessing.
Execute privilege on the program units inside the MAINTAIN_DATA package and execute privilege on the MAINTAIN_DATA package.
The errors are stored in the EMP_PROC.ERR file.
The errors are displayed to the screen when the script file is run.
The errors are stored in the procedure_errors data dictionary view.
YOU need to issue the SHOWERRORS command in the SQL Plus environment to see the errors.
YOU need to issue the display errors command in the SQL Plus environment to see the errors.
Use SQL command delete in the procedure to delete the rows.
Use DBMS_SQL packaged routines in the procedure to delete the rows.
Use DBMS_DML packaged routines in the procedure to delete the rows.
Use DBMSDELETE packaged routines in the procedure to delete the rows.
You cannot have a delete statement without providing a table name before compile time.
PRAGMA RESTRICT_REFERENCES (CALC_PLAYER_AVG, WNDS, WNPS);
PRAGMA RESTRICT_REFERENCES (CALC_PLAYER_AVG, WNPS);
PRAGMA RESTRICT_REFERENCES (CALC_PLAYER_AVG, RNPS, WNPS);
PRAGMA RESTRICT_REFERENCES (CALC_PLAYER_AVG, ALLOW_GROUP_BY);
Query the USER_SOURCE data dictionary view.
Query the USER_PROCEDURES data dictionary view.
Query the USER_DEPENDENCIES data dictionary views.
Set the SQL Plus environment variable trade code=true and run the ACCOUNT_TRANSACTION procedure.
Set the SQL Plus environment variable DEPENDENCIES=TRUE and run the Account_Transaction procedure.
GRANT SELECT ON ADD_PLAYER TO PUBLIC;
GRANT EXECUTE ON ADD_PLAYER TO PUBLIC;
GRANT INSERT ON PLAYER TO PUBLIC;
GRANT EXECUTE, INSERT ON ADD_PLAYER TO PUBLIC;
REVOKE INSERT ON PLAYER FROM PUBLIC;
Rate this question:
DBMS_JOB
DBMS_RUN
DBMS_PIPE
DBMS_SQL
Rate this question:
You cannot drop a table from a stored procedure.
Use the DROP command in the procedure to drop the table.
Use the DBMS_DDL packaged routines in the procedure to drop the table.
Use the DBMS_SQL packaged routines in the procedure to drop the table.
Use the DBMS_DROP packaged routines in the procedure to drop the table.
USER_SOURCE
USER_OBJECTS
USER_PROCEDURES
USER_SUBPROGRAMS
Rate this question:
ROW_UPDATE('SALARY')
UPDATING('SALARY')
CHANGING('SALARY')
COLUMN_UPDATE('SALARY')
Rate this question:
The package specification is dropped.
The package specification is invalidated.
The package is invalidate.
The package body is invalidated.
Rate this question:
DBMS_JOB
DBMS_RUN
DBMS_PIPE
DBMS_SQL
Rate this question:
It produces the output Procedure B calling C
It produces the output Procedure C calling B
It produces a compilation error because procedure C requires a forward declaration
It produces a compilation error because procedure B requires a forward declaration
It produces a compilation error because identified g_value is not declared in procedure A
Rate this question:
PRAGMA SECURITY_LEVEL
PRAGMA SEARIALLY_REUSABLE.
PRAGMA RESTRICT_REFERRENCES.
PRAGMA RESTRICT_PURITY_LEVEL
PRAGMA RESTRICT_FUNCTION_REFERRENCE
Rate this question:
LOB is a database object
LOB represents a data type that is used to store large, unstructured data.
LOB can be stored inside or outside a database
Internal LOB is a category of LOB
Rate this question:
Oracle Server records only the signature for each PL/SQL program unit.
Using the signature mode prevents the unnecessary recompilation of dependent local procedures, as it allows remote procedures to be recompiled without affecting the dependent local procedures.
Signature mode is the default mode of remote dependency
Oracle server records both the timestamp and the signature for each PL/SQL program unit.
Rate this question:
DROP Package G_Comm;
DROP Package Specification G_Comm;
DROP Package Body G_Comm;
You cannot accomplish this;
Package Specification only requires recompilation
Package body only requires recompilation
Both package & body requires recompilation
Both package & body does not require recompilation.
Rate this question:
To perform clean up action when ending a user session
To insert data into view that doesn't accept insert normally
To insert into an audit table when data is updated in sensitive column
To modify data in which DML statement has been issued against an inherently non-updatable view
Rate this question:
The COMMIT and ROLLBACK commands are allowed in the packaged function.
You can not use packaged functions in a query statement
The packaged function cannot execute an INSERT, UPDATE, or DELETE statement against the table that is being queried.
The packaged function can execute and INSERT, UPDATE, or DELETE statement against the table that is being queried if it is used in a subquery
The packaged function can execute an INSERT, UPDATEM or DELETE statement against the table that is being queried if the pragma RESTRICT REFERENCE is used.
Rate this question:
ERROR at line 1:
Row is: Row is: Row is:
Row is: 1 Row is: 2 Row is: 3
Row is: 4 Row is: 5 Row is: 6
If the signature of procedure PROCESS_EMP is modified and successfully recompiles, the EMP table is invalidated
If internal logic of procedure PROCESS_EMP is modified and successfully recompiles, UPDATE_EMP gets invalidated and will recompile when invoked for the first time
If the signature of procedure PROCESS_EMP is modified and successfully recompiles, UPDATE_EMP gets invalidated and will recompile when invoked for the first time
If internal logic of procedure PROCESS_EMP is modified and successfully recompiles, QUERY_EMP gets invalidated and will recompile when invoked for the first time.
If internal logic of procedure PROCESS_EMP is modified and successfully recompiles, QUERY_EMP gets invalidated and will recompile when invoked for the second time
Rate this question:
EMP_ID LOG_DATE NEW_SALARY ACTION ---------- -------- ---------- ---------- 201 24-SEP-02 13000 NEW SAL 202 24-SEP-02 600 NEW SAL
EMP_ID LOG_DATE NEW_SALARY ACTION ---------- -------- ---------- ---------- 201 24-SEP-02 14000 NEW SAL 202 24-SEP-02 7000 NEW SAL
EMP_ID LOG_DATE NEW_SALARY ACTION ---------- -------- ---------- ---------- 201 24-SEP-02 NEW SAL 202 24-SEP-02 NEW SAL
No rows are inserted
Rate this question:
A compile time error occurs.
A runtime error occurs. The effect of trigger body and the triggering statement are rolled back.
A runtime error occurs. The effect of trigger body is rolled back, but the update on the EMP table takes place
The trigger fires successfully. The update on the EMP table occurs, and data is inserted into theAUDIT_TABLE table.
A runtime error occurs. The update on the EMP table does not take place, but the insert into the AUDIT_TABLE occurs.
Rate this question:
An exception cannot propagate across remote procedure calls.
An exception raised inside a declaration immediately propagates to the current block
The use of the RAISE; statement in an exception handler reprises the current exception
An exception raised inside an exception handler immediately propagates to the enclosing block
Rate this question:
HEADER only
DECLARATIVE
EXECUTABLE and HEADER
DECLARATIVE,EXECUTABLE and EXCEPTION HANDLING
Only local or packaged subprograms can be overloaded.
Overloading allows different functions with the same name that differ only in their return types.
Overloading allows different subprograms with the same number, type and order of parameters.
Overloading allows different subprograms with the same name and same number or type of parameters
Overloading allows different subprograms with the same name, but different in either number, type or order of parameters
The syntax of the UPDATE statement is incorrect.
You cannot update a table using a stored procedure.
The format parameter p_bonus_value is declared but is not used anywhere. /The formal parameter p_cutoff cannot have a DEFAULT clause
The declaration of the format parameter p_margin cannot have a DEFAULT clause
The declaration of the format parameter p_bonus_percent cannot have a DEFAULT clause
A database trigger is a PL/SQL block, C, or Java procedure associated with a table, view, schema, or the database
A database trigger needs to be executed explicitly whenever a particular event takes place.
A database trigger executes implicitly whenever a particular event takes place
A database trigger fires whenever a data event (such as DML) or system event (such as logon, shutdown) occurs on a schema or database.
With a schema, triggers fire for each event for all users; with a database, triggers fire for each event for that specific user
Index
Cluster /Dimensions /Database links
Package
Function
Synonyms
Stored functions can be called from the SELECT and WHERE clauses only.
Stored functions do not permit calculations that involve database links in a distributed environment.
Stored functions cannot manipulate new types of data, such as longitude and latitude
Stored functions can increase the efficiency of queries by performing functions in the query rather than in the application.
Quiz Review Timeline +
Our quizzes are rigorously reviewed, monitored and continuously updated by our expert board to maintain accuracy, relevance, and timeliness.
Wait!
Here's an interesting quiz for you.