Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
您好,我是 IBM DB2 Express-C 的新手
我有一个将数据库导出到 .sql 文件(存储在 SQLite3 中的原始数据库 - 使用 SQLite SQLite 管理器将数据库导出到 .sql 文件)
任何人都可以告诉一种将这个 .sql 文件导入 DB2 的方法。谢谢
如果要在 DB2 的文件中执行一组语句,请在命令行 (db2clp) 中发出:
db2 -tvf <filename>
例如,对于您的文件
db2 -tvf myfile.sql
但是,该文件的内容与 DB2 不兼容,您必须对其进行修改,才能在 DB2 中正确运行。
基本创建表和 DML(插入、删除、更新)是跨许多数据库的 SQL 92 标准。但是如果你创建了缓冲池、表空间和其他类型的对象,你就必须修改文件很多。