Droping user.... [message #180079] |
Fri, 30 June 2006 02:13 |
user82
Messages: 49 Registered: June 2006 Location: Romania
|
Member |
|
|
I have created an DataBase user called "AS"...The problem is that I can not drop it because "AS" is an reserved word so the server does not accept the following expresion "drop user AS"...Is there any way to drop this user???
|
|
|
|
|
Re: Droping user.... [message #180294 is a reply to message #180097] |
Sun, 02 July 2006 23:14 |
imtj
Messages: 12 Registered: July 2006 Location: Chinese
|
Junior Member |
|
|
Because word "AS" is oracle databse's key word.
So You can't input command 'sql> drop user as'.
Try
SQL>drop user "as"
|
|
|