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
第1题:
Which two operations can be flashed back using the Flashback technology?()
第2题:
Which two operations can be performed on an external table()
第3题:
Which two operations can be performed on an external table()
第4题:
Which three tasks can be performed by using the performance Schema?()
第5题:
DROP USER SMITH;
DROP TABLE EMPLOYEES;
DROP TABLESPACE USERS;
ALTER TABLE SALES_REP DROP PARTITION P1;
ALTER TABLE EMPLOYEES DROP COLUMN DESIG_ID;
第6题:
The index remains invisible.
The index is not updated by the DML statements on the indexed table.
The index automatically becomes visible in order to have it updated by DML on the table.
The index becomes unusable but the table is updated by the DML.
The index is updated by the DML on the 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题:
You can use aggregate functions in any clause of a SELECT statement.
You can use aggregate functions only in the column list of the SELECT clause and in the WHERE clause of a SELECT statement.
You can mix single row columns with aggregate functions in the column list of a SELECT statement by grouping on the single row columns.
You can pass column names, expressions, constants, or functions as parameters to an aggregate function.
You can use aggregate functions on a table, only by grouping the whole table as one single group.
You cannot group the rows of a table by more than one column while using aggregate functions.
第9题:
Using a partial local Index on the warehouse fact table month column with indexing disabled to the table partitions that return most of their rows to the queries.
Using a partial local Index on the warehouse fact table month column with indexing disabled for the table partitions that return a few rows to the queries.
Using a partitioned view that does a UNION ALL query on the partitions of the warehouse fact table, which retains the existing local partitioned column.
Converting the partitioned table to a partitioned view that does a UNION ALL query on the monthly tables, which retains the existing local partitioned column
Using a partial global index on the warehouse fact table month column with indexing disabling for the table partitions that return most of their rows to the queries.
Using a partial global index on the warehouse fact table month column with indexing disabled for the table partitions that return a few rows to the queries.
第10题:
Constraint names must start with SYS_C
All constraints must be defines at the column level
Constraints can be created after the table is created
Constraints can be created at the same time the table is created
Information about constraints is found in the VIEW_CONSTRAINTS dictionary view
第11题:
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
第12题:
You can use this feature to identify the committed versions of the rows, but not the uncommitted versions.
You can use this feature to identify the versions of V$ views.
You can use this feature to identify the inserts, deletes, and updates performed on a particular row but not the data definition language (DDL) operations performed on the table.
You can use this feature for a table only if row movement is enabled for the table.
You can use this feature to identify the versions of external and fixed tables.
第13题:
Which two statements are correct regarding the Flashback Versions Query feature?()
第14题:
Which statement describes the effect on an index, when the indexed column for the rows is updatedin the base table()
第15题:
The SCOTT user has an index on the ITEM_DESC column of the ITEM table. As part of the year-ending task, SCOTT updates the ITEM_DESC column for most of the rows in the ITEM table. How does this change to the table affect the index?()
第16题:
You have altered a non-unique index to be invisible to determine if queries execute within an acceptable response time without using this index. Which two are possible if table updates are performed which affect the invisible index columns?()
第17题:
An update in a leaf row takes place.
The index becomes invalid after the update.
The leaf block containing the row to be updated is marked as invalid.
A row in the leaf block of the index for the key value is deleted and inserted.
第18题:
The row movement is not enabled on the table.
The first two updates were not explicitly committed.
The Flashback Versions Query lists only the most recent update.
The Flashback Versions Query stops producing rows after it encounters a time in the past when the table structure was changed.
第19题:
Finding queries that are not using indexes
Finding rows that are locked by InnoDB
Finding client connection attributes
Finding the part of a code in which a single query is spending time
Finding the size of each table
第20题:
ALTER TABLE SPLIT PARTITION
ALTER TABLE MERGE PARTITION
ALTER TABLE TRUNCATE PARTITION
ALTER TABLE ADD PARTITION
ALTER TABLE DROP PARTITION
ALTER TABLE MOVE PARTITION
第21题:
Create an INSERT trigger to assign the default value to each item in the table.
Create a CHECK constraint to validate the data and to assign the default value to each item in the table.
Create an UPDATE trigger to update the default value for each new item in the table.
Create a DEFAULT constraint to assign the default value specifying the WITH VALUES argument.
第22题:
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.
第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题:
A subquery that defines a view cannot include the GROUP BY clause
A view that is created with the subquery having the DISTINCT keyword can be updated
A view that is created with the subquery having the pseudo column ROWNUM keyword cannot be updated
A data manipulation language (DML) operation can be performed on a view that is created with the subquery having all the NOT NULL columns of a table