Paris
Paris

Reputation: 1

Log in as user/cant not connect to oracle database

SQL> sqlplus Paris/1234

Unkown command begining "sqlplus..."

I am trying to log in the oracle database with the user name I created. I had created lots of tables there and everything. Service is up running but I can't log in as the user. It keeps telling me it's not connected. Anybody know what I should type here? Thanks!

Upvotes: 0

Views: 199

Answers (1)

Aleksej
Aleksej

Reputation: 22949

SQLPLUS is an executable, not a command, so from within SQLPlus you need something like

connect user/password@schema

From the operating system prompt, you can use launch SQLPLUS:

sqlplus user/password@schema

You find more informations in SQLPlus documentation

Upvotes: 3

Related Questions