Here's a sample table that I'm working with...this is just one of a couple different ones. The target database is Postgres 9.
I'm evaluating several databases and utilities in hopes of moving from Oracle. I'm looking at this utility to be a replacement for sqlloader....I'll frequently add 200K records at a shot.
CREATE TABLE "CTL"
(
"AUTO_NUM" numeric(10,0) NOT NULL,
"DB_USER" character varying(20),
"LAST_UPDATE" timestamp(6) without time zone,
"NEXT_UPDATE" timestamp(6) without time zone,
"LAST_SEQ_UPDATE" timestamp(6) without time zone,
"NEXT_SEQ_UPDATE" timestamp(6) without time zone,
"PLANTGDB_USER" character varying(20),
"PLANTGDB_UPDATE" timestamp(6) without time zone
)