mirror of
https://github.com/dimitri/pgloader.git
synced 2025-08-07 23:07:00 +02:00
7 lines
205 B
Fish
7 lines
205 B
Fish
LOAD DBF
|
|
FROM data/dbase_8b.dbf
|
|
INTO postgresql:///pgloader
|
|
TARGET TABLE dbf.dbase_8b
|
|
WITH truncate, create table, disable triggers
|
|
BEFORE LOAD DO $$ create schema if not exists dbf; $$;
|