In windows xp, I run sqlloader.exe to load data into Oracle. This works fine until my password contains an @ -sign, which is also used by sqlloader parameters to determine the database to connect to: sqlldr.exe userid / password @database control = ctrlfile.ctl
How can I get sqlldr.exe to accept a password like p @ssword?
I tried with single / double quotes: sqlldr.exe "user / p @ssword" @database with no success. I tried to skip the entire user / password to type it on the console without success.
Even Google could not help me (although this led me to a great website).
source share