我使用导出一个 oracle“模式”
exp userid=/ file=pt.dmp log=pt.log owner=FOO buffer=10000000 statistics=NONE direct=Y
然后将其导入到同一 SID 上同一 oracle 实例上的不同模式中,使用
imp userid=/ file=pt.dmp fromuser=FOO touser=paul
当我尝试访问存储过程时,我得到
ORA-29541: class PAUL.ESMQOracleStoredProc could not be resolved
知道为什么一个用户可以解决这个问题而另一个用户不能吗?
我认为您需要在导出时使用“FULL”。看到这个网址:
链接文本
您在导入中遇到任何失败吗?可能没有创建或替换对象(可能已经存在同名对象)。