如何将一些博客文章从我们的 Sql Server 导出到文件?

发布于 2024-11-25 13:17:01 字数 875 浏览 1 评论 0原文

我们有一个简单的网站,其中包含(在本例中您可以选择)博客文章/问答;一个问题/无论如何。人们上传文本(单个句子到段落..包括一些白名单/批准的 html)。

我需要将这些数据导出到..文件/某个东西..这样我就可以将数据提供给其他人。

例如。示例模式

Id INT
Title VARCHAR(100)
UniqueUrl VARCHAR(100)
Content VARCHAR(MAX)
ModifiedOn DATETIME
PublishedOn DATETIME
CreatedByUserId INTEGER

有什么方法可以将这些数据导出为一种易于提供给其他人导入的格式吗?我不知道他们会将其导入什么......所以我猜测 csv 或 excel 格式可能就足够了。也就是说,其中一个字段包含 VARCHAR(MAX),它可以包含文本段落。

有人有什么建议吗?

##Update

我已经尝试过

  • Tasks ->导出数据:这总是在最后一步中给我一个错误。错误消息没有给出任何有关发生的事情的信息。完全失败 :(
  • 运行我的 sql 脚本 -> 将结果保存为 -> .txt 或 .csv :文件已创建,但我无法读取内容..特别是因为其中之一fields 是一个 VARCHAR(MAX),其中到处都是用户生成的内容:(

也许导出为 XML

<块引用>

你尝试了什么?

除了上面的两个之外,我不确定我还可以尝试哪些其他事情/还有哪些选择。

We have a simple website that contains (take your pick, for this example) blog posts / q & a questions / whatever. People upload text (single sentences to paragraphs .. including some white listed/approved html).

I need to export this data into .. a file / something .. so I can give the data to someone else.

eg. sample schema

Id INT
Title VARCHAR(100)
UniqueUrl VARCHAR(100)
Content VARCHAR(MAX)
ModifiedOn DATETIME
PublishedOn DATETIME
CreatedByUserId INTEGER

Is there any way I can export this data into a format that is simple to give to another person to import? I have no idea what they will import it into .. so i was guessing a csv or excel format might be sufficient. That said, one of the fields contains VARCHAR(MAX) which can have paragraphs of text.

Anyone have any suggestions?

##Update

I've tried

  • Tasks -> Export Data : this always give me an error during the final step. Error message give's -nothing- about what happened. Total fail :(
  • Run my sql script -> save results as -> .txt or .csv : file is created, but i just can't read the content .. especially since one of the fields is a VARCHAR(MAX) with the User Generated Content everywhere :(

Maybe export as XML?

What have you tried?

I'm not sure what other things I can try / what options there are, besides the two, above.

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

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

发布评论

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

评论(1

嘿看小鸭子会跑 2024-12-02 13:17:01

XML 将是这里最简单的解决方案。换行符将撕裂大多数 csv 阅读器,而引号将结束其余部分。

XML is going to the be the simplest solution here. The line breaks will rip apart most csv readers, and the quotation marks will finish off the rest.

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