About 177,000,000 results
Open links in new tab
  1. Create a Database - SQL Server | Microsoft Learn

    Aug 7, 2025 · This article describes how to create a database in SQL Server by using SQL Server Management Studio or Transact-SQL. To create a database in Azure SQL Database using T-SQL, …

  2. Create Database in MS SQL Server - GeeksforGeeks

    Jul 15, 2025 · Making a Database: In Object Explorer, select "New Database" from the context menu when you right-click on the "Databases" folder. Give the option a name, then set the other …

  3. How to Create a SQL Server Database (No Command Line) - wikiHow

    May 12, 2025 · With a free graphical user interface (GUI) program such as SQL Server Management, you don't need to worry about fumbling around with the command line. See Step 1 below to create a …

  4. Create SQL Server Database using SQL Server Management Studio

    Oct 22, 2019 · First, a little background on SSMS. It’s the primary tool used to manage SQL Server. It comes with a vast amount of functionality built in to manage servers and develop SQL scripts. It …

  5. Step-by-Step Guide to Creating and Querying a SQL Server Database

    Mar 9, 2025 · To create a new database in SQL Server, use the CREATE DATABASE statement. This statement initializes a new database that can store tables, indexes, and other database objects. …

  6. SQL CREATE DATABASE Statement - W3Schools

    The CREATE DATABASE statement is used to create a new SQL database. The following SQL statement creates a database called "testDB": Tip: Make sure you have admin privilege before …

  7. SQL Server CREATE DATABASE By Practical Examples

    Summary: in this tutorial, you will learn how to create a new database in SQL Server using CREATE DATABASE statement or SQL Server Management Studio. The CREATE DATABASE statement …

  8. Create a database in SQL Server - 3 best methods - Devart Blog

    Jan 10, 2025 · Understanding how to create a database in SQL Server is essential for managing data effectively in today’s business environment. The process enables better structure, access control, …

  9. Create Database in SQL Server - Tutorial Gateway

    In order to create a new database, first, open the Management Studio. Under the Object Explorer, right-click on the Databases folder and select the New .. option from the context menu.

  10. How To Create A New Database In Microsoft Sql Server Management …

    Jan 1, 2025 · As a developer, you will deal with the very basic task of creating a new database in your SQL server. In this article, I will walk you through all the possible approaches to create a new …