ORA-12899: value too large for column ORG_NAME (actual: 145, maximum: 128)
匯入資料時報錯以下錯誤,這是因為原來的資料庫是GBK的,每個漢字兩個位元組,但新資料庫是AL32UTF8的,每個漢字是三個位元組,導致超過長度了。
ORA-12899: value too large for column ORG_NAME (actual: 145, maximum: 128)
解決:
先記錄JOB_QUEUE_PROCESSES和AQ_TM_PROCESSES引數的值,修改後好改回來,我這邊是1000和1。
操作步驟
SHUTDOWN IMMEDIATE; STARTUP MOUNT; ALTER SYSTEM ENABLE RESTRICTED SESSION; ALTER SYSTEM SET JOB_QUEUE_PROCESSES=0; ALTER SYSTEM SET AQ_TM_PROCESSES=0; ALTER DATABASE OPEN; ALTER DATABASE CHARACTER SET INTERNAL_USE ZHS16GBK; ALTER SYSTEM SET JOB_QUEUE_PROCESSES=1000; ALTER SYSTEM SET AQ_TM_PROCESSES=1;
核對步驟
set linesize 1000 select * from nls_database_parameters;
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/20893244/viewspace-2285071/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Index column size too large. The maximum column size is 767 bytes.Index
- 1709 - Index column size too large. The maximum column size is 767 bytes.Index
- [Err] 1709 - Index column size too large. The maximum column size is 767 bytes.Index
- mysql specified key was too long與Index column size too large. The maximum column size is 767 bytes.MySqlIndex
- MySQL建立表失敗:Index column size too large. The maximum column size is 767 bytesMySqlIndex
- MySQL 5.7 到 5.6,出現 Index column size too large. The maximum column size is 767 bytesMySqlIndex
- MySQL資料庫index column size too large. the maximum column size is 767 bytes問題解決MySql資料庫Index
- mysql5.7 資料匯入5.6 Index column size too large. The maximum column size is 767 bytes.MySqlIndex
- #1118 - Row size too large. The maximum row size for the used table type, not counting BLOBs
- mysql Index column size too large 超過767錯誤解決方案(轉)MySqlIndex
- data too long for column
- AST is too big. Maximum: 500000 處理AST
- [20231103]sqlplus column new_value old_value.txtSQL
- [20230303]sqlplus column new_value old_value.txtSQL
- Row size too large (> 8126)解決辦法
- Mysql 報Row size too large 65535解決方法MySql
- node接收圖片報錯 PayloadTooLargeError: request entity too largeError
- [20210324]bash shell value too great for base.txt
- 上傳報錯 Status Code: 413 Payload Too Large 請教!
- Java程式碼解決ElasticSearch的Result window is too large問題JavaElasticsearch
- java.sql.BatchUpdateException: Date truncation: Out of range value for column xxxxxJavaSQLBATException
- 【es】FATAL [circuit_breaking_exception] [parent] Data too large, data for [<http_request>] would beUIExceptionHTTP
- 【解決方法】Dubbo報錯Data length too large,調整payload大小解決
- [Mark]解決ElasticSearch深度分頁機制中Result window is too large問題Elasticsearch
- Caused by: org.apache.parquet.io.ParquetDecodingException: Can‘t read value in column [result, labelApacheException
- ORA-17500: ODM err:ODM ERROR V-41-3-2-207-5 Mirror Number too largeError
- 儲存富文字文字內容太多,提示nginx 414 Request-URI Too Large及tomcat報錯NginxTomcat
- SAP MM ME21N 建立PO時報錯 - Net price in CNY becomes too large – 之原因分析
- pymysql.err.OperationalError: (1136, “Column count doesn‘t match value count at row 1“)報錯反省。MySqlError
- Integer128==128?falseFalse
- 145、旅宿
- large pool
- expect ':' at 0, actual = (JSON轉化異常解決)JSON
- E - Maximum Glutton
- day128
- OGG-01163 Bad column length (32) specified for column in table
- ORACLE LARGE MEMORY(zt)Oracle
- 解決:java.sql.SQLException: Incorrect string value: ‘\xF0\x9F\x92\x94‘ for columnJavaSQLException