Removed relative path for the data files

This commit is contained in:
Umachandar Jayachandran
2019-03-27 12:31:49 -07:00
parent fd2daeb78f
commit 79e1055f50
2 changed files with 2 additions and 2 deletions
@@ -1,6 +1,6 @@
options (readsize=2048000,bindsize=1600000, rows=100000, silent=(header, feedback) )
load data
infile '..\..\..\customer.csv' "str '\r\n'"
infile 'customer.csv' "str '\r\n'"
append
into table SALES.CUSTOMER
fields terminated by '|'
@@ -1,6 +1,6 @@
options (readsize=2048000,bindsize=1600000, rows=100000, silent=(header, feedback) )
load data
infile '..\..\..\inventory.csv' "str '\r\n'"
infile 'inventory.csv' "str '\r\n'"
append
into table SALES.INVENTORY
fields terminated by '|'