SQL Loader:哪一个是控制文件中流记录格式的默认分隔符?

时间:2011-01-27 05:12:00

标签: oracle sql-loader

这是我的控制文件

  load data
 infile ’sample3.dat’ “str ‘”
 into table example
 fields terminated by ‘,’ optionally enclosed by ‘"’
 (item char(10),
 destination char(2)) 

在上面的例子中,有人可以告诉我默认分隔符吗?

1 个答案:

答案 0 :(得分:1)

默认情况下,记录分隔符是\ n,您可以像下面的示例中那样更改它:

load data  
infile ’sample3.dat’ “str ‘*\n”  
into table example  
fields terminated by ‘,’ optionally enclosed by ‘"’  
(item char(10),  destination char(2))  

在这种情况下,* \ n中的记录分隔符使您的数据看起来像:

Item 1,London*
Item 2,Multi
line*