Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to execute .sql file using powershell?

I have a .sql file. I am trying to pass connection string details through a Powershell script and invoke an .sql file.

I was searching and came up with a cmdlet related to Invoke-sqlcmd. While I was trying to find a module corresponding to SQL, I did not find any one in my machine.

Should I install anything in my machine (the machine already has SQL Server Management Studio 2008 R2) to get the modules or is there any easy way to execute .sql files using Powershell?

like image 712
Samselvaprabu Avatar asked Jun 05 '12 09:06

Samselvaprabu


People also ask

Can PowerShell run SQL?

Windows PowerShell features many one-line commands for working with SQL Server. They can be helpful in many development contexts where we need to execute scripts or test code quickly.


1 Answers

Try to see if SQL snap-ins are present:

get-pssnapin -Registered  Name        : SqlServerCmdletSnapin100 PSVersion   : 2.0 Description : This is a PowerShell snap-in that includes various SQL Server cmdlets.  Name        : SqlServerProviderSnapin100 PSVersion   : 2.0 Description : SQL Server Provider 

If so

Add-PSSnapin SqlServerCmdletSnapin100 # here lives Invoke-SqlCmd Add-PSSnapin SqlServerProviderSnapin100 

then you can do something like this:

invoke-sqlcmd -inputfile "c:\mysqlfile.sql" -serverinstance "servername\serverinstance" -database "mydatabase" # the parameter -database can be omitted based on what your sql script does. 
like image 77
CB. Avatar answered Sep 23 '22 12:09

CB.