CREATE TABLE EMP9$# AS (empid number(2));
CREATE TABLE EMP*123 AS (empid number(2));
CREATE TABLE PACKAGE AS (packid number(2));
CREATE TABLE 1EMP_TEST AS (empid number(2));
第1题:
Evaluate the CREATE TABLE statement: CREATE TABLE products (product_id NUMBER (6) CONSTRAINT prod_id_pk PRIMARY KEY, product_name VARCHAR2 (15)); Which statement is true regarding the PROD_ID_PK constraint?()
第2题:
Which two operations can be performed on an external table()
第3题:
Which two statements regarding the LOGGING clause of the CREATE TABLESPACE. .. statement are correct?()
第4题:
Examine the following statement that is used to modify the constraint on the SALES table: SQL> ALTER TABLE SALES MODIFY CONSTRAINT pk DISABLE VALIDATE; Which three statements are true regarding the above command()
第5题:
Which is a valid CREATE TABLE statement?()
第6题:
This clause is not valid for a temporary or undotablespace.
If thetablespaceis in the NOLOGGING mode, no operation on thetablespacewill generate redo.
Thetablespacewill be IntheNOLOGGING mode by default, if not specified while creating atablespace.
Thetablespace-level logging attribute can be overridden by logging specification at the table, index, materialized view, materialized view log, and partition levels.
第7题:
All database operations performed by the impdp command are logged.
Only CREATE INDEX and CREATE TABLE statements generated by the import are logged.
Only CREATE TABLE and ALTER TABLE statements generated by the import are logged.
None of the operations against the master table used by Oracle Data Pump to coordinate its activities are logged.
第8题:
The valid time columns employee_time_start and employee_time_end are automatically created.
The same statement may filter on both transaction time and valid temporal time by using the AS OF TIMESTAMP and PERIOD FOR clauses.
The valid time columns are not populated by the Oracle Server automatically.
The valid time columns are visible by default when the table is described.
Setting the session valid time using DBMS_FLASHBACK_ARCHIVE.ENABLE_AT_VALID_TIME sets the visibility for data manipulatio
第9题:
Create an MQT that selects the oldest month of data with the REFRESH IMMEDIATE option.
Create 12 separate tables, create a view based on all 12, drop the table with the oldest month's data then drop and re- create the view.
Create a range partitioned table, partitioned by month, and use the ALTER TABLE statement to detach the oldest month and attach storage for new data.
Create a single table, extract the data to be retained using UNLOAD with a SELECT statement, drop and re-create the table then load only the data to be retained.
第10题:
This clause is not valid for a temporary or undo tablespace.
If the tablespace is in the NOLOGGING mode,no operation on the tablespace will generate redo.
The tablespace will be in the NOLOGGING mode by default,if not specified while creating a tablespace.
The tablespace-level logging attribute can be overridden by logging specifications at the table,index, materialized view,materialized view log,and partition levels.
第11题:
CREATE TABLE EMP9$# AS (empid number(2));
CREATE TABLE EMP*123 AS (empid number(2));
CREATE TABLE PACKAGE AS (packid number(2));
CREATE TABLE 1EMP_TEST AS (empid number(2));
第12题:
You cannot create a table form within Forms.
You must use the FORMS_DDL built-in to create the table.
You must use the DBMS_DYNAMIC_DDL package to create the table.
You can write the CREATE TABLE statement directly into the trigger.
第13题:
Which three are true?()
第14题:
Examine the following steps performed on a database instance: 1. The DBA grants the CREATE TABLE system privilege to the SKD user with ADMIN OPTION. 2. The SKD user creates a table. 3. The SKD user grants the CREATE TABLE system privilege to the HR user. 4. The HR user creates a table. 5. The DBA revokes the CREATE TABLE system privilege from SKD. Which statement is true after step 5 isperformed()
第15题:
Which two operations can be performed on an external table()
第16题:
You executed this command to create a temporary table: SQL> CREATE GLOBAL TEMPORARY TABLE report_work_area (startdate DATE, enddateDATE, class CHAR(20)) ON COMMIT PRESERVE ROWS; Which statement is true about the rows inserted into the REPORT_WORK_AREA table during a transaction()
第17题:
An error is generated.
You will have two identical tables in the HR schema with different names.
You create a table called employees in the HR schema based on you EMP table.
You create an alternative name for the employees table in the HR schema in your own schema.
第18题:
The table created by SKD isnot accessibleand SKD cannot create new tables.
The tables created by SKD and HR remain, but both cannot create new tables.
The table created by HR remains and HR still has the CREATE TABLE system privilege.
The table created by HR remains and HR can grant the CREATE TABLE system privilege to other users.
第19题:
This clause is not valid for a temporary or undo tablespace.
If the tablespace is in the NOLOGGING mode, no operation on the tablespace will generate redo.
The tablespace will be in the NOLOGGING mode by default, if not specified while creating a tablespace.
The tablespacelevel logging attribute can be overridden by logging specifications at the table, index, materialized view, materialized view log, and partition levels.
第20题:
The constraint remains valid.
The index on the constraint is dropped.
It allows the loading of data into the table using SQL*Loader.
New data conforms to the constraint, but existing data is not checked
It allows the data manipulation on the table using INSERT/UPDATE/DELETE SQL statements.
第21题:
The rows stay in the table only until session termination.
The rows stay in the table only until the next transaction starts on the table.
The rows are visible to all current sessions after the transaction is committed.
The rows stay available for subsequent sessions after the transaction is committed
第22题:
Dynamic auth table mapping is not enabled.
A successful authentication attempt will result in a new authentication table entry, which will be delivered only to the Junos enforcer protecting the network from which the user has authenticated.
To create a static auth table mapping, you must delete the default policy.
The default policy applies only to the factory-default role User.
第23题:
A MERGE statement is used to merge the data of one table with data from another.
A MERGE statement replaces the data of one table with that of another.
A MERGE statement can be used to insert new rows into a table.
A MERGE statement can be used to update existing rows in a table.
第24题:
The table created by SKD is not accessible and SKD cannot create new tables.
The tables created by SKD and HR remain, but both cannot create new tables.
The table created by HR remains and HR still has the CREATE TABLE system privilege.
The table created by HR remains and HR can grant the CREATE TABLE system privilege to other users.