设置本地 informix 数据库,就像在服务器中一样
目前我正在使用不在本地的 informix 数据库服务器,无法从外部办公室或虚拟 LAN 连接,因此有任何工具可以让我复制所有表并在本地工作,
提前致谢
currently i'm working with informix db server which is not in local, where can't connect from outside office or virtual lan, so there is any tools so i can copy all table and work locally,
thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
dbexport
将数据库导出为文本,并使用dbimport
在本地导入。还有其他迁移数据库的方法,但对于小型数据库来说它应该可行。数据是文本形式的,因此可以很容易地更改某些内容(例如数据格式),甚至可以使用此类导出将数据导入到其他数据库。看一下: http://publib.boulder.ibm.com/infocenter/idshelp/v10/index.jsp?topic=/com.ibm.mig.doc/mig138.htmYou can export database to text using
dbexport
and import it locally usingdbimport
. There are other way of migrating database, but for small databases it should work. The data is in text so it may be easy to change something (for example data format), or even use such export to import data to other database. Have a look at: http://publib.boulder.ibm.com/infocenter/idshelp/v10/index.jsp?topic=/com.ibm.mig.doc/mig138.htm