1.

Solve : Oracle login script from Linux to Windows?

Answer»

I need to be able to run a CHECK from LINUX to oracle on a Windows server. Im not familiar with Oracle, does someone know what the query statement that can remotely login to oracle on windows is. I wrote something for MYSQL from linux to linux, which sounds similar to what im looking for which is below:

test=`mysql -P 3306 --socket=/var/mysql/mysql.sock -u USERID -ppasswd -e 'use db name; show tables;' | wc -l`
echo "OK - $test tables"



Discussion

No Comment Found