gpt4 book ai didi

c# - 从 ADO.Net 执行 DBCC 命令

转载 作者:行者123 更新时间:2023-11-30 17:23:54 25 4
gpt4 key购买 nike

我正在尝试使用 ADO.Net 执行 DBCC CHECK DB('MyDB),但我怎样才能获得命令返回的文本?

我尝试了以下方法:

SqlCommand sqlCom = new SqlCommand("DBCC CHECKDB ('MyDB')", sqlCon);
SqlParameter output = new SqlParameter();
output.Direction = System.Data.ParameterDirection.ReturnValue;
sqlCom.Parameters.Add(output);
int result = sqlCom.ExecuteNonQuery();
Console.WriteLine(output.Value);

但是输出参数值为空。

最佳答案

也许这可以帮助您:http://mspowershell.blogspot.com/2008/01/dbcc-check-through-adonetps.html .

编辑:该链接会将您带到包含以下脚本的博客文章:

$ScriptName = $myInvocation.MyCommand.Name
[void][reflection.assembly]::LoadWithPartialName("System.Data.SqlClient")
$ConnString = "Server=Servername\Instance;Integrated Security=SSPI;Database=DatabaseName;Application Name=$ScriptName"
$MasterConn = new-object ('System.Data.SqlClient.SqlConnection') $ConnString
$MasterCmd = new-object System.Data.SqlClient.SqlCommand
$MasterCmd.Connection = $MasterConn
$SqlDBCC = "DBCC CHECKDB(master) WITH TABLERESULTS"
$MasterCmd.CommandText = $SqlDBCC
$MasterConn.Open()
$Rset = $MasterCmd.ExecuteReader()
If ($Rset.HasRows -eq $true) {
While ($Rset.Read()) {
$line = $Rset["MessageText"]
If ($Rset["Level"] -gt 10) {
Write-Host $line -backgroundcolor Yellow -foregroundcolor Red
} else {
Write-Host $line
}
}
$Rset.Close()
}
$MasterConn.Close()

关于c# - 从 ADO.Net 执行 DBCC 命令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1672714/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com