1z1-071試験無料問題集「Oracle Database SQL 認定」

Examine the description of the EMPLOYEES table:

Which statement will fail?

解説: (GoShiken メンバーにのみ表示されます)
Examine this query which executes successfully;
Select job,deptno from emp
Union all
Select job,deptno from jobs_history;
What will be the result?

解説: (GoShiken メンバーにのみ表示されます)
Examine these statements and results:
SQL> SELECT COUNT(*) FROM emp
COUNT(*)
---------------------
14
sQL> CREATE GLOBAL TEMPORARY TABLE t emp As SELECT * FROM emp;
Table created
SQL> INSERT INTo temp SELECT * FROM emp;
14 rows created
SQL> COMMIT:
Commit complete*
SQL> INSERT INTo temp SELECT * EROM emp;
14. rows created
SQL> SELECT COUNT(*) FROM t emp
How many rows are retrieved by the last query?

解説: (GoShiken メンバーにのみ表示されます)
Examine this statement which executes successfully:
Which three are true?

正解:A,B,C 解答を投票する
解説: (GoShiken メンバーにのみ表示されます)
Which two are true about creating tables in an Oracle database?

解説: (GoShiken メンバーにのみ表示されます)
Examine the command to create the BOOKS table.
SQL> create table books(book id CHAR(6) PRIMARY KEY,
title VARCHAR2(100) NOT NULL,
publisher_id VARCHAR2(4),
author_id VARCHAR2 (50));
The BOOK ID value 101 does not exist in the table.
Examine the SQL statement.
insert into books (book id title, author_id values
('101','LEARNING SQL','Tim Jones')

解説: (GoShiken メンバーにのみ表示されます)
Which two statements are true about the SET VERIFY ON command?

解説: (GoShiken メンバーにのみ表示されます)
Which two are true about transactions in the Oracle Database?

解説: (GoShiken メンバーにのみ表示されます)
Which two are true about creating tables in an Oracle database?

解説: (GoShiken メンバーにのみ表示されます)
Examine the description of the EMPLOYEES table:

Examine this query:

Which line produces an error?

解説: (GoShiken メンバーにのみ表示されます)
Examine this list of requirements for a sequence:
1. Name:EMP_SEQ
2. First value returned:1
3. Duplicates are never permitted.
4. Provide values to be inserted into the EMPLOYEES.EMPLOYEE_ID COLUMN.
5. Reduce the chances of gaps in the values.
Which two statements will satisfy these requirements?

解説: (GoShiken メンバーにのみ表示されます)