Running a query on a table returns ORA-600: Internal Error.
Inserting a value into a table returns ORA-01722: invalid number.
Creating a table returns ORA-00955: name us already in used by an existing objects.
Inserting a value into a table returns ORA-00001: unique constraint (SYS.OK_TECHP) violated.
Rebuilding an index using ALTER INDEX . . . REBUILD fails with an ORA-01578: ORACLE data block corrupted (file # 14, block # 50) error.
第1题:
Given the following function: CREATE FUNCTION emplist ( ) RETURNS TABLE ( id CHAR(6) , firstname VARCHAR(12) , lastname VARCHAR(15) ) LANGUAGE SQL BEGIN ATOMIC RETURN SELECT EMPNO, FIRSTNME, LASTNAME FROM EMPLOYEE WHERE WORKDEPT IN ('A00', 'B00'); END How can this function be used in an SQL statement?
第2题:
You executed the following FLASHBACK TABLE command: FLASHBACK TABLE emp TO TIMESTAMP (’11:45’,’hh12:mi’); Which two statements are correct?()
第3题:
You discover that your Recycle Bin contains two tables with the same name, MY_TABLE. You also have a table named MY_TABLE in your schema. You execute the following statement: FLASHBACK TABLE my_table TO BEFORE DROP RENAME TO my_table2; What will be the result of executing this statement?()
第4题:
Which two statements about subqueries are true?()
第5题:
Examine the description of the MARKS table: STD_ID NUMBER(4) STUDENT_NAME VARCHAR2(30) SUBJ1 NUMBER(3) SUBJ2 NUMBER(3) SUBJ1 and SUBJ2 indicate the marks obtained by a student in two subjects. Examine this SELECT statement based on the MARKS table: SELECT subj1+subj2 total_marks, std_id FROM marks WHERE subj1 > AVG(subj1) AND subj2 > AVG(subj2) ORDER BY total_marks; What is the result of the SELECT statement?()
第6题:
Identify the situations in which you use the alert log file in your database to check the detail.()
第7题:
One of the tables is recovered from the Recycle Bin using a First In First Out (FIFO) approach.
One of the tables is recovered from the Recycle Bin using a Last In First Out (LIFO) approach.
Both the tables are recovered from the Recycle Bin with one table renamed to MY_TABLE2 and the other to a system-generated name.
None of the tables are recovered from the Recycle Bin, and the statement returns an error.
第8题:
INSTR returns the numeric position of a named character.
NVL2 returns the first non-null expression in the expression list.
TRUNCATE rounds the column, expression, or value to n decimal places.
DECODE translates an expression after comparing it to each search value.
TRIM trims the heading or trailing characters (or both) from a character string.
NVL compares two expressions and returns null if they are equal, or the first expression if they are not equal.
NULLIF compares two expressions and returns null if they are equal, or the first expression if they are not equal.
第9题:
A single row subquery can retrieve data from only one table.
A SQL query statement cannot display data from table B that is referred to in its subquery, unless table B is included in the main query's FROM clause.
A SQL query statement can display data from table B that is referred to in its subquery, without including table B in its own FROM clause.
A single row subquery can retrieve data from more than one table.
A single row subquery cannot be used in a condition where the LIKE operator is used for comparison.
A multiple-row subquery cannot be used in a condition where the LIKE operator is used for comparison.
第10题:
Running a query on a table returns ORA-600: Internal Error.
Inserting a value in a table returns ORA-01722: invalid number.
Creating a table returns ORA-00955: name is already used by an existing object.
Inserting a value in a table returns ORA-00001: unique constraint (SYS.PK_TECHP) violated.
Inserting a row in a table returns ORA-00060: deadlock detected while waiting for resource.
第11题:
Exhibit A
Exhibit B
The query returns no rows
The query fails because the outer query is retrieving more than one column
The query fails because both the inner and outer queries are retrieving data from the same table.
第12题:
Synonyms can be created only for a table
Synonyms are used to reference only those tables that are owned by another user
A public synonym and a private synonym can exist with the same name for the same table
The DROP SYNONYM statement removes the synonym, and the table on which the synonym has been created becomes invalid
第13题:
At 5:30 PM, a database administrator, William, is informed that an important record of employee no E0025 is missing from the SCOTT.EMPLOYEE table. At 4:30 P.M, the table contained the record of employee no E0025. William issues the following command to find the SQL statements that are used to undo the deletion: SELECT operation, undo_sql, logon_user FROM FLASHBACK_TRANSACTION_QUERY WHERE xid= HEXTORAW(’0100043E23456’); where ’0100043E23456’ is the transaction ID of the transaction that deleted the row. Before issuing the above statement, which task did William perform to identify the transaction ID of the transaction that deleted the row?()
第14题:
Identify the two situations in which you use the alert log file in your database to check the details.()
第15题:
Identify the two situations in which the alert log file is updated with details. ()
第16题:
Identify two situations in which the alert log file is updated.()
第17题:
You are building two forms. Each form has a button and a non-base table field. When the button is pressed, a complicated calculation is executed. The calculation is the same for both forms. The calculation code does not query or change the data in the database. When the calculation completes, it returns a single value to the non-base table field. To optimize performance and maintainability, which PL/SQL structure should be used? ()
第18题:
The FLASHBACK TABLE statement will not be written to the alert log file.
The EMP table that was dropped by mistake from the database will be restored.
The changes made to the EMP table since the specified time will be undone.
The FLASHBACK TABLE statement will not maintain the existing indexes on the EMP table.
The FLASHBACK TABLE statement will be executed within a single transaction.
The list of transactions that have modified the EMP table since the specified time will be displayed.
第19题:
Running a query on a table returns ORA-600: Internal Error.
Inserting a value in a table returns ORA-01722: invalid number.
Creating a table returns ORA-00955: name is already used by an existing object.
Inserting a value in a table returns ORA-00001: unique constraint (SYS.PK_TECHP) violated.
Rebuilding an index using ALTER INDEX ...REBUILD fails with an error ORA-01578: ORACLE data block corrupted (file # 14, block # 50).
第20题:
A trigger in each form.
A subprogram in each form.
A stored subprogram in the database.
A subprogram in a library that is attached to each form.
第21题:
Running a query on a table returns ORA-600: Internal Error.
Inserting a value in a table returns ORA-01722: invalid number.
Creating a table returns ORA-00955: name is already used by an existing object.
Inserting a value in a table returns ORA-00001: unique constraint (SYS.PK_TECHP) violated.
Inserting a row in a table returns ORA-00060: deadlock detected while waiting for resource.
第22题:
Running a query on a table returns ORA-600: Internal Error.
Inserting a value into a table returns ORA-01722: invalid number.
Creating a table returns ORA-00955: name us already in used by an existing objects.
Inserting a value into a table returns ORA-00001: unique constraint (SYS.OK_TECHP) violated.
Rebuilding an index using ALTER INDEX . . . REBUILD fails with an ORA-01578: ORACLE data block corrupted (file # 14, block # 50) error.
第23题:
OMF cannot be used in a database that already has data files created with user-specified directions.
The file system directions that are specified by OMF parameters are created automatically.
OMF can be used with ASM disk groups, as well as with raw devices, for better file management.
OMF automatically creates unique file names for table spaces and control files.
OMF may affect the location of the redo log files and archived log files.
第24题:
William used the Flashback Version Query feature.
William issued the CROSSCHECK command at the RMAN prompt.
William viewed the alert log file.
William used the Flashback Table feature.