以下的文章主要是闡述DB2數據庫的常見錯誤以及正確的解決辦法,如果你DB2數據庫的常見錯誤以及正確的解決辦法心存好奇的話,以下的文章將會揭開它的神秘面紗。希望你在浏覽完之後會有所收獲。
文章分類:數據庫
1、創建DB2數據庫的時候,報42704錯誤。如:
Sql代碼
- =>create database test
- =>SQL0204N "SYSTEM_1386_US" is an undefined name. SQLSTATE=42704
- =>create database test
- =>SQL0204N "SYSTEM_1386_US" is an undefined name. SQLSTATE=42704
解決辦法:Sql代碼
- =>create database test using codeset gbk territory cn
- =>create database test using codeset gbk territory cn
2、在連接數據的時候,報57017錯誤。如:
Sql代碼
- =>connect to test user test using test
- =>SQL0332N Character conversion from the source code page "1386" to the target code page "819" is not supported. SQLSTATE=57017
- =>connect to test user test using test
- =>SQL0332N Character conversion from the source code page "1386" to the target code page "819" is not supported. SQLSTATE=57017
解決辦法:
Sql代碼
- =>db2set db2codepage=1386
- =>db2set db2codepage=1386
3、在對DB2數據庫進行操作的時候,報55039錯誤。如:
Sql代碼
- =>db2 drop table t_base_acc_manageacc
- =>SQL0290N Table space access is not allowed. SQLSTATE=55039
- =>db2 list tablespaces show detail
- Tablespace ID = 2
- Name = USERSPACE1
- Type = System managed space
- Contents = Any data
- State = 0x0020
- Detailed explanation:
- Backup pending
- =>db2 drop table t_base_acc_manageacc
- =>SQL0290N Table space access is not allowed. SQLSTATE=55039
- =>db2 list tablespaces show detail
- Tablespace ID = 2
- Name = USERSPACE1
- Type = System managed space
- Contents = Any data
- State = 0x0020
- Detailed explanation:
Backup pending 原因:在歸檔的數據庫做過load或者改了參數重新啟動了db
解決辦法:
Sql代碼
備份DB2數據庫
=>db2 backup db
備份數據庫
=>db2 backup db
4、在對數據庫進行備份的時候,報57019錯誤。如:
Sql代碼
- =>db2 backup database dbname to /xx/xx compress
- =>SQL1035N The database is currently in use. SQLSTATE=57019
- =>db2 backup database dbname to /xx/xx compress
=>SQL1035N The database is currently in use. SQLSTATE=57019解決辦法:
Sql代碼
- =>db2stop force
- =>db2start
- =>db2stop force
- =>db2start
5、在對創建表空間的時候,報54047錯誤。如:
Sql代碼
- =>create regular tablespace space1 pagesize 4 k managed by database using (device '/dev/dd' 25000000) prefetchsize automatic bufferpool bp1
- =>SQL1139N The total size of the table space is too big. SQLSTATE=54047
- =>create regular tablespace space1 pagesize 4 k managed by database using (device '/dev/dd' 25000000) prefetchsize automatic bufferpool bp1
=>SQL1139N The total size of the table space is too big. SQLSTATE=54047解決辦法:把表空間的大小改小點或者把regular64G)換成large就ok了。
6、DB2數據庫備份失敗,報內存不足,增大了dbheap也沒有用。SQL2009C,沒有足夠的可用內存來運行此實用程序。
原因:DB2 UTIL_HEAP_SZ 未設置得足夠高以用於備份實用程序。
解決辦法:db2 update db cfg for dbname using UTIL_HEAP_SZ 具體的數字db2備份使用的內存是UTIL_HEAP_SZ,請使用以上命令調整)。
7、用JDBC往表批量插入數據時。報23502錯誤。如:
Sql代碼
- Error for batch element #0: DB2 SQL error: SQLCODE: -407, SQLSTATE: 23502, SQLERRMC: TBSPACEID=2, TABLEID=15, COLNO=2
Error for batch element #0: DB2 SQL error: SQLCODE: -407, SQLSTATE: 23502, SQLERRMC: TBSPACEID=2, TABLEID=15, COLNO=2 原因:往表中有非空約束的字段,插入空值。
解決辦法:查看表定義,去掉非空約束,或加入非空值。
8、用JDBC往表批量插入數據時。報22001錯誤。如:
Sql代碼
- DB2 SQL Error: SQLCODE=-302, SQLSTATE=22001, SQLERRMC=null
- DB2 SQL Error: SQLCODE=-302, SQLSTATE=22001, SQLERRMC=null
原因:表中某字段的長度不夠,發生字符串截斷。
解決辦法:查看表定義,加大字段長度。
9、用JDBC往表批量插入數據時。報-4474錯誤。如:
Sql代碼
非法轉換:不能從“java.lang.String”轉換到“byte[]” ERRORCODE=-4474, SQLSTATE=null
非法轉換:不能從“java.lang.String”轉換到“byte[]” ERRORCODE=-4474, SQLSTATE=null原因:表中某字段定義為‘ID CHAR(16) FOR BIT DATA NOT NULL’這個是使用MTK從MS SQL遷移到DB2數據庫時,uniqueidentifier轉換成的)。
解決辦法:重新創建表,把字段屬性改為VARCHAR類型。