troubles with database [message #99837] |
Mon, 22 April 2002 08:04 |
Mieke
Messages: 1 Registered: April 2002
|
Junior Member |
|
|
Hi,
I've installed Oracle Personal Edition 8.1.7. I've got a PIV, so I've first replaced SYMCJIT.DLL with symcjit.dll.ori and then the installation went fine.
But when I tried write and execute some simple commands in sql*plus
i.e. : SELECT *
FROM emp;
I got the message : "Table of view not known"
What can I do to solve this problem?
|
|
|
|
Re: troubles with database [message #99925 is a reply to message #99837] |
Mon, 20 May 2002 19:44 |
Michael Sale
Messages: 5 Registered: May 2002
|
Junior Member |
|
|
while in sqlplus type in the following command:
show user
This will tell you who you are logged in as. Unless you are logged in as SCOTT, you will not be able to access the table in a SQL statement without qualifying it with the schema name(SCOTT in this case).
It is also possible that your database does NOT have the scott schema. To create it you
|
|
|