用于编写所有 Oracle 10g 包/过程/函数等的命令行工具/脚本?
我希望能够定期自动保存我的开发模式中的 DDL 脚本。
I'd like to be able to automatically save the DDL scripts from my development schema on a regular basis.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用数据泵生成 DDL 语句。
expdp schemaname/passwordreuse_dumpfiles=y include=directory full=y content='METADATA_ONLY'directory=data_pump_dir dumpfile=ddl_scripts.dmp
You can use the datapump to generate DDL statements.
expdp schemaname/password reuse_dumpfiles=y include=directory full=y content='METADATA_ONLY' directory=data_pump_dir dumpfile=ddl_scripts.dmp
DDL 是代码,您应该使用源代码管理来归档任何代码。
另请参阅 SO 上的这些问题(以及其他),例如:
DDL is code, you should use source control to archive any code.
See also those questions (among others) on SO for some example: