如何从古老的 SQL Anywhere 导出数据?
我的任务是从使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我最终使用 isql 和这些命令导出数据(其中 #{table} 是每个表,是我手动构建的列表):
我使用 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):
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.
请阅读http://www.lansa.com/support/tips/t0220.htm< /a>
Have a read http://www.lansa.com/support/tips/t0220.htm