\i '/path/region.sql' \i '/path/nation.sql' \i '/path/part.sql' \i '/path/supplier.sql' \i '/path/customer.sql' \i '/path/partsupp.sql' \i '/path/orders.sql' \i '/path/lineitem.sql' copy region from'/path/region.dat' with NULL as 'NULL'; copy nation from'/path/nation.dat' with NULL as 'NULL'; copy part from'/path/part.dat' with NULL as 'NULL'; copy supplier from'/path/supplier.dat' with NULL as 'NULL'; copy customer from'/path/customer.dat' with NULL as 'NULL'; copy partsupp from'/path/partsupp.dat' with NULL as 'NULL'; copy orders from'/path/orders.dat' with NULL as 'NULL'; copy lineitem from'/path/lineitem.dat' with NULL as 'NULL';