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

Jak zautomatyzować generowanie skryptów za pomocą SMO w SQL Server?

Kluczem do skryptów SMO jest Scripter klasa. Wszystkie inne narzędzia (takie jak SSMS) używają tej klasy do generowania skryptów tworzenia obiektów. Istnieje przykładowe użycie na MSDN :

{ 
   //Connect to the local, default instance of SQL Server. 
  Server srv = new Server(); 

   //Reference the AdventureWorks2008R2 database.  
  Database db = srv.Databases["AdventureWorks2008R2"]; 

   //Define a Scripter object and set the required scripting options. 
  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. 
   Microsoft.SqlServer.Management.Sdk.Sfc.Urn[] smoObjects = new Microsoft.SqlServer.Management.Sdk.Sfc.Urn[1] ;
   foreach (Table tb in db.Tables) {   
      smoObjects[0] = tb.Urn; 
      if (tb.IsSystemObject == false) { 
         System.Collections.Specialized.StringCollection sc;
         sc = scrp.Script(smoObjects); 
         foreach ( string st in sc) { 
            Console.WriteLine(st); 
         } 
      } 
   } 
}


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Procedura składowana jest powolna w Entity Framework

  2. Jak usunąć wszystkie ograniczenia klucza obcego we wszystkich tabelach?

  3. Zapytanie o listę wszystkich procedur składowanych

  4. Wywołanie procedury składowanej ze zwracaną wartością

  5. Modyfikowanie zadania agenta serwera SQL (T-SQL)