--- title: "Creating, Altering, and Removing Databases" ms.custom: seo-dt-2019 ms.date: "08/06/2017" ms.prod: sql ms.prod_service: "database-engine" ms.reviewer: "" ms.technology: ms.topic: "reference" helpviewer_keywords: - "databases [SMO]" - "databases [SMO], creating" - "databases [SMO], modifying" - "databases [SMO], deleting" ms.assetid: fcfb3ec2-7556-4f72-971a-501295892cb0 author: "markingmyname" ms.author: "maghan" monikerRange: "=azuresqldb-current||=azure-sqldw-latest||>=sql-server-2016||=sqlallproducts-allversions||>=sql-server-linux-2017||=azuresqldb-mi-current" --- # Creating, Altering, and Removing Databases [!INCLUDE[appliesto-ss-asdb-asdw-xxx-md](../../../includes/appliesto-ss-asdb-asdw-xxx-md.md)] In SMO, a database is represented by the object. It is not necessary to create a object to modify or remove it. The database can be referenced by using a collection. ## Example To use any code example that is provided, you will have to choose the programming environment, the programming template, and the programming language in which to create your application. For more information, see [Create a Visual C# SMO Project in Visual Studio .NET](../../../relational-databases/server-management-objects-smo/how-to-create-a-visual-csharp-smo-project-in-visual-studio-net.md). ## Creating, Altering, and Removing a Database in Visual Basic This code example creates a new database. Files and file groups are automatically created for the database. ```VBNET 'Connect to the local, default instance of SQL Server. Dim srv As Server srv = New Server 'Define a Database object variable by supplying the server and the database name arguments in the constructor. Dim db As Database db = New Database(srv, "Test_SMO_Database") 'Create the database on the instance of SQL Server. db.Create() 'Reference the database and display the date when it was created. db = srv.Databases("Test_SMO_Database") Console.WriteLine(db.CreateDate) 'Remove the database. db.Drop() ``` ## Creating, Altering, and Removing a Database in Visual C# This code example creates a new database. Files and file groups are automatically created for the database. ```csharp { //Connect to the local, default instance of SQL Server. Server srv; srv = new Server(); //Define a Database object variable by supplying the server and the database name arguments in the constructor. Database db; db = new Database(srv, "Test_SMO_Database"); //Create the database on the instance of SQL Server. db.Create(); //Reference the database and display the date when it was created. db = srv.Databases["Test_SMO_Database"]; Console.WriteLine(db.CreateDate); //Remove the database. db.Drop(); } ``` ## Creating, Altering, and Removing a Database in PowerShell This code example creates a new database. Files and file groups are automatically created for the database. ```powershell #Get a server object which corresponds to the default instance cd \sql\localhost\ $srv = get-item default #Create a new database $db = New-Object -TypeName Microsoft.SqlServer.Management.Smo.Database -argumentlist $srv, "Test_SMO_Database" $db.Create() #Reference the database and display the date when it was created. $db = $srv.Databases["Test_SMO_Database"] $db.CreateDate #Drop the database $db.Drop() ``` ## See Also