根据以下内容:
https://oracle-base.com/articles/10g/oracle-data-pump-10g#expdp
传递授权数据我们有这样的模式: user/password@sid
如何通过at (@)传递密码?这样做打破了一种模式,而且不起作用:
expdp scott/passw@rd@db10g tables=EMP,DEPT directory=TEST_DIR dumpfile=EMP_DEPT.dmp logfile=expdpEMP_DEPT.log发布于 2019-09-04 21:40:18
引用如下:
expdp scott/\"passw@rd\"@db10g tables=EMP,DEPT directory=TEST_DIR dumpfile=EMP_DEPT.dmp logfile=expdpEMP_DEPT.log发布于 2019-09-04 21:35:55
您可以始终使用引号来隔离这些有问题的部分。
expdp scott/"passw@rd"@db10g tables=EMP,DEPT directory=TEST_DIR dumpfile=EMP_DEPT.dmp logfile=expdpEMP_DEPT.log这应该行得通。
https://stackoverflow.com/questions/57789547
复制相似问题