在 SQL2008 中自动生成脚本向导
问题:如何在 SQL2008 Management Studio 中自动生成脚本:
即右键单击数据库、任务、生成脚本
所有表 所有存储过程
创建 drop 语句 不要使用 USE 语句 生成数据
这是一个手动完成的 20 秒过程。需要自动化:-) 我真的不想在 SQL Server 管理对象 (SMO) 中用 C# 对其进行编码。
也许我必须使用 AutoHotKey :-)
Problem: how to automate a Generate Scripts in SQL2008 Management Studio:
ie right click on database, Tasks, Generate Scripts
All Tables
All Stored Procs
Create drop statements
Don't use USE statement
Generate data
This is a 20sec process to do by hand.. needs automating :-) I don't really want to code it in C# in SQL Server Management Objects (SMO).
Maybe I'll have to use AutoHotKey :-)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用 SMO - 这是正确的做法,而且您知道!
Use SMO - it's the right thing to do and you know it!
看看 DBSourceTools。 http://dbsourcetools.codeplex.com
它是使用 SMO 的 SQL Server 数据库的开源脚本引擎。
Have a look at DBSourceTools. http://dbsourcetools.codeplex.com
It's an open-source scripting engine for SQL Server Databases that uses SMO.
我采纳了 Will A 的建议并尝试编写脚本。SQL Server 管理对象
几乎就在那里:- )
I've taken Will A's advice and tried scripting.. SQL Server Management Objects
nearly there :-)