Sorry, if this has been asked previously. In services on a client, I can see that MS SQL Server has the status "started". and on this machine I don't have Microsoft SQL SERVER Management Studio.
How can I create a new database?
Thank you!
Sorry, if this has been asked previously. In services on a client, I can see that MS SQL Server has the status "started". and on this machine I don't have Microsoft SQL SERVER Management Studio.
How can I create a new database?
Thank you!
There are multiple possibilities.
You can install MSSQL-Studio on any other pc and connect to your server or you can connect via any sql-client tool and create a database per sql, see MSDN.
Please use sqlcmd utility and then create script to be executed.
To execute script: sqlcmd -i C:\create_script.sql
Db create scritp example:
More about the db create options: https://msdn.microsoft.com/en-us/library/ms176061.aspx