SQL Loader [message #72703] |
Fri, 26 September 2003 10:09 |
sheela
Messages: 66 Registered: March 2002
|
Member |
|
|
> Hi,
>
> I would like to use the SQLLDR, but I am having a problem because my password has a "," in it. Is this always a problem, or is there a way to get around it?
>
> Thanks.
> Sheela.
|
|
|
|
Re: SQL Loader [message #72705 is a reply to message #72703] |
Fri, 26 September 2003 11:23 |
Thiru
Messages: 1089 Registered: May 2002
|
Senior Member |
|
|
or consider changing the password. The comma, is bound to give you problem one way or the other sooner or later .
Thiru
|
|
|
Re: SQL Loader [message #72706 is a reply to message #72704] |
Fri, 26 September 2003 11:29 |
sheela
Messages: 66 Registered: March 2002
|
Member |
|
|
Hello,
It is *hard* to make out your suggestion.
Are you suggesting double quotes around the password with the comma?
Thanks.
Sheela.
|
|
|
Re: SQL Loader [message #72707 is a reply to message #72704] |
Fri, 26 September 2003 11:33 |
sheela
Messages: 66 Registered: March 2002
|
Member |
|
|
Hello,
Sheela, here, again.
Or, are you suggesting double quotes, and then, the rest of your password before the comma, and then a backslash followed by your comma, again ending in the double quote?
Thanks.
Sheela.
|
|
|
Re: SQL Loader [message #72708 is a reply to message #72707] |
Fri, 26 September 2003 12:27 |
|
Mahesh Rajendran
Messages: 10708 Registered: March 2002 Location: oracleDocoVille
|
Senior Member Account Moderator |
|
|
yes.
enclose the password with double quotes.
and esscape the ',' with the ''.
is the usernam=test
password=tes,t
in command line use
sqlldr userid=test/"tes,t"
|
|
|