将整个 SQL Server 数据库提取到 CSV 文件

发布于 2024-09-05 17:51:01 字数 67 浏览 3 评论 0原文

是否可以使用 Microsoft SQL Server 中的一个查询或软件提取所有表和每个表的行?

谢谢

It is possible to extract all tables and rows of each table with one query or software in microsoft sql server?

thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

从此见与不见 2024-09-12 17:51:02

您可以使用导入/导出向导来完成此操作。 (右键单击数据库 -> 任务 -> 导入/导出向导)

或者为了更好的控制,您可以使用 SSIS。

You can do this by using the Import/Export Wizard. (Right Click database -> Tasks -> Import/Export Wizard)

Or for greater control you could use SSIS.

天生の放荡 2024-09-12 17:51:02

上面的答案是正确的,但如果这是您想要编写脚本并定期执行的操作,这可能会让您开始:

exec sp_msforeachtable 'exec xp_cmdshell ''bcp database_name.? out c:\?.csv -S server_name -T -c -t ","'''

注意...这使用未记录的存储过程并假设 xp_cmdshell 已启用并且 xp_xmdshell 帐户有权访问 sql server 。

The above answer is correct but if this is something you want to script and do regularly, this might get you started:

exec sp_msforeachtable 'exec xp_cmdshell ''bcp database_name.? out c:\?.csv -S server_name -T -c -t ","'''

Caution... This uses an undocumented stored procedure and assumes that xp_cmdshell is enabled and that the xp_xmdshell account has rights to sql server.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文