Ricardo Martínez
Ricardo Martínez

Reputation: 13

Connect and create a local Oracle database

I've installed sqlplus64 throw this tutorial: http://webikon.com/cases/installing-oracle-sql-plus-client-on-ubuntu

I want to practice SQL using sqlplus (I can't connect remotely to school ssh).

I've tried everything I found in google and still can't connect. I don't have any credentials

sqlplus64 / as sysdba

ERROR:

ORA-12545: Connect failed because target host or object does not exist

Upvotes: 0

Views: 2730

Answers (1)

wolφi
wolφi

Reputation: 8361

Welcome!

Probably the easiest way to get started with SQL using sqlplus is to use the virtual machine image Oracle provides for the hands on lab. It contains not only sqlplus, but a full Oracle 12c database, already configured correctly.

Download and instructions here. It's free. You'll need a free account on OTN (Oracle Technology Network), but that's necessary anyway to read the documentation about SQL*Plus and all the rest of it.

Upvotes: 1

Related Questions