You executed startup restrict foe a multitenant container database (CDB) containing several LUGGABLE databases (PDBs).
You then attempt an alter PLUGGABLE database PDBI open for a PDB called PDB1.
What is the result?
Examine these parameters for a database instance:
Which two statements are true?
In your multitenant container database (CDB) that contains pluggable databases (PDBs), the HR user executes the following commands to create and grant privileges on a procedure:
How can you prevent users having the EXECUTE privilege on the CREATE_TEST procedure from inserting values into tables on which they do not have any privileges?
If a program unit does not need to be executed with the escalated privileges of the definer, you should specify that the program unit executes with the privileges of the caller, also known as the invoker. Invoker's rights can mitigate the risk of SQL injection.
Your multitenant container database (CDB) contains some pluggable databases (PDBs), you execute the following command in the root container:
Which two statements are true? (Choose two.)
In your multitenant container database (CDB) that contains pluggable databases (PDBs), you grant the CREATE TABLE privilege to the common user C##A_ADMIN in root and all PDBs, with one command. You then execute the following command from the root container:
SQL> REVOKE create table FROM C##A_ADMIN;
What is the result?
SQL> create user c##admin identified by stipsi container=all;
User created.
SQL> grant create table to c##admin container=all;
Grant succeeded.
SQL> revoke create table from c##admin;
revoke create table from c##admin
*
ERROR at line 1:
ORA-65092: system privilege granted with a different scope to 'C##ADMIN'
Currently there are no comments in this discussion, be the first to comment!