Which statement explicitly names a constraint?()
第1题:
In which of the following situations should correlation names be used?()
第2题:
Which two statements about views are true? ()
第3题:
Which of the following resources can be explicitly locked?()
第4题:
Which two statements are true regarding the ORDER BY clause? ()
第5题:
Which statement is true?()
第6题:
Which is an example of a dynamic SELECT statement? ()
第7题:
NETBIOS names can only use alphanumeric characters.
You can use a ’.’ in a NETBIOS name.
You can use an ’_’ (underscore) in a NETBIOS name.
NETBIOS names must be UPPERCASE
NETBIOS names can be a maximum of 32 characters
第8题:
It is executed first in the query execution
It must be the last clause in the SELECT statement
It cannot be used in a SELECT statement containing a HAVING clause
You cannot specify a column name followed by an expression in this clause
You can specify a combination of numeric positions and column names in this clause
第9题:
ALTER TABLE student_grades ADD FOREIGN KEY (student_id) REFERENCES students (student_id);
ALTER TABLE student_grades ADD CONSTRAINT NAME = student_id_fk FOREIGN KEY (student_id) REFERENCES students (student_id);
ALTER TABLE student_grades ADD CONSTRAINT student_id_fk FOREIGN KEY (student_id) REFERENCES students (student_id);
ALTER TABLE student grades ADD NAMED CONSTRAINT student_id_fk FOREIGN KEY (student_id) REFERENCES students (student_id);
ALTER TABLE student grades ADD NAME student_id_fk FOREIGN KEY (student_id) REFERENCES students (student_id);
第10题:
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.
第11题:
It is used to change failure priority only for HIGH or LOW priorities.
It is used to execute the advised repair script.
It is used to change failure priority only for the CRITICAL priority.
It is used to explicitly close the open failures.
It is used to inform the database about the repair after the repair script executes.
第12题:
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
第13题:
During tablespace creation, which filename format is NOT used for creating datafiles associated with a tablespace?()
第14题:
Which statement is true regarding the INTERSECT operator?()
第15题:
View the Exhibit to observe the roles assigned to the SL_REP user. Which statement is true about theassignment of the SELECT_CATALOG_ROLE role to the SL_REP user()
第16题:
Which statement describes the significance of the CHANGE FAILURE command in RMAN?()
第17题:
Where can subqueries be used?()
第18题:
SELECT last_name FROM EMP WHERE last_ name LIKE '_A%';
SELECT last_name FROM EMP WHERE last name ='*A%'
SELECT last_name FROM EMP WHERE last name ='_A%';
SELECT last_name FROM EMP WHERE last name LIKE '*A%'
第19题:
The user must enable the role explicitly.
The user can grant the role to other users.
The user cannot use the role until the DBA enables it explicitly.
The user can start using the role immediately without any changes
第20题:
A class’s finalize() method CANNOT be invoked explicitly.
super.finalize() is called implicitly by any overriding finalize() method.
The finalize() method for a given object is called no more than once by the garbage collector.
The order in which finalize() is called on two objects is based on the order in which the two objects became finalizable.
第21题:
SMTP
ICMP
BGP
SSH
RTP
BitTorrent
VTP
第22题:
LDAP
ICMP
RTP
BGP
SSH
RDP
第23题:
A query whose object names change during its execution.
A query whose object names are not known until run time.
A query whose bind variables values change during execution.
A query whose bind variable values are not known until run time.
第24题:
A table referenced in the FROM clause has no indexed column.
The table referenced in the FROM clause has more than 200 columns.
Two or more tables in the FROM clause have identical column names.
The FROM clause contains two or more tables in the SELECT statement.