creating a database in sql
Hi,
Once I have logged in to the SQL server, I am supposed to create my own database. Then this database is to contain tables etc. pertaining to my project. Right.
The problem is that once I log in to my SQL server, I am not able to create my database.
When I try to create my own database using CREATE DATABASE db_name; I get the message that the database is already mounted.
Though I am able to perform my work (by creating tables, writing queries etc.), I am not able to create a database where I can put related tables in one separate space. I am working on two projects simultaneously, and all the tables seem to be there in one location (as I am not able to create separate databases for the two projects).
Once I have logged in to the SQL server, I am supposed to create my own database. Then this database is to contain tables etc. pertaining to my project. Right.
The problem is that once I log in to my SQL server, I am not able to create my database.
When I try to create my own database using CREATE DATABASE db_name; I get the message that the database is already mounted.
Though I am able to perform my work (by creating tables, writing queries etc.), I am not able to create a database where I can put related tables in one separate space. I am working on two projects simultaneously, and all the tables seem to be there in one location (as I am not able to create separate databases for the two projects).
0