SQL Server 表转储 - 并非所有列
我正在尝试对数据库(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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
批量复制或创建导出到 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.
批量复制是您的朋友
Bulk Copy is your friend