sql >> Database teknologi >  >> RDS >> Sqlserver

Udfør et stort SQL-script (med GO-kommandoer)

Brug SQL Server Management Objects (SMO), som forstår GO-separatorer. Se mit blogindlæg her:http://weblogs.asp.net/jongalloway/Handling-_2200_GO_2200_-Separators-in-SQL-Scripts-2D00 -den-lette-måde

Eksempelkode:

public static void Main()    
{        
  string scriptDirectory = "c:\\temp\\sqltest\\";
  string sqlConnectionString = "Integrated Security=SSPI;" +
  "Persist Security Info=True;Initial Catalog=Northwind;Data Source=(local)";
  DirectoryInfo di = new DirectoryInfo(scriptDirectory);
  FileInfo[] rgFiles = di.GetFiles("*.sql");
  foreach (FileInfo fi in rgFiles)
  {
        FileInfo fileInfo = new FileInfo(fi.FullName);
        string script = fileInfo.OpenText().ReadToEnd();
        using (SqlConnection connection = new SqlConnection(sqlConnectionString))
        {
            Server server = new Server(new ServerConnection(connection));
            server.ConnectionContext.ExecuteNonQuery(script);
        }
   }
}

Hvis det ikke virker for dig, så se Phil Haacks bibliotek, som håndterer det:http://haacked.com/archive/2007/11/04/a-library-for-executing-sql-scripts-with-go-separators -and.aspx



  1. Hvad er hurtigere COALESCE ELLER ISNULL?

  2. Hvad er den bedste måde at implementere Polymorphic Association i SQL Server?

  3. Forstå forskellene mellem tabel- og transaktions-API'er

  4. Fuldt administreret PostgreSQL-hosting på AWS og Azure lanceres i tide til ældre migreringer