|
最先答对且答案未经编辑的puber将获得纪念章一枚(答案不可编辑但可发新贴补充或纠正),其他会员如果提供有价值的分析、讨论也可获得纪念章一枚。
以往旧题索引:
http://www.itpub.net/forum.php?m ... eid&typeid=1808
原始出处:
http://www.plsqlchallenge.com/
作者:Steven Feuerstein
运行环境:SQLPLUS, SERVEROUTPUT已打开
注:本题给出答案时候要求给予简要说明才能得到奖品
我执行了这个语句:
CREATE TABLE plch_hitting_some_oracle_limit
(
n NUMBER (3),
c CLOB
)
/
哪些选项会使得下面的查询返回1? (查询在选项执行之后被执行)
SELECT COUNT (*)
FROM user_tables
WHERE table_name = 'ERR$_PLCH_HITTING_SOME_ORACLE_'
/
(A)
BEGIN
DBMS_ERRLOG.create_error_log (
dml_table_name => 'plch_hitting_some_oracle_limit');
END;
/
(B)
BEGIN
DBMS_ERRLOG.create_error_log (
dml_table_name => 'plch_hitting_some_oracle_limit',
skip_unsupported => TRUE);
END;
/
(C)
BEGIN
DBMS_ERRLOG.create_error_log (
dml_table_name => 'plch_hitting_some_oracle_limit',
err_log_table_name => 'err$_plch_hitting_some_oracle_',
skip_unsupported => TRUE);
END;
/
(D)
BEGIN
DBMS_ERRLOG.create_error_log (
dml_table_name => 'plch_hitting_some_oracle_limit',
err_log_table_name => 'plch_hitting_errors',
skip_unsupported => TRUE);
END;
/
|
|