![]() |
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Hide Password | whatisthis | Shell Programming and Scripting | 4 | 07-21-2008 09:59 AM |
| How Do I Hide the Password in a Script | samd | Shell Programming and Scripting | 6 | 11-22-2006 05:38 AM |
| Want to hide password | arpitk | Shell Programming and Scripting | 1 | 09-29-2006 09:42 AM |
| How to hide password on Linux? | nir_s | Shell Programming and Scripting | 2 | 02-09-2005 12:24 PM |
| hide password typing | ivancheung | High Level Programming | 2 | 09-30-2004 02:05 PM |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
Hide oracle password on unix process list
Hi,
I need to hide the Oracle password accessed by sql script using the unix shell. I mean to say when I do ps -aef|grep sqlplus, I see the sqlplus connection with userid/password displayed on the prompt. My script looks something like below: sqlplus -s $USERPASS << eoj >> $LOGFILE 2>&1 set serveroutput on size 1000000; set head off feed on term off DECLARE TYPE t_del_cur IS REF CURSOR; v_del_cur t_del_cur; /* Variables */ v_err_code NUMBER; v_err_text VARCHAR2(4000); v_monthend_date VARCHAR2(4000):= NULL; v_qry_stmt1 VARCHAR2(4000):= NULL; v_month VARCHAR2(20); v_sel_count BINARY_INTEGER := 0; BEGIN v_qry_stmt1 := NULL; SELECT TO_CHAR(TO_DATE('$p_monthend_date','MM/DD/YYYY'),'DD-MON-YY') INTO v_month FROM DUAL; DBMS_OUTPUT.PUT_LINE('Select Criteria :'||v_month); EXCEPTION WHEN OTHERS THEN v_err_code := SQLCODE; v_err_text := substr(SQLERRM,1,200); DBMS_OUTPUT.PUT_LINE('SQL Error Code is: ' || v_err_code || ' Error message is ' || v_err_text ); END; / eoj Let me know how do we accomplish to hide the password? Thanks in advance, AC |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|