Search Results

Search: Posts Made By: monalsinha
Forum: Red Hat 05-19-2012
16,109
Posted By monalsinha
it may sound weird but can u try this ...
it may sound weird but can u try this


sqlplus -s "${ID}" <<EOF
select sysdate from dual;
exit;
EOF
1,221
Posted By monalsinha
use find command to search from root /: find...
use find command to search from root /:

find / -type f -name "abc.log"
Forum: Red Hat 05-19-2012
16,109
Posted By monalsinha
ERROR: ORA-12170: TNS:Connect timeout occurred ...
ERROR: ORA-12170: TNS:Connect timeout occurred SP2-0306: Invalid option. Usage: CONN[ECT] [logon] [AS {SYSDBA|SYSOPER}] where <logon> ::= <username>[/<password>][@<connect_identifier>] | / ERROR:...
Forum: Red Hat 05-19-2012
16,109
Posted By monalsinha
Code
ID="userid/password@sid"
or
usr=userid
pswd=password
tns=sid

sqlplus -s ${usr}/${pswd}@${tns}

# or

export ID=userid/password@sid
867
Posted By monalsinha
if ur file is sorted no need to sort it. uniq...
if ur file is sorted no need to sort it.
uniq -c <file_name>
Forum: Programming 05-19-2012
3,062
Posted By monalsinha
in which language u want to create application?
in which language u want to create application?
5,344
Posted By monalsinha
vi $(ls -t abc*.log | head -1)
vi $(ls -t abc*.log | head -1)
7,379
Posted By monalsinha
try basename
try basename
1,895
Posted By monalsinha
u can exclude "_" by grep -v "_" in pipe. like...
u can exclude "_" by grep -v "_" in pipe.
like grep "apple.txt" file | grep -v "_"
Showing results 1 to 9 of 9

 
All times are GMT -4. The time now is 08:34 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy