I try to load data into a data base using the Replication manager. I 
want to insert a string with a " inside.

The file I use contains the values :
1,"test of "double" quotes"

This is my table test :
create table test (
id int key,
description char(20)
)

When I insert this data with the sript :
DATALOAD TABLE test
  id        1
  description    2
INFILE '/tmp/test.data'


I get no errors but if I look at what I have in my data base, the field 
description contains the string : quotes

I found nothing on the documentation,
Can somebody please help me ?

Corinne

Reply via email to