oracle 19c 無法create table解決
場景:
在建立表時一直卡主,沒有反饋。但是查詢又是沒有問題的。
原因:
select或者CTAS時觸發等待事件‘PGA memory operation’
某些特定場景下執行select語句會觸發PGA memory operation等待事件
個是19c資料庫版本的一個BUG某些特定場景下執行select語句會觸發PGA memory operation等待事件,Oracle資料庫軟體的BUG、要打補丁或者升級到20以後才會修復。
解決方法:
Doc ID 2443753.1,The fix will be included in 20.1.0.
1. alter session set "_fix_control"='14402409:off';
or in a hint
/*+opt_param('_fix_control', '14402409:0')*/
2. alter session set optimizer_features_enable = '12.1.0.2';
or in a hint
/*+ optimizer_features_enable('12.1.0.2') */
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/23825935/viewspace-2939145/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Oracle Create Table as SelectOracle
- Oracle 19C 無法啟用Auto Indexes特性OracleIndex
- Oracle statspack無法收集快照,及解決辦法Oracle
- T-SQL的CREATE TABLE語法(下)SQL
- T-SQL的CREATE TABLE語法(上)SQL
- se://error/ Oracle 19c EM Exporess無法登陸ErrorOracle
- VBA從Excel中生成Oracle create tableExcelOracle
- use azure data studio to create external table for oracleOracle
- oracle 9iAgent無法啟動解決方案Oracle
- Oracle 19C 監聽無法動態註冊例項Oracle
- create table of mysql databaseMySqlDatabase
- Oracle 19c Concepts(02):Tables and Table ClustersOracle
- Oracle create tablespace 建立表空間語法詳解Oracle
- 執行create table as 報ora-600的錯誤的解決方案
- 解決ORACLE無法啟動安裝的問題Oracle
- create a partition table using a exsit table
- 檔案無法粉碎解決辦法
- oracle10.2.0.4_create table_constraint_indexOracleAIIndex
- [Oracle] Create table as 速度測試nologging+parallelOracleParallel
- ORACLE的Copy命令和create table,insert into的比較Oracle
- Oracle 11g無法匯出空表的解決方案Oracle
- Oracle 解決like中無法匹配下劃線的問題Oracle
- 資料庫 Table is marked as crashed and should be repaired 解決辦法資料庫AI
- 解決 Windows 無法訪問共享Windows
- 解決Spark叢集無法停止Spark
- 解決CSDN無法傳資源
- 解決:windows無法拖拽檔案Windows
- ClamAV無法更新錯誤解決
- ics無法啟動的解決
- windows無法配置此無線連線的解決辦法Windows
- create table if not exists Waiting for table metadata lockAI
- 新浪UC無法登入的解決辦法
- IIS 之 無法找到該頁 解決辦法
- 無法訪問google picasa的解決辦法Go
- 解決:ORACLE 11G使用exp無法導空出表問題Oracle
- oracle 10g asm windows 無法找到磁碟 的問題解決Oracle 10gASMWindows
- oracle create table官方手冊如何快速檢視學習方法Oracle
- oracle alter table詳解Oracle