SQL Server 表转储 - 并非所有列

发布于 2024-08-09 01:24:40 字数 203 浏览 8 评论 0原文

我正在尝试对数据库(Microsoft SQL Server)中的几个表进行 SQL Server 转储。我们没有对数据库的写访问权限,因此我们无法执行我最初的想法(创建临时数据库,复制表(减去我们不希望进入临时数据库的列,然后转储该数据库)。我真的想不出一种方法来做到这一点,

csv 导出不起作用(几乎不可能将数据放入换行符的正确字段 b/c 中)

I'm trying to do an SQL Server dump of a couple of tables in a database (Microsoft SQL Server). We don't have write access to the DB, so we can't do what I was originally thinking (create temp db, copy tables (minus the columns we don't want into the temp db, and then dump that db). I really can't figure out a way to do this.

A csv export doesn't work (it's almost impossible to put the data in the correct fields b/c of newlines).

Any tips?

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

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

发布评论

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

评论(2

梅倚清风 2024-08-16 01:24:40

批量复制或创建导出到 MS Access 数据库的 DTS(或 SSIS)包。在访问中,所有换行符都将保留在其相应的文本字段中。

Either bulk copy, or create a DTS (or SSIS) package that exports to a MS Access database. In access, all the line breaks will be preserved within their corresponding text fields.

澉约 2024-08-16 01:24:40

批量复制是您的朋友

Bulk Copy is your friend

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