Create new database instance sql server 2017

Here are the steps to create a new database instance in SQL Server 2017:

Step 1: Open SQL Server Management Studio

Step 2: Connect to the Server

Step 3: Create a New Database

Step 4: Configure the Database Options

Step 5: Create a New Database Instance

That's it! You have now created a new database instance in SQL Server 2017. You can verify the creation of the database instance by checking the Object Explorer or running the following T-SQL command:

SELECT name, state_desc
FROM sys.databases
WHERE name = 'mynewdb';

This should return the name and state of the new database instance.