ExecuteSqlScriptsWithOsql – Executing an array of script files with the OSQL utility

ExecuteSqlScriptsWithOsql – Executing an array of script files with the OSQL utility

' Execute an array of sql script files with batch statements,'  by using the OSQL utility'   - dbName is the name of the destination database'   - isWinAuth, login and pwd specify whether to use the integrated Windows ' authentication, or the SQL Server's login-password otherwise'' Example:'   Dim script1 As String = "C:ScriptsCreateDbTables.sql"'   Dim script2 As String = "C:ScriptsCreateDbSprocs.sql"'   Dim script3 As String = "C:ScriptsInsertData.sql"'   ' use Windows integrated security'   ExecuteSqlScriptsWithOsql("TestDB", True, "", "", script1, script2, script3)'   ' use SQL Server's security'   ExecuteSqlScriptsWithOsql("TestDB", False, "loginname", "pwd", script1,'  script2, script3)Sub ExecuteSqlScriptsWithOsql(ByVal dbName As String, _    ByVal isWinAuth As Boolean, ByVal login As String, ByVal pwd As String, _    ByVal ParamArray scriptFiles() As String)    Dim osqlParams As String = ""    ' the OSQL utility requires different parameters if using the Win or SQL     ' server security    If (isWinAuth) Then        osqlParams = String.Format("-E -d {0} -i ", dbName)    Else        osqlParams = String.Format("-U {0} -P {1} -d {2} -i ", login, pwd, _            dbName)    End If    ' execute each script file in the scripts array    Dim proc As New Process    proc.StartInfo.FileName = "osql.exe"    proc.StartInfo.CreateNoWindow = True    proc.StartInfo.WindowStyle = ProcessWindowStyle.Hidden    Dim scriptFile As String    For Each scriptFile In scriptFiles        proc.StartInfo.Arguments = osqlParams & """" & scriptFile + """"        proc.Start()        ' wait until the scrip execution ends        proc.WaitForExit()    NextEnd Sub

Share the Post:
Heading photo, Metadata.

What is Metadata?

What is metadata? Well, It’s an odd concept to wrap your head around. Metadata is essentially the secondary layer of data that tracks details about the “regular” data. The regular

XDR solutions

The Benefits of Using XDR Solutions

Cybercriminals constantly adapt their strategies, developing newer, more powerful, and intelligent ways to attack your network. Since security professionals must innovate as well, more conventional endpoint detection solutions have evolved

AI is revolutionizing fraud detection

How AI is Revolutionizing Fraud Detection

Artificial intelligence – commonly known as AI – means a form of technology with multiple uses. As a result, it has become extremely valuable to a number of businesses across

AI innovation

Companies Leading AI Innovation in 2023

Artificial intelligence (AI) has been transforming industries and revolutionizing business operations. AI’s potential to enhance efficiency and productivity has become crucial to many businesses. As we move into 2023, several

data fivetran pricing

Fivetran Pricing Explained

One of the biggest trends of the 21st century is the massive surge in analytics. Analytics is the process of utilizing data to drive future decision-making. With so much of

kubernetes logging

Kubernetes Logging: What You Need to Know

Kubernetes from Google is one of the most popular open-source and free container management solutions made to make managing and deploying applications easier. It has a solid architecture that makes

ransomware cyber attack

Why Is Ransomware Such a Major Threat?

One of the most significant cyber threats faced by modern organizations is a ransomware attack. Ransomware attacks have grown in both sophistication and frequency over the past few years, forcing