Αποτελέσματα Αναζήτησης
22 Ιουλ 2024 · 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, see CREATE DATABASE.
- CREATE DATABASE (Transact-SQL)
Creates a new database. Select one of the following tabs for...
- CREATE DATABASE (Transact-SQL)
22 Οκτ 2019 · In this tip we look at how to create a new SQL Server database using the SQL Server Management GUI along with some database option settings you can use when creating a new database.
This tutorial shows you how to create a new database in SQL Server using CREATE DATABASE statement or SQL Server Management Studio.
5 Ιουλ 2022 · In this article we look at the basic steps for creating a new SQL Server database using either the SSMS GUI or a T-SQL script.
19 Οκτ 2023 · To create a database in SQL Server Management Studio, right-click on the Database node and select the option ‘New Database’. After selecting the ‘New Database’ option, a window pops up for the configuration of the new database.
26 Αυγ 2024 · Creates a new database. Select one of the following tabs for the syntax, arguments, remarks, permissions, and examples for a particular SQL version with which you are working. Select a product. In the following row, select the product name you're interested in, and only that product's information is displayed. * SQL Server * SQL Database.
5 Ιαν 2015 · Step 1 Click “New Query” in the Management Studio’s main toolbar. Step 2 Type a Create Database statement using the following Transact-SQL code: CREATE DATABASE MyDatabase ON. (FILENAME = 'c:\StudentsDB.mdf'), (FILENAME = ' c:\StudentsDB.ldf') FOR ATTACH; Step 3 Click the “Execute” button in the Transact-SQL toolbar.