mirror of
https://github.com/dimitri/pgloader.git
synced 2025-08-09 15:56:58 +02:00
10 lines
260 B
Fish
10 lines
260 B
Fish
LOAD IXF
|
|
FROM data/nsitra.test1.ixf
|
|
INTO postgresql:///pgloader?nsitra.test1
|
|
WITH truncate, create table
|
|
|
|
BEFORE LOAD DO
|
|
$$ drop schema if exists nsitra cascade; $$,
|
|
$$ create schema nsitra; $$,
|
|
$$ drop table if exists nsitra.test1; $$;
|