将数据从 Hypersonic 复制到 Sql server 2008
我使用 liferay 创建了一个网站,其中包含一些示例页面。后来我们想将大约 23000 个用户导入 liferay。数据为 csv 格式。
我不懂java。尝试使用 C#.net 和 liferay webservices 插入数据。运气不好。所以我更改了设置以指向 Sql Server。
现在,我为示例站点创建的所有数据都驻留在 Hypersonic DB 中。
有什么办法可以将数据复制到sql server吗?
I created a website using liferay with some sample pages. Later we wanted to import some 23000 users into liferay. The data is in csv format.
I dont know java. tried to insert data using C#.net and liferay webservices. No luck. So i changed the settings to point to Sql Server.
Now all the data I created for the sample site is residing in the Hypersonic DB.
Is there any way to copy the data to sql server?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最简单的方法是将 HSQLDB 中的所有表数据收集为 .CSV 格式。
如果您可以使用原始 .csv 文件,那就太好了。如果需要,您需要找到一种方法将数据从 HSQLDB 获取到文本文件中。您可能已经拥有一个您知道的工具。也许您可以使用 RazorSQL 的导出工具。 (屏幕截图)。
然后,您可以使用 SQL Server Management Studio 导入向导将 .csv 导入到 SQL Server 。屏幕截图有点过时,但您可以毫不费力地理解它。
The simplest way would be to gather all your table data from HSQLDB into .CSV format.
If you can use your original .csv file, that's great. If needed, you'll need to find a way to get your data from HSQLDB into a text file. You may have a tool already that you know of. Perhaps you could use RazorSQL's Export Tool. (screenshot).
Then you can import .csv to SQL Server using the SQL Server Management Studio Import Wizard. The screenshots are a bit out of date, but you'll have no trouble figuring it out.