SQL> create database ramesh_db;
create database ramesh_db
*
ERROR at line 1:
ORA-01501: CREATE DATABASE failed
ORA-01100: database already mounted
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Anis SmilePosted Sep 17, 2012, 1:19 AM
refer this link which may help u.
http://msdn.microsoft.com/en-us/library/cc879262.aspx
Priyank KharePosted Sep 8, 2012, 1:11 AM
you have to create database in sql like this;-
create database ramesh
(compile this statement)
after successfully compilation, write:-
use ramesh
(compile this statement)
now you can create your table.