事务SQL怎么办?
我需要在 *.sdf 文件中生成 SQL 更新命令。
*.sdf 文件是使用 Visual Studio 部署的。我希望生成一个脚本,该脚本填充表的最大记录数约为 2MBytes。
关于如何做到这一点的任何想法,即远程连接到数据库并使用虚拟记录填充数据库的脚本?示例和部署会很棒:-)
I need to generate a SQL update command in a *.sdf file.
The *.sdf file is deployed using Visual studio. I am looking to generate a script which fills in a table the maximum number of records which is about 2MBytes.
any ideas for how I can do this i.e. connect remotely to the database and script filling in the database with a dummy record? Examples and deployment would be fab :-)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我假设您在 Visual Studio 中有一个数据库项目。
在数据库项目中,部署后脚本以命令模式执行。您可以使用以下语法来执行您想要执行的任何命令。
I presume you have a database project in Visual Studio.
In a database project, the post-deployment script is executed in Command mode. You can use the following syntax to execute any commands that you want executed.
面向数据库开发人员的 Visual Studio Team Systems
将为您完成此操作。Visual Studio Team Systems for Database Developers
will do this for you.