单项选择题

View the Exhibit to observe the roles assigned to the SLP_REP user. 

Which statement is true about the assignment of the SELECT_CATALOG_ROLE role to the SLP_REPuser()

A.The user must enable the role explicitly.
B.The user can grant the role to other users.
C.The user cannot use the role until the DBA enables it explicitly.
D.The user can start using the role immediately without any changes.


您可能感兴趣的试卷

你可能感兴趣的试题

1.单项选择题

View the Exhibit and examine the user information. 

The user has been granted CONNECT and RESOURCE roles and no individual system privileges. TheSL_REP user executes this command to create a table: 
SQL> CREATE TABLE orders(oid number(6), odate date, ccode number(4), oamt number(10,2)) TABLESPACE purchase_space; 
The PURCHASE_SPACE tablespace already exists in the database. 
Which statement describes theeffect of the command()

A.The command executes successfully and creates the table in the USERS tablespace.
B.The command executes successfully and creates the table in the PURCHASE_SPACE tablespace.
C.The command produces an error because the user does not have the privilege to create the table.
D.The command produces an error because the user does not have quota in the PURCHASE_SPACE tablespace.

2.单项选择题

You want to create a role to meet these requirements: 
1:The role is to be protected from unauthorized usage. 
2:The password of the role is not to be embedded in the application source code or stored in a table. 
Which method would you use to restrict enabling of such roles()

A.Create the role with global authentication.
B.Create the role with external authentication.
C.Create the role as a secure application role.
D.Create the role as a password-protected role.
E.Create a role and use Fine-Grained Access Control (FGAC) to secure the role.

3.单项选择题

Examine the commands executed in the following sequence: 
1:SQL> CREATE ROLE mgrrole; 
2:SQL> GRANT create user,select any table,connect,resource TO mgrrole; 
3:SQL> GRANT select,update ON sh.sales TO mgrrole; 
4:SQL> CREATE ROLE ceo IDENTIFIED BY boss; 
5:SQL> GRANT mgrrole,drop any table,create any directory TO ceo; 
6:SQL> GRANT ceo TO mgrrole; 
Which statement is true about the above commands()

A.The commands execute successfully.
B.Command 6 produces an error because of circular role grant.
C.Command 5 produces an error because a role cannot be granted to another role.
D.Command 3 produces an error because the MGRROLE role already contains system privileges.
E.The table created by HR remains and HR still has the CREATE TABLE system privilege.
F.The table created by HR remains and HR can grant the CREATE TABLE system privilege to other users.

4.单项选择题

Examine the following steps performed on a database instance: 
1:The DBA grants the CREATE TABLE system privilege to the SKD user with ADMIN OPTION. 
2:The SKD usercreates a table. 
3:The SKD user grants theCREATETABLE system privilege to the HR user. 
4:The HR user creates a table. 
5:The DBA revokes the CREATE TABLE system privilege from SKD. 
Which statement is true after step 5 is performed()

A.The table created by SKD isnot accessibleand SKD cannot create new tables.
B.The tables created by SKD and HR remain, but both cannot create new tables.
C.The table created by HR remains and HR still has the CREATE TABLE system privilege.
D.The table created by HR remains and HR can grant the CREATE TABLE system privilege to other users.

6.单项选择题

View the Exhibit and examine the privileges granted to the MGR_ROLE role.

The user SKD has been granted the CONNECT and RESOURCE roles only. The database administrator (DBA) grants MGR_ROLE to the user SKD by executing the command: SQL> GRANT MGR_ROLE TO SKDWITH ADMIN OPTION; 
Which statement is true about the user SKD after he/she is granted this role()

A.The user SKD can grant only the MGR_ROLE role to other users, but not the privileges in it. 
B.The user SKD can revoke the MGR_ROLE only from the users for whom he/she is the grantor.
C.The user SKD can grant the privileges in the MGR_ROLE role to other users, but not with ADMIN OPTION.
D.The user SKD can grant the privileges in the MGR_ROLE role to other users, but cannot revoke privileges from them.

7.单项选择题

The database instance has the following parameter setting: OS_AUTHENT_PREFIX = OPS$ OS_ROLES = FALSE 
REMOTE_OS_AUTHENT = FALSE REMOTE_OS_ROLES = FALSE TIMED_OS_STATISTICS = 0 
You have a local operating system user SKD. You create a database user OPS$SKD, and then 
assignexternal authentication. The user OPS$SKD has the CREATE SESSION privilege. 
What would youachieve by the above process()

A.The database user OPS$SKD will be able to administer the database.
B.The authentication detail for the database user OPS$SKD is recorded in the password file.
C.The local operating system user SKD will be able to access the database instance without specifying the username and password.
D.The database user OPS$SKD has to login with the password of the local operating system user SKD to access the database instance.

8.多项选择题Examine the command: SQL> ALTER USER skd ACCOUNT LOCK; Which two statements are true after the command is executed()

A.The SKD user cannot log in to the database instance.
B.The objects owned by the SKD user are not accessible to any user.
C.The other users can access the objects owned by the SKD user, on which they have access.
D.The password for the SKD user expires and the user is forced to change the password at the next log in.

9.多项选择题

View the Exhibit1, which shows the options that are selected to create the user SL_REP.

Which two statements are true regarding this user()

A.The user is authenticated by the operating system.
B.The objects created by the user are placed in the USERS tablespace.
C.The user does not require quota on the TEMP tablespace to perform sort operations.
D.The user is forced to change the password at the first login to the database instance.
E.The objects created by the user in future are unlocked to be accessed by all the users in the database by defa

10.多项选择题

The user HR receives the following error while inserting data into the TTK table: ERROR at line 1: 
ORA-01653: unable to extend table HR.TTK by 128 in tablespace SMDUpon 
investigation, you find that SMD is a small file tablespace. 
Which three action would allow the user to insert data()

A.Add a data file to the SMD tablespace.
B.Add a data file to the temporary tablespace associated with the user HR.
C.Resize the data file associated with the SMD tablespace to make it larger.
D.Alter the data file associated with the SMD tablespace to grow automatically.
E.Change the segment space management for the SMD tablespace to automatic. n segments is managed through free lists.

最新试题

In which situation is the UNDO_RETENTION parameter be ignored, even if it is set to a value()

题型:单项选择题

Why does performance degrade when many UPDATE, INSERT, or DELETE statements are issued on a tablethat has an associated Bitmap index()

题型:单项选择题

Your database is functional with a peak load for the last one hour. You want to preserve the performancestatistics collected during this period to be used for comparison when you analyze the performance of thedatabase in the future. What action would you take to achieve this task()

题型:单项选择题

You are managing an Oracle Database 11g database. You configured the database to run in ARCHIVELOGmode. Which two statements are true in this scenario()

题型:多项选择题

Examine the following statement that is used to modify the primary key constraint on the SALES table:SQL> ALTER TABLE SALES MODIFY CONSTRAINT pk DISABLE VALIDATE;Which three statements aretrue regarding the above command()

题型:多项选择题

View the Exhibit to examine the output of the DBA_OUTSTANDING_ALERTS view. After 30 minutes, youexecuted the following command:SQL> SELECT reason,metric_value FROM dba_outstanding_alerts; REASON METRIC_VALUE------------------------------ ---------------------- Tablespace [TEST] is [28 perce 28.125 nt] fullWhat could be the reason for the elimination of the other rows in the output()

题型:单项选择题

Which statements are true about logical structures of the Oracle database()

题型:多项选择题

You want to configure and schedule offline database backups to run automatically. Which tool or utility wouldyou use to achieve this()

题型:单项选择题

Which  statements are true about checkpointing()

题型:多项选择题

The session of user SCOTT receives the following error after executing an UPDATE command on the EMPtable:ERROR at line 1:ORA-00060: deadlock detected while waiting for resource On investigation, you find that a session opened byuser JIM has a transaction that caused the deadlock. Which two statements are true regarding the session ofSCOTT in this scenario()

题型:多项选择题