有没有办法在本地计算机上使用Powershell在SQL Server上执行任意查询?
答案 0 :(得分:130)
对于其他只需要库存.net和PowerShell(没有安装其他SQL工具)的人来说,这里是我使用的功能:
function Invoke-SQL {
param(
[string] $dataSource = ".\SQLEXPRESS",
[string] $database = "MasterData",
[string] $sqlCommand = $(throw "Please specify a query.")
)
$connectionString = "Data Source=$dataSource; " +
"Integrated Security=SSPI; " +
"Initial Catalog=$database"
$connection = new-object system.data.SqlClient.SQLConnection($connectionString)
$command = new-object system.data.sqlclient.sqlcommand($sqlCommand,$connection)
$connection.Open()
$adapter = New-Object System.Data.sqlclient.sqlDataAdapter $command
$dataset = New-Object System.Data.DataSet
$adapter.Fill($dataSet) | Out-Null
$connection.Close()
$dataSet.Tables
}
我一直在使用它这么长时间我不知道是谁编写了哪些部分,但这是从其他的例子中提炼出来的,但是简化为明确的,只需要没有额外的依赖关系或功能就可以了。
我经常使用和分享这个,我已将其转换为GitHub上的脚本模块,以便您现在可以转到模块目录并执行git clone https://github.com/ChrisMagnuson/InvokeSQL
并从那时起转发invoke-sql当你去使用它时会自动加载(假设你使用的是powershell v3或更高版本)。
答案 1 :(得分:91)
您可以使用Invoke-Sqlcmd
cmdlet
Invoke-Sqlcmd -Query "SELECT GETDATE() AS TimeOfQuery;" -ServerInstance "MyComputer\MyInstance"
答案 2 :(得分:26)
以下是我在this blog上找到的一个例子。
$cn2 = new-object system.data.SqlClient.SQLConnection("Data Source=machine1;Integrated Security=SSPI;Initial Catalog=master");
$cmd = new-object system.data.sqlclient.sqlcommand("dbcc freeproccache", $cn2);
$cn2.Open();
if ($cmd.ExecuteNonQuery() -ne -1)
{
echo "Failed";
}
$cn2.Close();
据推测,您可以用不同的TSQL语句替换dbcc freeproccache
。
答案 3 :(得分:21)
此函数将查询结果作为powershell对象数组返回,以便您可以轻松地在过滤器和访问列中使用它们:
function sql($sqlText, $database = "master", $server = ".")
{
$connection = new-object System.Data.SqlClient.SQLConnection("Data Source=$server;Integrated Security=SSPI;Initial Catalog=$database");
$cmd = new-object System.Data.SqlClient.SqlCommand($sqlText, $connection);
$connection.Open();
$reader = $cmd.ExecuteReader()
$results = @()
while ($reader.Read())
{
$row = @{}
for ($i = 0; $i -lt $reader.FieldCount; $i++)
{
$row[$reader.GetName($i)] = $reader.GetValue($i)
}
$results += new-object psobject -property $row
}
$connection.Close();
$results
}
答案 4 :(得分:8)
如果您想在 本地计算机 上而不是在SQL服务器的上下文中执行此操作,那么我将使用以下内容。这是我们公司使用的。
$ServerName = "_ServerName_"
$DatabaseName = "_DatabaseName_"
$Query = "SELECT * FROM Table WHERE Column = ''"
#Timeout parameters
$QueryTimeout = 120
$ConnectionTimeout = 30
#Action of connecting to the Database and executing the query and returning results if there were any.
$conn=New-Object System.Data.SqlClient.SQLConnection
$ConnectionString = "Server={0};Database={1};Integrated Security=True;Connect Timeout={2}" -f $ServerName,$DatabaseName,$ConnectionTimeout
$conn.ConnectionString=$ConnectionString
$conn.Open()
$cmd=New-Object system.Data.SqlClient.SqlCommand($Query,$conn)
$cmd.CommandTimeout=$QueryTimeout
$ds=New-Object system.Data.DataSet
$da=New-Object system.Data.SqlClient.SqlDataAdapter($cmd)
[void]$da.fill($ds)
$conn.Close()
$ds.Tables
只需填写 $ ServerName , $ DatabaseName 和 $ Query 变量,就可以了。
我不确定我们最初是如何发现这一点的,但有一些非常相似的here。
答案 5 :(得分:8)
没有内置的“PowerShell”方式来运行SQL查询。如果您拥有SQL Server tools installed,则会获得Invoke-SqlCmd cmdlet。
由于PowerShell是基于.NET构建的,因此您可以使用ADO.NET API来运行查询。
答案 6 :(得分:7)
Invoke-Sqlcmd -Query "sp_who" -ServerInstance . -QueryTimeout 3
答案 7 :(得分:1)
为避免使用varchar参数进行SQL注入,可以使用
function sqlExecuteRead($connectionString, $sqlCommand, $pars) {
$connection = new-object system.data.SqlClient.SQLConnection($connectionString)
$connection.Open()
$command = new-object system.data.sqlclient.sqlcommand($sqlCommand, $connection)
if ($pars -and $pars.Keys) {
foreach($key in $pars.keys) {
# avoid injection in varchar parameters
$par = $command.Parameters.Add("@$key", [system.data.SqlDbType]::VarChar, 512);
$par.Value = $pars[$key];
}
}
$adapter = New-Object System.Data.sqlclient.sqlDataAdapter $command
$dataset = New-Object System.Data.DataSet
$adapter.Fill($dataset) | Out-Null
$connection.Close()
return $dataset.tables[0].rows
}
$connectionString = "connectionstringHere"
$sql = "select top 10 Message, TimeStamp, Level from dbo.log " +
"where Message = @MSG and Level like @LEVEL"
$pars = @{
MSG = 'this is a test from powershell'
LEVEL = 'aaa%'
};
sqlExecuteRead $connectionString $sql $pars