The tables being joined have NOT NULL columns.
The tables being joined have only matched data.
The columns being joined have NULL values.
The tables being joined have only unmatched data.
The tables being joined have both matched and unmatched data.
Only when the tables have a primary key/foreign key relationship.
第1题:
Which four actions are possible during an Online Data file Move operation?()
第2题:
The rows inside three Oracle tables supporting a customer order entry system are frequently accessed together by means of a table join. Because data is always being added to the tables, you leave a lot of extra space inside each block to accommodate growth. Which of the following types of tables would be useful for storing the data in this context?()
第3题:
What is necessary for your query on an existing view to execute successfully? ()
第4题:
Which two statements about views are true?()
第5题:
What two statements are true regarding the recommendations received from the SQL Access Advisor?()
第6题:
You create a Web Form that displays a GridView. The GridViews data source is a DataSet named dsOrders. The DataSet contains two DataTables named Orders and OrderDetails. You create a relation between the two DataTables using the following code segment. (Line numbers are included for reference only.)01 dtOrders = dsOrders.Tables[“Orders”]; 02 dtOrderDetails = dsOrders.Tables[“OrderDetail”]; 03 colParent = dtOrders.Columns[“OrderID”]; 04 colChild = dtOrderDetails.Columns[“ParentOrderID”]; 05 dsOrders.Relations.Add(“Rell”, colParent, colChild, false); You need to find the cause of the exception being raised in line 05. What should you do? ()
第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 tables have NULL values.
You want all unmatched data from one table.
You want all matched data from both tables.
You want all unmatched data from both tables.
One of the tables has more data than the other.
You want all matched and unmatched data from only one table.
第9题:
Creating and dropping tables in the data file being moved
Performing file shrink of the data file being moved
Querying tables in the data file being moved
Performing Block Media Recovery for a data block in the data file being moved
Flashing back the database
Executing DML statements on objects stored in the data file being moved
第10题:
You have too many tables.
Your tables are too long.
Your tables have difficult names.
You want to work on your own tables.
You want to use another schema's tables.
You have too many columns in your tables.
第11题:
A view can be created as read only.
A view can be created as a join on two or more tables.
A view cannot have an ORDER BY clause in the SELECT statement.
A view cannot be created with a GROUP BY clause in the SELECT statement.
A view must have aliases defined for the column names in the SELECT statement.
第12题:
In which case would you use a FULL OUTER JOIN?()
第13题:
What two statements are true regarding the recommendations received from the SQL Access Advisor?()(Choose two.)
第14题:
What are two reasons to create synonyms? ()
第15题:
Which two statements are true regarding the USING and ON clauses in table joins?()
第16题:
In which two cases would you use an outer join? ()
第17题:
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
第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题:
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
第20题:
You want to create a nonequijoin.
The tables to be joined have multiple NULL columns.
The tables to be joined have columns of the same name and different data types.
The tables to be joined have columns with the same name and compatible data types.
You want to use a NATURAL join, but you want to restrict the number of columns in the join condition.
第21题:
The tables being joined have NOT NULL columns.
The tables being joined have only matched data.
The columns being joined have NULL values.
The tables being joined have only unmatched data.
The tables being joined have both matched and unmatched data.
Only when the tables have a primary key-foreign key relationship.
第22题:
The underlying tables must have data.
You need SELECT privileges on the view.
The underlying tables must be in the same schema.
You need SELECT privileges only on the underlying tables.