SQL数据加载器
目前我正在sql server 中开发数据库。我有近100张桌子。我需要将一些示例数据转储到表中,以便我可以测试存储过程。任何工具都可以做到这一点。请帮助我。
Currently I'm developing the database in sql server. I have nearly 100 tables. I need to dump some sample data to the tables, so that I can test the stored procedures. Any tools is there to do this. Help me please.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
用于批量导入数据的标准工具是 bcp,(几乎) 等效的 BULK INSERT 命令和 导入/导出向导,可以通过 Management Studio 中数据库的上下文菜单进行访问。该向导在后台创建一个 SSSIS 包,可以对其进行自定义以修改数据或迭代一组源文件。
The standard tools for bulk importing of data are the bcp, the (almost) equivalent BULK INSERT command and the Import/Export wizard which can be accessed by a database's context menu in Management Studio. The wizard creates an SSSIS package behind the scenes that can be customized to modify data or iterate over a set of source files.
您可以使用 GenerateData.com 生成 SQL 插入语句。
You can use GenerateData.com to generate SQL insert statements.