I am using Visual Studio 2017. From data connection when I create new SQL Server database, a pop up open and ask for server name. I refreshed but no server name display. What is the solution?
3 Answers
I found my answer. From the SQL Server Object Explore, Right Click "Add New Server" Then click to local and select server. After selecting the server i found server name. I copy the servername from here

and paste it to paste it to

"create new sql server database" server name field.. And set database name. Finally it works!
3 Comments
Install SQL Server, SQL Server Express, or LocalDB on your current computer or a computer in your network.
Explanation
SQL Server Data Tools provides you with a client application that you can use to connect to SQL Server instances.
However, it does not include a server instance (a Database Engine Instance). In order to have anything populate that list (namely servers), you have to install one of the above options on a machine in your network that you can connect to.

