1Z0-146 Exam

Oracle 11g: Advanced PL/SQL

  • 科目编号:1Z0-146
  • 科目名称:Oracle 11g: Advanced PL/SQL
  • 考题数目:136 Q&As
  • 更新日期:2010-02-06
  • 价 格 : ¥ 750.00 ¥ 625.00

免费下载 1Z0-146 认证考题Demo

下载 1Z0-146 PDF 认证考试题库
下载 1Z0-146 测试版考试题库

 

选择 pass4side 1Z0-146 题库

1Z0-146 考试是 Oracle 公司的 Oracle 11g: Advanced PL/SQL 认证考试官方代号,pass4side 的 1Z0-146 权威考试题库软件是 Oracle 认证厂商的授权产品,pass4side 绝对保证第一次参加 1Z0-146 考试的考生即可顺利通过,否则承诺全额退款!

1、Pass4Side考题大师1Z0-146试题都是考试原题的完美组合,覆盖率95%以上,答案由多位专业资深讲师原版破解得出,正确率100%,只要您使用本站的考试题库参加1Z0-146 考试,我们保证您一次轻松通过考试;

2、售后服务第一!我们相信要想在当今时代取得成功,必须为广大用户提供全套的周到细致的全程优质售后服务,只有客户满意了,我们才能发展。客户至上是我们Pass4Side考题大师的一贯宗旨;

3、Pass4Side实行“一次不过全额退款”承诺。如果您购买我们1Z0-146的考题,只要不是首次通过,凭盖有PROMETRIC或VUE考试中心钢印的考试成绩单,我们将退还您购买1Z0-146考题大师的全部费用,绝对保证您的利益不受到任何的损失;

4、本站1Z0-146题库根据1Z0-146考试的变化动态更新,在厂家考题每次发生变化后,我们承诺2天内更新1Z0-146题库。在您购买我们的产品之后,我们将提供90天的免费更新。确保1Z0-146考题的覆盖率始终都在95%以上;我们提供2种 1Z0-146 考题大师版本供你选择。

5、软件版本1Z0-146 考试题库
优点:具有学习模式,测试模式,线上自动升级
缺点:仅限固定电脑使用,不可打印为文本,只能PC阅读

6、PDF 格式1Z0-146 考试题库(部分最新更新科目已不提供PDF)
优点:不需下载安装软件,方便用户打印和携带,但也带来了可随意制的弊端,因此我们提醒用户不得随意公开或出售本站的1Z0-146题库,一经发现立即取消其升级资格,且不予退款。
缺点:不具备测试模式,通过查看 pass4side.cn网站及查收我们的更新E-MAIL获取更新信息。
 
 
Exam : Oracle 1Z0-146
Title : Oracle 11g: Advanced PL/SQL


1. Which statement describes the purpose of the plshprof command?
A. It produces HTML output from raw profiler output.
B. It produces HTML output from profiler tables in the database.
C. It populates profiler tables in the database from raw profiler output.
D. It produces raw profiler output on the most recently run applications.
Answer: A

2. Which two statements are true about SecureFile LOB options? (Choose two.)
A. The COMPRESSION HIGH option can be enabled only for CLOBs.
B. The COMPRESSION HIGH option can be enabled for all internal LOBs.
C. The DECRYPT option can be used to remove encryption only if the LOB column is empty.
D. The DECRYPT option can be used to remove encryption from LOB columns that are empty or contain data.
Answer: BD

3. The database instance was recently started up. Examine the following parameter settings for the database instance:
NAME TYPE VALUE
------------------------------------ ----------- ----------------------------
.........
result_cache_max_result integer 5
result_cache_max_size big integer 0
result_cache_mode string MANUAL
result_cache_remote_expiration integer 0
.........
You reset the value for the result_cache_max_size parameter by issuing the following command:
SQL> ALTER SYSTEM SET result_cache_max_size = 1056k SCOPE = BOTH;
System altered.
Which statement is true in this scenario?
A. 1056 KB is allocated for the result cache and the result cache is enabled.
B. 1056 KB is allocated for the result cache, but the result cache is disabled.
C. The results for only the queries that have the RESULT_CACHE hint are cached.
D. The results for all the queries except those having the NO_RESULT_CACHE hint are cached.
Answer: B

4. View the Exhibit and examine the structure of the EMPLOYEES table.
Examine the following PL/SQL block:
DECLARE
TYPE EmpList
IS VARRAY(2) OF employees.employee_id%TYPE NOT NULL;
v_employees EmpList := EmpList();
BEGIN
DBMS_OUTPUT.PUT_LINE(v_employees.COUNT);
v_employees.EXTEND;
v_employees(1) := 30;
END;
/
Which statement is true about the outcome on executing the above PL/SQL block?
A. It executes successfully and displays the value 2.
B. It executes successfully and displays the value 0.
C. It generates an error because EXTEND cannot be used for varrays.
D. It generates an error because the declaration of the varray is not valid.
Answer: B

5. Examine the structure of the DEPARTMENTS table.
Name Null? Type
----------------------------- ------------ ----------
DEPARTMENT_ID NOT NULL NUMBER(4)
DEPARTMENT_NAME NOT NULL VARCHAR2(30)
LOCATION_ID NUMBER(4)
View the Exhibit and examine the code that you plan to use for creating a package to obtain the details of an employee using a host variable on the client side.
In SQL*Plus, you plan to use the following commands:
SQL> VARIABLE x REFCURSOR
SQL> EXECUTE emp_data.get_emp(195,:x)
SQL> PRINT x
Which statement is true about the above scenario?
A. The package executes successfully and passes the required data to the host variable.
B. The package specification gives an error on compilation because cursor variable types cannot be defined in the specification.
C. The package specification gives an error on compilation because the cursor variable parameter was specified before you defined it.
D. The package executes successfully, but does not pass the required data to the host variable because the cursor is closed before the PRINT statement runs.
Answer: D

6. Which two types of metadata can be retrieved by using the various procedures in the DBMS_METADATA PL/SQL package? (Choose two.)
A. report of invalidated objects in a schema
B. report of statistics of an object in the database
C. DDL for all object grants on a table in the database
D. data definition language (DDL) for all objects in a schema
Answer: CD

7. In a user session, tracing is enabled as follows:
SQL> EXECUTE DBMS_TRACE.SET_PLSQL_TRACE(DBMS_TRACE.TRACE_ENABLED_LINES);
PL/SQL procedure successfully completed.
You executed the procedure as follows:
SQL> EXECUTE PROC10
PL/SQL procedure successfully completed.
When you examine the PLSQL_TRACE_EVENTS table, you find that no trace information was written into it.
View the Exhibit.
What is the reason for this?
A. The PROC10 procedure is created with the invoker's right.
B. The PROC10 procedure is not compiled with the DEBUG option.
C. Tracing is not enabled with the TRACE_ENABLED_CALLS option.
D. The TRACE_ENABLED parameter is set to FALSE for the session.
Answer: B

8. View the Exhibit and examine the procedure to create a trigger name based on the table name supplied to the procedure.
Which three statements are appropriate for protecting the code in the procedure from SQL injection? (Choose three.)
A. Explicitly validate the identifier length limit.
B. Add AUTHID DEFINER to the definition of the procedure.
C. Use PRAGMA RESTRICT_REFERENCES in the procedure.
D. Filter out control characters in user-supplied identifier names.
E. Use the object ID of the table from the data dictionary to build the trigger name.
Answer: ADE


产品保证 | 购买指南 | 常见问题 | 支付方式 | 退款协议 | 考试引擎 | 联系我们 | 站点地图 1 2 3 4

Copyright©2006-2009 Pass4side Limited. All Rights Reserved

Pass4side materials do not contain actual questions and answers from Microsoft's Cisco's Certification Exams.