Tag Archives: command

In one of your databases, you create a user, HR, and then execute this command: GRANT CREATE SESSION

In one of your databases, you create a user, HR, and then execute this command:GRANT CREATE SESSION TO hr WITH ADMIN OPTION;Which three actions can HR perform? (Choose three.) A. Revoke the CREATE SESSION privilege from other users B. Revoke the CREATE SESSION privilege from user HR C. Log in to the database instance D. Grant the CREATE… Read More »

You execute this command: (Exhibit) During the export operation, you detach from the job by using CTRL+C

You execute this command:During the export operation, you detach from the job by using CTRL+C and then execute this command:Export> STOP_JOB=immediateAre you sure you wish to stop the job ([yes]/no): yesWhich two statements are true about the job? (Choose two.) A. You can no longer monitor it B. You can reattach to it and monitor it C. It… Read More »

You execute this command: CREATE SMALLFILE TABLESPACE sales DATAFILE '/u01/app/oracle/sales01.dbf SIZE

You execute this command:CREATE SMALLFILE TABLESPACE salesDATAFILE ‘/u01/app/oracle/sales01.dbfSIZE 5GSEGMENT SPACE MANAGEMENT AUTO;Which two actions must you take to ensure UNDOTBS01 is used as the default UNDO tablespace? (Choose two.) A. It must be smaller than the smallest BIGFILE tablespace B. Free space is managed using freelists C. Any data files added to the tablespace must have a size… Read More »

Which command line runs the main class com.acme.Main from the module com.example?

Which command line runs the main class com.acme.Main from the module com.example? A. java -classpath com.example.jar -m com.example/com.acme.Main B. java –module-path mods -m com.example/com.acme.Main C. java –module-path mods com.example/com.acme.Main D. java -classpath com.example.jar com.acme.Main Correct Answer: A