今天下午將遠程數據庫中數據導出然後導入到本地數據庫,部署的項目連接本地數據庫後jboss啟動後編譯報如下錯誤:
嚴重: Exception sending context initialized event to listener instance of class com.dicpsi.mis.contextListener.ContextListener
org.springframework.dao.InvalidDataAccessResourceUsageException: could not execute query; nested exception is org.hibernate.exception.SQLGrammarException: could not execute query
Caused by: org.hibernate.exception.SQLGrammarException: could not execute query
at org.hibernate.exception.SQLStateConverter.convert(SQLStateConverter.java:67)
at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:107)
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:161)
at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:202)
at $Proxy1.find(Unknown Source)
Caused by: java.sql.SQLException: ORA-00942: 表或視圖不存在。
查找原因:通過報錯信息表或試圖不存在,我試圖通過以上信息來定位相關的不存在的表,但是我沒有找到這些不存在的表。然後,我打開遠程數據庫此用戶的數據表和我導入的本地數據表做對比,發現導入本地數據庫的表中少了8張在遠程數據數據庫中數據為空的表。
解決方法:最後我通過查找相關文檔,通過以下sql語句重新導出遠程數據服務器中存儲數據為空的表。
--選出為空的字段
select 'alter table '||table_name||' allocate extent(size 64k);' from tabs t where not exists (select segment_name from user_segments s where s.segment_name=t.table_name);
注明:
oracle11g的新特性,數據條數是0時不分配segment,所以就不能被導出。執行以上sql後,將在查詢內容中列舉出所有存儲數據為空的表,並生成如下sql語句,然後將以下內容復制黏貼出來執行。
--改變為空的表,讓其導出數據庫時識別
alter table PBCATVLD allocate extent(size 64k);
alter table PBCATTBL allocate extent(size 64k);
alter table PBCATCOL allocate extent(size 64k);
alter table MIS_WORDBOOKMARK allocate extent(size 64k);
alter table MIS_CHAT_SPARE allocate extent(size 64k);
alter table MIS_CHART allocate extent(size 64k);
alter table AS_TRANSRESULT_CHECKACCOUNT allocate extent(size 64k);
alter table AS_TRANSERRLOG allocate extent(size 64k);
alter table AS_BANKTRANSCOMPARE allocate extent(size 64k);
alter table AR_CUSTOMERINFO allocate extent(size 64k);
注明:執行完以上sql語句,原來遠程數據庫中存儲數據為空的表將會被導出,只不過數據依舊為空。
導出數據庫語句:
exp 用戶名/密碼@數據庫實例名 file=/home/oracle/exp.dmp log=/home/oracle/exp_smsrun.log
導出數據庫語句舉例:
exp scpssts/scpssts123@dicpsi file = D:\ora\scpssts.dmp owner = scpssts log=D:\ora\scpssts.log