Once created, a sequence belongs to a specific schema.
Once created, a sequence is linked to a specific table.
Once created, a sequence is automatically available to all users.
Only the DBA can control which sequence is used by a certain table.
Once created, a sequence is automatically used in all INSERT and UPDATE statements.
第1题:
Which of the following is a characteristic of a sequence?()
第2题:
Which two patented or patent-pending compression and caching technologies are used for WX/WXC devices?()(Choose two.)
第3题:
What is true about sequences? ()
第4题:
Which of the following can be used in conjunction with a Flashback Versions Query to filter the results?()
第5题:
Examine the structure of the EMPLOYEES table: EMPLOYEE_ID NUMBER NOT NULL, Primary Key EMP_NAME VARCHAR2(30) JOB_ID NUMBER/ SAL NUMBER MGR_ID NUMBER References EMPLOYEE_ID column DEPARTMENT_ID NUMBER Foreign key to DEPARTMENT_ID column of the DEPARTMENTS table You created a sequence called EMP_ID_SEQ in orderto populate sequential values for the EMPLOYEE_ID column of the EMPLOYEES table. Which two statements regarding the EMP_ID_SEQ sequence are true? ()
第6题:
What is true about sequences? ()
第7题:
Which two statements are true about standard database auditing()
第8题:
Which two statements about creating constraints are true?()
第9题:
The start value of the sequence is always 1.
A sequence always increments by 1.
The minimum value of an ascending sequence defaults to 1.
The maximum value of descending sequence defaults to 1.
第10题:
It is created as a nondisplay item.
The Lock Record property is set to Yes.
It cannot be referenced in item level triggers.
It is placed on the canvas with the highest sequence number.
第11题:
Create a table view.
Create a view in any schema.
Create a view in your schema.
Create a sequence view in any schema.
Create a view that is accessible by everyone.
Create a view only of it is based on tables that you created.
第12题:
A sequence was created with the DDL statement shown below:CREATE SEQUENCE my_sequence CACHE 10 ORDER The following statements are successfully executed in sequence through separate database connections: CONNECTION1 - VALUES NEXT VALUE FOR my_sequence INTO :con1hvar CONNECTION2 - VALUES NEXT VALUE FOR my_sequence INTO :con2hvar CONNECTION1 - VALUES NEXT VALUE FOR my_sequence INTO:con1hvarWhat is the current value of the :con1hvar host variable?()
第13题:
Which three scenarios are true about Domains?()
第14题:
When performing incomplete recovery using UNTIL SEQUENCE with RMAN, which two pieces of information are required?()
第15题:
Which two statements are true with respect to the maintenance window?() .
第16题:
Which two statements about sequences are true? ()
第17题:
You are granted the CREATE VIEW privilege. What does this allow you to do?()
第18题:
Which two statements about creating constraints are true? ()
第19题:
DDL statements can be audited.
Statements that refer to stand-alone procedure can be audited.
Operations by the users logged on as SYSDBA cannot be audited.
Only one audit record is ever created for a session per audited statement even though it is executedmore than once.
第20题:
Once created, a sequence belongs to a specific schema.
Once created, a sequence is linked to a specific table.
Once created, a sequence is automatically available to all users.
Only the DBA can control which sequence is used by a certain table.
Once created, a sequence is automatically used in all INSERT and UPDATE statements.
第21题:
2
3
11
30
第22题:
A sequence will never generate duplicate values
The MAXVALUE of a sequence can be equal to the MINVALUE
It is not possible to create a sequence that generates a constant since the INCREMENT value must be greater than zero
When a sequence cycles back to either the MAXVALUE or MINVALUE, it will always be equal to the specified value of either of these two boundaries