Connect to Oracle DB using sqlplus
oracle, sqlplus, unix
Solution
try this: `sqlplus USER/PW@//hostname:1521/SID`
Problem
I am using below command in Unix environment to connect to Oracle database: ``` sqlplus test/test@'(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=hostname.com )(PORT=1521)))(CONNECT_DATA=(SID=mysid))' ``` But I am getting below error: ``` Use SQL*Plus to execute SQL, PL/SQL and SQL*Plus statements. Usage 1: sqlplus -H | -V -H Displays the SQL*Plus version and the usage help. -V Displays the SQL*Plus version. Usage 2: sqlplus [ [<option>] [{logon | /nolog}] [<start>] ] <option> is: [-C <version>] [-L] [-M "<options>"] [-R <level>] [-S] ``` Please help me where I am doing mistake in using the command.