Skip to content

Commit 79e1055

Browse files
committed
Removed relative path for the data files
1 parent fd2daeb commit 79e1055

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

samples/features/sql-big-data-cluster/data-virtualization/oracle/setup/customer.ctl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
options (readsize=2048000,bindsize=1600000, rows=100000, silent=(header, feedback) )
22
load data
3-
infile '..\..\..\customer.csv' "str '\r\n'"
3+
infile 'customer.csv' "str '\r\n'"
44
append
55
into table SALES.CUSTOMER
66
fields terminated by '|'

samples/features/sql-big-data-cluster/data-virtualization/oracle/setup/inventory.ctl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
options (readsize=2048000,bindsize=1600000, rows=100000, silent=(header, feedback) )
22
load data
3-
infile '..\..\..\inventory.csv' "str '\r\n'"
3+
infile 'inventory.csv' "str '\r\n'"
44
append
55
into table SALES.INVENTORY
66
fields terminated by '|'

0 commit comments

Comments
 (0)