Skip to content

Instantly share code, notes, and snippets.

@igordcsouza
Created May 31, 2016 17:07
Show Gist options
  • Save igordcsouza/0245d55ff446d21b43ec96a0e2fc19cd to your computer and use it in GitHub Desktop.
Save igordcsouza/0245d55ff446d21b43ec96a0e2fc19cd to your computer and use it in GitHub Desktop.
load data local infile '/Users/isouza/Google Drive/2016_1/PBD/tpch_2_17_0/dbgen/005/customer.tbl' into table CUSTOMER fields terminated by '|' lines terminated by '\n';
load data local infile '/Users/isouza/Google Drive/2016_1/PBD/tpch_2_17_0/dbgen/005/nation.tbl' into table NATION fields terminated by '|' lines terminated by '\n';
load data local infile '/Users/isouza/Google Drive/2016_1/PBD/tpch_2_17_0/dbgen/005/part.tbl' into table PART fields terminated by '|' lines terminated by '\n';
load data local infile '/Users/isouza/Google Drive/2016_1/PBD/tpch_2_17_0/dbgen/005/region.tbl' into table REGION fields terminated by '|' lines terminated by '\n';
load data local infile '/Users/isouza/Google Drive/2016_1/PBD/tpch_2_17_0/dbgen/005/lineitem.tbl' into table LINEITEM fields terminated by '|' lines terminated by '\n';
load data local infile '/Users/isouza/Google Drive/2016_1/PBD/tpch_2_17_0/dbgen/005/orders.tbl' into table ORDERS fields terminated by '|' lines terminated by '\n';
load data local infile '/Users/isouza/Google Drive/2016_1/PBD/tpch_2_17_0/dbgen/005/partsupp.tbl' into table PARTSUPP fields terminated by '|' lines terminated by '\n';
load data local infile '/Users/isouza/Google Drive/2016_1/PBD/tpch_2_17_0/dbgen/005/supplier.tbl' into table SUPPLIER fields terminated by '|' lines terminated by '\n';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment