The procedure may be used for some components to relocate component data to the SYSAUX tablespace from its current tablespace.
The procedure may be used for some components to relocate component data from the SYSAUX tablespace to another tablespace.
All the components may be moved into SYSAUX tablespace.
All the components may be moved from the SYSAUX tablespace.
第1题:
Which two statements are true about the Automatic Workload Repository (AWR)()
第2题:
Which two statements are true regarding Oracle Data Pump()
第3题:
Which two statements about sequences are true? ()
第4题:
View this parameter setting in your database: DB_CREATE_FILE_DEST=’D:// /oracle/product/10.2.0/oradata/oracle’ You created a tablespace by using this command: CREATE TABLESPACE USERS; Which two statements are true about the USERS tablespace?()
第5题:
A CHECK constraint is created on the OID column.
A NOT NULL constraint is created on the OID column.
The ORDERS table is the only object created in the USERS tablespace.
The ORDERS table and a unique index are created in the USERS tablespace.
The ORDERS table is created in the USERS tablespace and a unique index is created on the OID columnin the SYSTEM tablespace.
第6题:
Multiple transactions can use the same undo segment.
A transaction is assigned an undo segment when it is started.
More than one transaction cannot share the same extent in the undo tablespace.
The transactions use system undo segment to store undo data if all the segments in the undo tablespaceare used.
第7题:
No more data files can be added to the tablespace.
Segment space is managed by free lists in the tablespace.
A user created without being assigned a default tablespace uses this tablespace.
The tablespace can be dropped with the current setting with segments present in it.
第8题:
The database automatically determines the extent-sizing policy for the tablespace.
The segments are automatically shrunk when the contents are removed from them.
The allocation of extents within the tablespace is managed through the dictionary tables.
The space utilization description of the data blocks in segments is recorded inbitmapblocks.
The space utilization description of the data blocks in segments is managed through free lists.MANUAL
第9题:
A single row subquery can retrieve data from only one table.
A SQL query statement cannot display data from table B that is referred to in its subquery, unless table B is included in the main query's FROM clause.
A SQL query statement can display data from table B that is referred to in its subquery, without including B in its own FROM clause.
A single row subquery can retrieve data from more than one table.
A single row subquery cannot be used in a condition where the LIKE operator is used for comparison.
A multiple-row subquery cannot be used in an INSERT statement to insert multiple rows at a time.
第10题:
The procedure may be used for some components to relocate component data to the SYSAUX tablespace from its current tablespace.
The procedure may be used for some components to relocate component data from the SYSAUX tablespace to another tablespace.
All the components may be moved into SYSAUX tablespace.
All the components may be moved from the SYSAUX tablespace.
第11题:
The tablespace has two data files.
An error is reported and tablespace creation fails.
Data files are created with names generated by the instance.
The tablespace can be extended without specifying the data file.
Data files belonging to the USERS tablespace cannot be renamed.
第12题:
EXPDP and IMPDP are the client components of Oracle Data Pump.
DBMS_DATAPUMP PL/SQL packages can be used independently of the Data Pump clients.
Oracle Data Pump export and import operations can be performed only by users with the SYSDBA privilege.
Oracle Data Pump imports can be done from the export files generated in the export utility of previous versions.
EXPDP and IMPDP use the procedures provided by DBMS_METADATA to execute export and import commands.
第13题:
Which two statements about subqueries are true?()
第14题:
Which two statements are true about the use of the procedures listed in the vsysaux_occupants.move_procedure column?()
第15题:
Which two statements about subqueries are true? ()
第16题:
It contains only SQL profiles generated by SQL Tuning Advisor.
It stores plans generated by the optimizer using a stored outline.
It is part of the data dictionary and stored in the SYSAUX tablespace.
It is part of the data dictionary and stored in the SYSTEM tablespace.
It contains the statement log, the plan history, plan baselines, and SQL profiles.
第17题:
It contains only SQL profiles generated by SQL Tuning Advisor.
It stores plans generated by the optimizer using a stored outline.
It is part of the data dictionary and stored in the SYSAUX tablespace.
It is part of the data dictionary and stored in the SYSTEM tablespace.
It contains the statement log, the plan history, plan baselines, and SQL profiles.
第18题:
The MRKT tablespace is created as a small file tablespace, because the file size is less than the minimum required for big file files.
The MRKT tablespace may be dropped if it has no contents.
Users who were using the old default tablespace will have their default tablespaces changed to the MRKT tablespace.
No more data files can be added to the tablespace.
The relative file number of the tablespace is not stored in rowids for the table rows that are stored in the MRKT tablespace.
第19题:
A single row subquery can retrieve data from only one table.
A SQL query statement cannot display data from table B that is referred to in its subquery, unless table B is included in the main query's FROM clause.
A SQL query statement can display data from table B that is referred to in its subquery, without including table B in its own FROM clause.
A single row subquery can retrieve data from more than one table.
A single row subquery cannot be used in a condition where the LIKE operator is used for comparison.
A multiple-row subquery cannot be used in a condition where the LIKE operator is used for comparison.
第20题:
All AWR tables belong to the SYSTEM schema.
The AWR contains systemwide tracing and logging information.
The snapshots collected by the AWR are accessible through data dictionary views.
The snapshots collected by the AWR are used by self-tuning components in the database.
第21题:
It may advise the use of online table redefinition for tables in dictionary managed tablespace.
It may advise the use of segment shrink for tables in dictionary managed tablespaces it the no chained rows.
It may advise the use of online table redefinition for tables in locally managed tablespaces
It will detect and advise about chained rows.
It may advise the use of segment shrink for free list managed tables.
第22题:
The bigfile tablespace have only one data file.
The segment space management is automatic.
The extent management is dictionary managed.
The database can have only one bigfile tablespace.
The bigfile tablespace can be converted to a smallfile tablespace.
第23题:
You may use Cisco Network Assistant to set up the initial configuration
You must use CLI for initial configuration
You may use either CLI or CAN for configuration
You may make a direct connection to the PC from any point on the switch
You may only make a direct connection from the port with the flashing green LED to the PC
第24题:
You use a NEXTVAL pseudo column to look at the next possible value that would be generated from a sequence, without actually retrieving the value.
You use a CURRVAL pseudo column to look at the current value just generated from a sequence, without affecting the further values to be generated from the sequence.
You use a NEXTVAL pseudo column to obtain the next possible value from a sequence by actually retrieving the value from the sequence.
You use a CURRVAL pseudo column to generate a value from a sequence that would be used for a specified database column.
If a sequence starting from a value 100 and incremented by 1 is used by more then one application, then all of these applications could have a value of 105 assigned to their column whose value is being generated by the sequence.
You use REUSE clause when creating a sequence to restart the sequence once it generates the maximum value defined for the sequence.