如何从古老的 SQL Anywhere 导出数据?

发布于 2024-11-16 05:58:44 字数 130 浏览 7 评论 0原文

我的任务是从使用 SQL Anywhere 的旧应用程序导出数据,显然是版本 5,也许是 5.6。我以前从未使用过这个数据库,所以我不知道从哪里开始。有人有提示吗?

我想以或多或少的任何文本表示形式导出它,然后我可以使用它。谢谢。

I'm tasked with exporting data from an old application that is using SQL Anywhere, apparently version 5, maybe 5.6. I never worked with this database before so I'm not sure where to start here. Does anybody have a hint?

I'd like to export it in more or less any text representation that then I can work with. Thanks.

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

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

发布评论

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

评论(2

独﹏钓一江月 2024-11-23 05:58:44

我最终使用 isql 和这些命令导出数据(其中 #{table} 是每个表,是我手动构建的列表):

SELECT * FROM #{table};
OUTPUT TO "C:\export\#{table}.csv" FORMAT ASCII DELIMITED BY ',' QUOTE '"' ALL;
SELECT * FROM #{table};
OUTPUT TO "C:\export\#{table}.txt" FORMAT TEXT;

我使用 CVS 导入数据本身,并使用 txt 来获取表的名称字段(仅解析第一行)。如果您有大量数据,txt 可能会变得相当大。

I ended up exporting the data by using isql and these commands (where #{table} is each of the tables, a list I built manually):

SELECT * FROM #{table};
OUTPUT TO "C:\export\#{table}.csv" FORMAT ASCII DELIMITED BY ',' QUOTE '"' ALL;
SELECT * FROM #{table};
OUTPUT TO "C:\export\#{table}.txt" FORMAT TEXT;

I used the CVS to import the data itself and the txt to pick up the name of the fields (only parsing the first line). The txt can become rather huge if you have a lot of data.

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