tekdudedude
Technical User
- Sep 29, 2007
- 79
Hello,
I have a .sql job that I wish to run for multiple schema. My problems is that I know the schema name but I do not know the password for each (and they may change).
If I try this I get a password prompt:
In UNIX as root you can simpy perform an su username and you are connected as that user without a password prompt.
What can you recommend in SQLPlus running a simple .sql script?
Thanks,
TD
I have a .sql job that I wish to run for multiple schema. My problems is that I know the schema name but I do not know the password for each (and they may change).
If I try this I get a password prompt:
Code:
connect scott@DB1
exec ctx_ddl.sync_index('Description_idx','40M')
In UNIX as root you can simpy perform an su username and you are connected as that user without a password prompt.
What can you recommend in SQLPlus running a simple .sql script?
Thanks,
TD