Oracle在AIX下面导出报错的解决办法错误见图:用exp导出数据时,报下面的错误:Connectedto:OracleDatabase10gEnterpriseEditionRelease10.2.0.1.0-64bitProductionWiththePartitioning,OLAPandDataMiningoptionsExportdoneinZHS16GBKcharactersetandAL16UTF16NCHARcharactersetAbouttoexportspecifiedusers....exportingpre-schemaproceduralobjectsandactions.exportingforeignfunctionlibrarynamesforuserCQOMSWAS.exportingPUBLICtypesynonyms.exportingprivatetypesynonyms.exportingobjecttypedefinitionsforuserCQOMSWASAbouttoexportCQOMSWAS'sobjects....exportingdatabaselinks.exportingsequencenumbers.exportingclusterdefinitionsEXP-00056:ORACLEerror600encounteredORA-00600:internalerrorcode,arguments:[qmtInit1],[],[],[],[],[],[],[]EXP-00000:Exportterminatedunsuccessfully原因:注意是Oracle的环境变量LD_LIBRARY_PATH/LIBPATH变量设置得不对解决办法:1、停止数据库和数据库的listener监听器$sqlplus"/assysdba"SQL>shutdownimmediate(如果shutdownimmediate关闭需要很长时间,可以直接用shutdownabort快速关闭)SQL>exit$lsnrctlstop2、oracle用户修改.profile文件$vi.profile增加下面的内容:exportLD_LIBRARY_PATH=$ORACLE_HOME/libexportLIBPATH=$ORACLE_HOME/lib“Esc”wq保存退出$exportLD_LIBRARY_PATH=$ORACLE_HOME/lib$exportLIBPATH=$ORACLE_HOME/lib3、再重新启动数据库和listener$sqlplus"/assysdba"SQL>startupSQL>exit$lsnrctlstart4、再用exp命令导出就没有问题了