网友您好, 请在下方输入框内输入要搜索的题目:
题目内容
(请给出正确答案)
Evaluate the set of SQL statements: CREATE TABLE dept (deptno NUMBER(2), dname VARCHAR2(14), loc VARCHAR2(13)); ROLLBACK; DESCRIBE DEPT What is true about the set?()
- A、The DESCRIBE DEPT statement displays the structure of the DEPT table.
- B、The ROLLBACK statement frees the storage space occupied by the DEPT table.
- C、The DESCRIBE DEPT statement returns an error ORA-04043: object DEPT does not exist.
- D、The DESCRIBE DEPT statement displays the structure of the DEPT table only if there is a COMMIT statement introduced before the ROLLBACK statement.
参考答案
更多 “ Evaluate the set of SQL statements: CREATE TABLE dept (deptno NUMBER(2), dname VARCHAR2(14), loc VARCHAR2(13)); ROLLBACK; DESCRIBE DEPT What is true about the set?()A、The DESCRIBE DEPT statement displays the structure of the DEPT table.B、The ROLLBACK statement frees the storage space occupied by the DEPT table.C、The DESCRIBE DEPT statement returns an error ORA-04043: object DEPT does not exist.D、The DESCRIBE DEPT statement displays the structure of the DEPT table only if there is a COMMIT statement introduced before the ROLLBACK statement.” 相关考题
考题
You want to analyze a SQL Tuning Set (STS) using SQL Performance Analyzer in a test database. Which two statements are true regarding the activities performed during the test execution of SQLs in a SQL Tuning Set?()A.Every SQL statement in the STS is considered only once for executionB.The SQL statements in the STS are executed concurrently to produce the execution plan and execution statisticsC.The execution plan and execution statistics are computed for each SQL statement in the STSD.The effects of DDL and DML are considered to produce the execution plan and execution statistics
考题
Examine the structure of the EMPLOYEES and DEPARTMENTS tables:Evaluate this SQL statement:Which SQL statement is equivalent to the above SQL statement?()
A.B.C.D.
考题
Evaluate the set of SQL statements:What is true about the set?()
A. The DESCRIBE DEPT statement displays the structure of the DEPT table.B. The ROLLBACK statement frees the storage space occupies by the DEPT table.C. The DESCRIBE DEPT statement returns an error ORA-04043: object DEPT does not exist.D. The DESCRIBE DEPT statement displays the structure of the DEPT table only if there is a COMMIT statement introduced before the ROLLBACK statement.
考题
在SQL*PLUS环境中,若想通过执行PL/SQL代码来显示指定的字符串,应该首先做哪项设置()
A.set echo onB.set output onC.set serveroutput onD.set dbms_output onE.set server_output on
考题
如何设置SQL*PLUS操作界面的行宽可以容纳1000个字符()
A. set long 1000B. set line 1000C. set numformat 1000D. set page 1000E. set size 1000
考题
在SQL*PLUS中,显示执行时长的命令是()
A.set time onB.set timing onC.set longD.set timelong onE.set sqlprompt
考题
Which two statements describe the behavior of the server's SQL mode?()A、The server's SQL mode determines how the server should behave when performing data validation check and interpreting different forms of syntaxB、The server's SQL mode determines whether the server should be read-only or should accept commands such as INSERT and UPDATEC、The server's SQL mode can be changed at the session level with a SET SESSION sql_mode="new_value" commandD、The server's SQL mode, when globally set on a slave server, applies to events sent from the master
考题
在SQL*PLUS环境中,若想通过执行PL/SQL代码来显示指定的字符串,应该首先做哪项设置()A、set echo onB、set output onC、set serveroutput onD、set dbms_output onE、set server_output on
考题
When creating a SQL tuning set,which of the following steps allows the DBA to reduce the size of the SQL set by selecting specific operators and values?()A、 Filter versionsB、 Filter loadsC、 Filter tasksD、 Filter options
考题
Which is the source used by Automatic SQL Tuning that runs as part of the AUTOTASK framework?()A、 SQL statements that are part of the AWR baseline onlyB、 SQL statements based on the AWR top SQL identificationC、 SQL statements that are part of the available SQL Tuning Set (STS) onlyD、 SQL statements that are available in the cursor cache and executed by a user other than SYS
考题
Evaluate the following code: SQLVARIABLE task_name VARCHAR2(255); SQLVARIABLE sql_stmt VARCHAR2(4000); SQLBEGIN :sql_stmt := ’SELECT COUNT(*) FROM customers WHERE cust_state_province =’’CA’’’; :task_name := ’MY_QUICKTUNE_TASK’; DBMS_ADVISOR.QUICK_TUNE(DBMS_ADVISOR.SQLACCESS_ADVISOR, :task_name, :sql_stmt); END; What is the outcome of this block of code?() A、 It creates a task and workload, and executes the task.B、 It creates a task and workload but does not execute the task.C、 It produces an error because a template has not been created.D、 It produces an error because the SQL Tuning Set has not been created.
考题
Evaluate the SQL statement: SELECT ROUND(TRUNC(MOD(1600,10),-1),2) FROM dual; What will be displayed?()A、0B、1C、0.00D、An error statement
考题
Evaluate the following query: SQL SELECT TRUNC(ROUND(156.00,-1),-1)FROM DUAL; What would be the outcome?()A、16 B、100 C、160 D、200 E、150
考题
在SQL*PLUS中,显示执行时长的命令是()A、set time onB、set timing onC、set longD、set timelong onE、set sqlprompt
考题
You are creating a SQL Tuning Set to allow a group of SQL statements to be passed into the SQL Tuning Advisor. Which packages will you use to create the SQL Tuning Set?()A、 DBMS_WORKLOAD_REPOSITORYB、 DBMS_RESOURCE_MANAGERC、 DBMS_SQLTUNED、 DBMS_ADVISOR
考题
Which of the following cannot be used as input to the SQL Tuning Advisor?()A、 A single SQL statement provided by a userB、 An existing SQL Tuning Set (STS)C、 A preprocessed Database Replay workloadD、 A schema nameE、 SQL statement identified in EM as using excessive resources
考题
如何设置SQL*PLUS操作界面的行宽可以容纳1000个字符()A、set long 1000B、set line 1000C、set numformat 1000D、set page 1000E、set size 1000
考题
单选题You are creating a SQL Tuning Set to allow a group of SQL statements to be passed into the SQL Tuning Advisor. Which packages will you use to create the SQL Tuning Set?()A
DBMS_WORKLOAD_REPOSITORYB
DBMS_RESOURCE_MANAGERC
DBMS_SQLTUNED
DBMS_ADVISOR
考题
多选题You want to analyze a SQL Tuning Set (STS) using SQL Performance Analyzer in a test database. Which two statements are true regarding the activities performed during the test execution of SQLs in a SQL Tuning Set?()AEvery SQL statement in the STS is considered only once for executionBThe SQL statements in the STS are executed concurrently to produce the execution plan and execution statisticsCThe execution plan and execution statistics are computed for each SQL statement in the STSDThe effects of DDL and DML are considered to produce the execution plan and execution statistics
考题
单选题Evaluate the set of SQL statements: CREATE TABLE dept (deptno NUMBER(2), dname VARCHAR2(14), loc VARCHAR2(13)); ROLLBACK; DESCRIBE DEPT What is true about the set?()A
The DESCRIBE DEPT statement displays the structure of the DEPT table.B
The ROLLBACK statement frees the storage space occupied by the DEPT table.C
The DESCRIBE DEPT statement returns an error ORA-04043: object DEPT does not exist.D
The DESCRIBE DEPT statement displays the structure of the DEPT table only if there is a COMMIT statement introduced before the ROLLBACK statement.
考题
单选题Which is the source used by Automatic SQL Tuning that runs as part of the AUTOTASK framework?()A
SQL statements that are part of the AWR baseline onlyB
SQL statements based on the AWR top SQL identificationC
SQL statements that are part of the available SQL Tuning Set (STS) onlyD
SQL statements that are available in the cursor cache and executed by a user other than SYS
考题
单选题When creating a SQL tuning set,which of the following steps allows the DBA to reduce the size of the SQL set by selecting specific operators and values?()A
Filter versionsB
Filter loadsC
Filter tasksD
Filter options
考题
单选题You are a professional level SQL Server 2005 database administrator in an international corporation named Wiikigo. You are experienced in implementing high-availability solutions, monitoring the database server, and design deployment. In the company, you major job is the deployment, maintenance and support of Microsoft SQL Server 2005. You work as a database administrator for a financial services company. Replication is configured between two SQL Server 2005 computers, and the servers are respectively named SQL1 and SQL2. Real-time transactional data is stored by the SQL1. And SQL2 is utilized for reporting. The data on SQL01 should not be changed by SQL2. The publication contains a large amount of data. Since you are the database administrator, you need to make sure that data is replicated from SQL1 to SQL2 in as near real-time as possible to confirm accurate reporting during replication. In addition, you need to make sure that this data is replicated securely. Which action should be performed?()A
Snapshot replication should be set on SQL1. And then SQL2 should be set as a standard subscriber for a standard subscription.B
Transactional replication should be set on SQL1. And then, SQL2 should be set as a standard subscriber for a standard subscription.C
Merge replication should be set on SQL1. And then SQL2 should be set as a standard subscriber for an updateable subscription.D
Transactional replication should be set on SQL1. And then, SQL2 should be set as a standard subscriber for an updateable subscription.
考题
单选题Evaluate the following code: SQLVARIABLE task_name VARCHAR2(255); SQLVARIABLE sql_stmt VARCHAR2(4000); SQLBEGIN :sql_stmt := ’SELECT COUNT(*) FROM customers WHERE cust_state_province =’’CA’’’; :task_name := ’MY_QUICKTUNE_TASK’; DBMS_ADVISOR.QUICK_TUNE(DBMS_ADVISOR.SQLACCESS_ADVISOR, :task_name, :sql_stmt); END; What is the outcome of this block of code?()A
It creates a task and workload, and executes the task.B
It creates a task and workload but does not execute the task.C
It produces an error because a template has not been created.D
It produces an error because the SQL Tuning Set has not been created.
考题
单选题Evaluate the set of SQL statements: CREATE TABLE dept (deptno NUMBER(2), dname VARCNAR2(14), 1oc VARCNAR2 (13)); ROLLBACK; DESCRIBE DEPT What is true about the set?()A
The DESCRIBE DEPT statement displays the structure of the DEPT table.B
The ROLLBACK statement frees the storage space occupies by the DEPT table.C
The DESCRIBE DEPT statement returns an error ORA-04043: object DEPT does not exist.D
The DESCRIBE DEPT statement displays the structure of the DEPT table only if there is a COMMIT statement introduced before the ROLLBACK statement.
热门标签
最新试卷