Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 sql 文件,其中包含所有对象(表、包)的用户模式,我通过在 pl/sql 开发人员中导出用户对象获得。现在我需要将它导入我的数据库。我如何使用 pl/sql 开发人员来做到这一点?
想到了两种方法:
使用 SQL Developer 打开文件并执行它(如果出现提示,请选择适当的连接)
打开一个连接,然后在 SQL 工作表中:
@"C:\Path\To\My Schema\import.sql"
然后作为语句执行。