Roman Iuvshin
Roman Iuvshin

Reputation: 1912

Remote client for oracle on linux

I need to drop remote oracle db with *.sql script from linux env. How i can do that? Before I tried install sqlplus, but I could not install it... There may be some other linux console client for oracle?

Upvotes: 0

Views: 850

Answers (1)

Florin Ghita
Florin Ghita

Reputation: 17643

You cannot install sqlplus alone.

You need to install an Oracle client.

Choose you system here, click on See All, and the client is the second link.

After that you sould add an entry in your tnsnames.ora file (located in $ORACLE_HOME/network/admin) and if you have connection to your remote server, sqlplus will work.

PS: Drop a oracle db is a strange operation to do. You need a dba to administration stuff.

Upvotes: 1

Related Questions