1Z0-082 Exam Question 86

The SCOTT/TIGER user exists in two databases, BOSTON_DB and DALLAS_DB, in two different locations.
Each database has a tnsnames.ora file defining DALLAS_DB as a service name.
Examine this command:
CREATE DATABASE LINK dblink1 CONNECT TO scott IDENTIFIED BY tiger USING
`dallas_db';
How do you execute the command so that only SCOTT in BOSTON_DB can access the SCOTT schema in DALLAS_DB?
  • 1Z0-082 Exam Question 87

    Examine the description of the CUSTOMERS table:

    For customers whose income level has a value, you want to display the first name and due amount as 5% of their credit limit. Customers whose due amount is null should not be displayed.
    Which query should be used?
  • 1Z0-082 Exam Question 88

    Which three statements are true about single-row functions? (Choose three.)
  • 1Z0-082 Exam Question 89

    The ORCL database has RESUMABLE__TIMEOUT = 7200 and DEFERRED_SEGMENT_CREATION = FALSE User U1 has a 1 MB quota in tablespace DATA.
    U1 executes this command:
    SQL> CREATE TABLE t1 AS
    (SELECT object_name, sharing, created
    FROM dba_objects);
    U1 complains that the command is taking too long to execute.
    In the alert log, the database administrator (DBA) finds this:
    2017-03-06T12:15:17.183438+05:30
    statement in resumable session 'User U1(136), Session 1, Instance 1' was suspended due to ORA-01536: space quota exceeded for tablespace 'DATA' Which are three actions any one of which the DBA could take to resume the session? (Choose three.)
  • 1Z0-082 Exam Question 90

    A script abc.sql must be executed to perform a job.
    A database user HR, who is defined in this database, executes this command:
    $ sqlplus hr/hr@orcl @abc.sql
    What will happen upon execution?