Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Create a database from a script
Message
De
29/10/2009 14:57:17
 
 
Information générale
Forum:
Microsoft SQL Server
Catégorie:
Autre
Versions des environnements
SQL Server:
SQL Server 2005
Divers
Thread ID:
01432247
Message ID:
01432254
Vues:
28
To delete the old database if it exist:
IF  EXISTS (SELECT name FROM sys.databases WHERE name = N'MyDatabase')
    DROP DATABASE [MyDatabase]
GO
The SQL Wizard didn't create the script to create the database?

>I have created a script from an existing database (using SQL wizard). Now I want to create a new database from this script. I have 2 questions, please:
>1. If I execute this script, how do I make sure that the existing database is overwritten?
>2. How do I give a name to the new database? Or should I create a database first and then run the script?
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform