有關oracle external table的一點測試。
10. Which two are true about Oracle's Optimizer statistics?
A) They are automatically updated when ddl statements execute.
B) They can be calculated exactly .
C) They can be gathered on external tables.
D) They are automatically updated when dml statements execute.
E) They can be estimated.
Answer: BE
--=======================
SQL> create table alert_log_external
2 (line varchar2(4000) ) --建立的外部表的列,可以根據需求寫
3 organization external --固定語法
4 (type oracle_loader
5 default directory DATA_PUMP_DIR
6 access parameters (
7 records delimited by newline
8 nobadfile
9 nologfile
10 nodiscardfile
11 --fields terminated by ; --遇到;符號時終止
12 missing field values are null --缺失部分為空
13 (line)
14 )
15 location ( 'alert_test.log') )--name_alert為資料檔名
16 reject limit unlimited;
表已建立。
SQL> exec dbms_stats.gather_table_stats('XYS','ALERT_LOG_EXTERNAL');
BEGIN dbms_stats.gather_table_stats('XYS','ALERT_LOG_EXTERNAL'); END;
*
第 1 行出現錯誤:
ORA-20000: Unable to analyze TABLE "XYS"."ALERT_LOG_EXTERNAL", sampling on
external table is not supported
ORA-06512: 在 "SYS.DBMS_STATS", line 20337
ORA-06512: 在 "SYS.DBMS_STATS", line 20360
ORA-06512: 在 line 1
SQL> create index idx1 on ALERT_LOG_EXTERNAL(line);
create index idx1 on ALERT_LOG_EXTERNAL(line)
*
第 1 行出現錯誤:
ORA-30657: 操作在外部組織表上不受支援
SQL>
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/19602/viewspace-2158803/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- oracle 外部表 external tableOracle
- Oracle外部表 External TableOracle
- ORACLE_DATAPUMP & External TableOracle
- sqlldr和external table的關係!SQL
- 有關lock的一點測試總結!
- oracle11gR2 table compress一點測試Oracle
- 有關測試開發的點在哪
- DBMS_REDEFINITION.COPY_TABLE_DEPENDENTS的一點測試
- use azure data studio to create external table for oracleOracle
- sqlldr與external tableSQL
- 關於Oracle 9i RAC enqueue等待的一點測試OracleENQ
- OTT 方面的測試,有沒有熱 做過系統一點的測試,求指教。
- 資料庫表--external table資料庫
- oracle的學習方法——關於測試的兩點體會Oracle
- Redshift建立外部架構external schema和外部表external table架構
- oracle10g_alter table_測試3Oracle
- 軟體測試的痛點有哪些?
- cursor express的一點測試!Express
- 系統測試成功的關鍵點
- 【移動資料】External Table 外部表
- alert_log設定成external table
- 上雲測試,這些關鍵點你get 到沒有
- 關於軟體測試的幾點反思-關於測試團隊的組織
- 關於oracle session的簡單測試OracleSession
- 關於軟體質量和軟體測試的一點點看法 (轉)
- 有關Junit的多執行緒測試執行緒
- 測試流程與測試人員配置的一點感想
- [Oracle] Create table as 速度測試nologging+parallelOracleParallel
- mv(materialized view)的一點測試ZedView
- Index Joins的一點測試!Index
- 關於使用iview中Table元件的一點小技巧View元件
- 介面測試用例編寫和測試關注點
- 今天測試了一下update partition table的part key
- 有關事件的一點疑問事件
- 有關role的一點總結!
- Oracle Golden Gate 有關Data Pump 重置 trail 序列號 測試 說明OracleGoAI
- 軟體測試流程的一點感悟
- index clusterring cluster的一點測試!Index