DROP USER SMITH;
DROP TABLE EMPLOYEES;
DROP TABLESPACE USERS;
ALTER TABLE SALES_REP DROP PARTITION P1;
ALTER TABLE EMPLOYEES DROP COLUMN DESIG_ID;
第1题:
On Monday, you dropped the DEPT table from your schema and then you re-created the DEPT table in your schema. On Wednesday, you have a requirement to restore the DEPT table from the recycle bin. Which statement is correct?()
第2题:
Which two partitioned table maintenance operations support asynchronous Global Index Maintenance inOracle database 12c?()
第3题:
Which two operations can be flashed back using the Flashback technology?()
第4题:
Examine the following commands executed in your database: SQL> ALTER SESSION RECYCLEBIN=ON; Session altered SQL> CREATE TABLE emp TABLESPACE tbsfd AS SELECT * FROM hr.employees; Table created. Further, you executed the following command to drop the table: SQL> DROP TABLE emp; Table dropped. What happens in this scenario? ()
第5题:
Which two statements are correct regarding the Oracle Flashback Drop feature? ()
第6题:
Which two operations can be performed on an external table()
第7题:
DROP USER SMITH;
DROP TABLE EMPLOYEES;
DROP TABLESPACE USERS;
ALTER TABLE SALES_REP DROP PARTITION P1;
ALTER TABLE EMPLOYEES DROP COLUMN DESIG_ID;
第8题:
The table is moved to the SYSAUX tablespace.
The table is moved to the SYSTEM tablespace.
The table is removed from the database permanently.
The table is renamed and remains in the TBSFD tablespace.
第9题:
Recycle bin exists for the tables only in non-SYSTEM, locally managed tablespaces.
You can flash back a dropped table provided row movement has been enabled on the table.
If you drop an index before dropping its associated table, then the recovery of the index is not supported when you flash back the dropped table.
When you execute the DROP TABLESPACE? INCLUDING CONTENTS command, the objects in the tablespace are places in the recycle bin.
When a dropped table is moved to the recycle bin, only the table is renamed to a system-generated name; its associated objects and constraints are not renamed.
If you drop a table that is protected by the recycle bin, then associated bitmap-joined indexes and materialized view logs are also stored in the recycle bin.
第10题:
DROP USER SMITH;
DROP TABLE EMPLOYEES;
DROP TABLESPACE USERS;
ALTER TABLE SALES_REP DROP PARTITION P1;
ALTER TABLE EMPLOYEES DROP COLUMN DESIG_ID;
第11题:
Drop the table.
Partition the table.
Truncate the table.
Add a column to the table.
Rename a column in the table.
第12题:
Create a view on the table.
Create an index on the table.
Create a synonym on the table.
Add a virtual column to the table.
Update the table using the UPDATE statement.
Delete rows in the table using the DELETE command
第13题:
You enabled Flashback Data Archive on the INVENTORY table.Which DDL operation is supported on the table after enabling Flashback Data Archive?()
第14题:
You enabled Flashback Data Archive on the INVENTORY table. Which DDL operation is supported on the table after enabling Flashback Data Archive?()
第15题:
For which two SQL statements can you use the Flashback Table feature to revert a table to its previous state?()
第16题:
The EMPLOYEES table is stored in the SAMPLE tablespace. The corresponding IPK_EMP index for the EMPLOYEES table’s primary key is stored in the INDX tablespace. Out of 12 partitions, only partition P1 of the SALES table is stored in the SAMPLE tablespace. Which object will be exported by this command?() exp system/manager tablespaces=SAMPLE
第17题:
The RECYCLEBIN parameter is set to ON for your database. You drop a table,PRODUCTS,from the SCOTT schema. Which two statements are true regarding the outcome of this action?()
第18题:
All the related indexes and views are automatically dropped
The flashback drop feature can recover only the table structure
Only the related indexes are dropped whereas views are invalidated
The flashback drop feature can recover both the table structure and its data
第19题:
DELETE employees;
DESCRIBE employees;
ROLLBACK TO SAVEPOINT C;
GRANT SELECT ON employees TO SCOTT;
ALTER TABLE employees SET UNUSED COLUMN sal;
SELECT MAX(sal) FROM employees WHERE department_id = 20;
第20题:
by using Oracle Enterprise Manager
by issuing the FLASHBACK TABLE statement at the RMAN prompt
by issuing the FLASHBACK TABLE statement at the SQL prompt
by issuing the FLASHBACK TABLE statement at the LSNRCTL prompt
第21题:
UPDATE TABLE
CREATE CLUSTER
TRUNCATE TABLE
ALTER TABLE MOVE
INSERT INTO···VALUES
ALTER TABLE···DROP COLUMN
ALTER TABLE···DROP PARTITION
第22题:
ALTER TABLE SPLIT PARTITION
ALTER TABLE MERGE PARTITION
ALTER TABLE TRUNCATE PARTITION
ALTER TABLE ADD PARTITION
ALTER TABLE DROP PARTITION
ALTER TABLE MOVE PARTITION
第23题:
Create a view on the table.
Create an index on the table.
Create a synonym on the table.
Add a virtual column to the table.
Update the table using the UPDATE statement.
Delete rows in the table using the DELETE command.
第24题:
All the related indexes and views are automatically dropped
The flashback drop feature can recover only the table structure
Only the related indexes are dropped whereas views are invalidated
The flashback drop feature can recover both the table structure and its data