|
|
|
|
|
|
Re: Calling SQL*Loader utility with alias instead of password [message #485551 is a reply to message #485514] |
Wed, 08 December 2010 14:23 |
|
Littlefoot
Messages: 21823 Registered: June 2005 Location: Croatia, Europe
|
Senior Member Account Moderator |
|
|
Although more information (from your side) might make things clear, here's one option: simply don't specify a password if you are invoking SQL*Loader interactively (note the second line - "Password" waits for your input, hides what you type and - if everything is OK - loads data):C:\TEMP>sqlldr userid=scott control=test.ctl log=test.log
Password:
SQL*Loader: Release 10.2.0.1.0 - Production on Sri Pro 8 21:19:56 2010
Copyright (c) 1982, 2005, Oracle. All rights reserved.
Commit point reached - logical record count 2
Commit point reached - logical record count 3
C:\TEMP>
|
|
|