将DB2 Blob / Rowid数据类型迁移到PostgreSQL

时间:2018-10-22 06:19:43

标签: postgresql database-migration db2-zos

如何在PostgreSQL中创建以下DB2表?

CREATE TABLE table1 (
        idDoc       DECIMAL(15) NOT NULL,
        rowId       ROWID NOT NULL,
        checksumDoc DECIMAL(15) NOT NULL,
        doc         BLOB NOT NULL,
        PRIMARY KEY (idDoc)
    );

我想出了以下用于PostgreSQL的DDL,对吗?

CREATE TABLE table1 (
        idDoc       DECIMAL(15) NOT NULL,
        checksumDoc DECIMAL(15) DEFAULT 0 NOT NULL,
        doc         bytea NOT NULL DEFAULT E'\\000'
    );

我可以省略ROWID吗?

0 个答案:

没有答案