有關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/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- use azure data studio to create external table for oracleOracle
- 有關測試開發的點在哪
- Redshift建立外部架構external schema和外部表external table架構
- OTT 方面的測試,有沒有熱 做過系統一點的測試,求指教。
- 關於使用iview中Table元件的一點小技巧View元件
- oracle鎖級別相關測試Oracle
- 軟體測試的痛點有哪些?
- 今天測試了一下update partition table的part key
- 作為一個平庸的中年測試人 有點話說
- 上雲測試,這些關鍵點你get 到沒有
- 效能測試 有關 service mesh 的問題
- 面試總結:Promise有關面試的知識點。面試Promise
- 介面測試用例編寫和測試關注點
- Oracle 11gRac 測試案例(二)系統測試(一)Oracle
- oracle壓力測試之orabm(一)Oracle
- Oracle:TABLE MONITORINGOracle
- Oracle table selectOracle
- 關於效能測試的這點事,值得收藏~
- 關於table的一些操作
- 有沒有關於敏捷測試的書籍推薦呢?敏捷測試
- 介面測試關注點是什麼?
- Oracle replayc測試Oracle
- thinkphp,onethink都沒有測試相關的內容PHP
- 有關介面測試的用例設計問題
- oracle cache table(轉)Oracle
- Oracle Pipelined Table(轉)Oracle
- 測試的思考點
- 專案實戰:銀行系統對批次交易測試的共性關注點有哪些?
- 軟體穩定性測試的測試點
- 軟體測試應該重點關注的測試過程,廣東軟體測試公司推薦
- Analyze table對Oracle效能的提升Oracle
- 做測試,除了點點滑鼠,你還有更大的發展空間!
- Oracle 11gRac 測試案例(一)目錄Oracle
- ORACLE壓力測試Oracle
- Oracle TDE加密測試Oracle加密
- 一些可供掃描測試的站點
- 軟體安全測試有哪些測試要點?軟體安全測試報告價格是多少?測試報告
- Oracle Pipelined Table Functions(轉)OracleFunction