Tables with BLOB and TEXT columns cannot be partitioned
Partitioning allows easier management of smaller data sets for certain queries
Partitioning allows different columns to be stored in separate files
The partitioning expression is an integer or function that returns an integer value or NULL value
Partitioning is only available for those storage engines that implements it natively
第1题:
Which statement is true regarding the INTERSECT operator?()
第2题:
Which two statements are true regarding views?()
第3题:
What two statements are true regarding the recommendations received from the SQL Access Advisor?()(Choose two.)
第4题:
Which two are true regarding MySQL binary and text backups?()
第5题:
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()
第6题:
Which two statements are true regarding the starting of the database instance using the following command?() SQL>STARTUP UPGRADE
第7题:
It can be used to join a maximum of three tables
It can be used to restrict the number of columns used in a NATURAL join
It can be used to access data from tables through equijoins as well as nonequijoins
It can be used to join tables that have columns with the same name and compatible data types
第8题:
Both USING and ON clauses can be used for equijoins and nonequijoins
Amaximum of one pair of columns can be joined between two tables using the ON clause
The ON clause can be used to join tables on columns that have different names but compatible data types
The WHERE clause can be used to apply additional conditions in SELECT statements containing the ON or the USING clause
第9题:
Binary backups are usually faster than text backups
Binary backups are usually slower than text backups
Text backups are human-readable while binary backups are not
Binary backups are not portable across different operating systems
第10题:
It ignores NULL values
Reversing the order of the intersected tables alters the result
The names of columns in all SELECT statements must be identical
The number of columns and data types must be identical for all SELECT statements in the query
第11题:
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
第12题:
It enables all system triggers.
It allows only SYSDBA connections.
It ensures that all job queues remain active during the upgrade process.
It sets system initialization parameters to specific values that are required to enable database upgrade scripts to be run.
第13题:
You need to replicate a table from a master to a slave. The master and slave copies of the table will have different number of columns. Which two conditions must be true?()
第14题:
Which two statements are true regarding partitioning in Mysql?()
第15题:
Which two statements regarding a SQL profile are true?()
第16题:
Which two statements are true regarding the USING and ON clauses in table joins?()
第17题:
What two statements are true regarding the recommendations received from the SQL Access Advisor?()
第18题:
It cannot generate recommendations that support multiple workload queries.
It can recommend partitioning on tables provided that the workloads have some predicates and joins on the columns of the NUMBER or DATE type.
It can recommend partitioning only on tables that have at least 10,000 rows.
It can recommend only B-tree indexes and not bitmap or function-based indexes
第19题:
It cannot generate recommendations that support multiple workload queries.
It can recommend partitioning on tables provided that the workloads have some predicates and joins on the columns of the NUMBER or DATE type.
It can recommend partitioning only on tables that have at least 10,000 rows.
It can recommend only B-tree indexes and not bitmap or function-based indexes.
第20题:
Tables with BLOB and TEXT columns cannot be partitioned
Partitioning allows easier management of smaller data sets for certain queries
Partitioning allows different columns to be stored in separate files
The partitioning expression is an integer or function that returns an integer value or NULL value
Partitioning is only available for those storage engines that implements it natively
第21题:
It is built by Automatic Tuning Optimizer.
It cannot be stored persistently in the data dictionary.
It can be used by the query optimizer automatically.
It can be created manually by using the CREATE PROFILE command.
第22题:
Each extra column in the copy with more columns must not have a default value
Columns that are common to both versions of the table must be defined in the same order on the master and the slave
The slave database cannot have more columns than the master. Only the master database can have more columns
Columns that are common to both versions of the table must come first in the table definition, before any additional columns are additional columns are defined on either server
The master database cannot have more columns than the slave. Only the slave deatbase can have more columns
第23题:
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.
第24题:
Subqueries can contain GROUP BY and ORDER BY clauses
Main query and subquery can get data from different tables
Main query and subquery must get data from the same tables
Subqueries can contain ORDER BY but not the GROUP BY clause
Only one column or expression can be compared between the main query and subquery
Multiple columns or expressions can be compared between the main query and subquery