Sqlserver
 sql >> Baza danych >  >> RDS >> Sqlserver

SQL Server 2008 - utwórz skrypt bazy danych (schemat + dane) za pomocą wiersza poleceń

Narzędzie graficzne jest tylko opakowaniem wokół klas SMO, które faktycznie implementują skrypty, takie jak Skrypciarz klasa. Istnieje przykład skryptowania wszystkich tabel w bazie danych z SMO w MSDN:Skrypty :

//Connect to the local, default instance of SQL Server. 
{ 
   Server srv = default(Server); 
   srv = new Server(); 
   //Reference the AdventureWorks database. 
   Database db = default(Database); 
   db = srv.Databases("AdventureWorks"); 
   //Define a Scripter object and set the required scripting options. 
   Scripter scrp = default(Scripter); 
   scrp = new Scripter(srv); 
   scrp.Options.ScriptDrops = false; 
   scrp.Options.WithDependencies = true; 
   //Iterate through the tables in database and script each one. Display the script. 
   //Note that the StringCollection type needs the System.Collections.Specialized namespace to be included. 
   Table tb = default(Table); 
   Urn[] smoObjects = new Urn[2]; 
   foreach ( tb in db.Tables) { 
      smoObjects = new Urn[1]; 
      smoObjects(0) = tb.Urn; 
      if (tb.IsSystemObject == false) { 
         StringCollection sc = default(StringCollection); 
         sc = scrp.Script(smoObjects); 
         string st = null; 
         foreach ( st in sc) { 
            Console.WriteLine(st); 
         } 
      } 
   } 
} 

Istnieje wiele innych przykładów, jak go używać w różnych innych witrynach.



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. SQL — konwersja typu danych varchar na typ danych data/godzina skutkowała wartością spoza zakresu

  2. Zmień domyślny język logowania w SQL Server

  3. Maksymalna przestrzeń rzeczywista w varbinary (max) w SQL Server

  4. Grupuj według zapytania sql w kolumnie połączonej przecinkami

  5. wstawianie do lokalnej tabeli z połączonej procedury składowanej