I am trying to connect to Oracle DB from my local computer and I use the following libname statement.
libname liblibb oracle path='galaxy' defer=no
connection=globalread readbuff=4000 ;
this works... as it uses the windows AD details to login. However, the problem is when i run this libname statement with rsubmit(server UNIX).
rsubmit;
libname liblibb oracle path='galaxy' defer=no
connection=globalread readbuff=4000 ;
endrsubmit;
Error:
ORA-01017 Invalid Username/Password
Error in the LIBNAME statement
But when I use it with username and password it works.
rsubmit;
libname liblibb oracle path='galaxy' user=xxxx password='xxxx'
defer=no
connection=globalread readbuff=4000 ;
endrsubmit;
Is there any possible way to logon to Oracle on rsubmit without writing the user and password details in the libname statement or atleast like a dbprompt for the username and password? or how can the we make UNIX work with the windows AD in sync with Oracle so it takes the single sign on concept.