|
|
|
|
|
Re: EMP TABLE IN ORACLE 10G [message #400157 is a reply to message #355215] |
Sun, 26 April 2009 14:10 |
|
I am not sure why you are getting the error "User doesnot exists". By default Oracle 10G posses "scott" user, may be the 'tab' on which you searched is wrong. Please follow the steps given below to check whether 'scott' user exists in schema.
connect sys/oracle as sysdba;
select username from all_users;
Check whether the 'scott' user exists.
If the user exists, you have to UNLOCK the 'scott' user. Else you have to create and load the script for user & table (check in google, how to create user and load default tables like 'emp', 'dept' and so on.
In 10g the test users accounts are locked by default.
Oracle has done this for security reasons. But you can unlock the account by login as sysdba.
SQL> connect sys/oracle as sysdba;
Connected.
SQL> alter user scott account unlock;
User altered.
Now exit the SQL* plus command prompt and launch it once again with scott/tiger.
It will say password expired and you may have to provide new password.
Just remember the new password(for eg: tiger01)
|
|
|
|
|
|
|
Re: EMP TABLE IN ORACLE 10G [message #404231 is a reply to message #404004] |
Thu, 21 May 2009 01:08 |
|
"Hi" to all those who replied for my post.
I was just waiting yet to see how many replies I will get for my post
If you think I replied to a question which was posted before 5-6 months and if you think its waste of time, dont you think you are also wasting your time by replying to my post?
I was searching for solution to my query in google and I got this Forum link and the above topic(EMP TABLE IN ORACLE 10G), as none of the posts were complete, I replied to this post keeping in mind, atleast some one in future who get this Forum link in google search may get complete answer.
I would request you all to make use of this forum to really discuss about some useful stuff(ONLY TECHNICAL) and not to comment on some technical post just to show how great you are...
Dont type 'something' just to increase your 'post count'
|
|
|
|
|
|
Re: EMP TABLE IN ORACLE 10G [message #404451 is a reply to message #404231] |
Thu, 21 May 2009 20:01 |
|
djmartin
Messages: 10181 Registered: March 2005 Location: Surges Bay TAS Australia
|
Senior Member Account Moderator |
|
|
@NagRam01,
If you are interested and willing to provide a solution to an older problem perhaps you should use my often asked "Have you solved your problem?" response and then if the Original Poster (OP) DOES reply, you give the answer.
David
|
|
|