gpt4 book ai didi

sql - 在 TSQL 错误消息之后获取文件中的行号

转载 作者:行者123 更新时间:2023-12-01 02:02:55 25 4
gpt4 key购买 nike

考虑以下 sql 脚本

:ON ERROR EXIT

PRINT 'Line 3'
GO

PRINT 'Line 6'
GO

SELECT * FROM NonExistingTable
GO

PRINT 'Line 12'
GO

使用 SQLCMD 运行时
> sqlcmd -i MyScript.sql
Line 3
Line 6
Msg 208, Level 16, State 1, Server MyServer, Line 2
Invalid object name 'NonExistingTable'.

当您在启用了 SQLCMD 模式的 SQL Server Management Studio 中运行时,您将获得
Line 3
Line 6
Msg 208, Level 16, State 1, Server MyServer, Line 2
Invalid object name 'NonExistingTable'.
** An error was encountered during execution of batch. Exiting.

但是当您双击错误行时,查询编辑器将跳转到有问题的行。

已举报 2号线表示相对于批次的行号。批次之间由 GO 语句分隔。我们想得到一个真正的 9号线回答。

我也试过 PowerShell 的 调用-Sqlcmd 但更糟糕的是,因为它根本没有检测到此类错误( Error detection from Powershell Invoke-Sqlcmd not always working? )。

有没有一种简单的方法可以用一些帮助程序包装我们的 sql 脚本以获得所需的真实错误行?

UPD :我已经更改了错误脚本以确保它肯定会失败...

最佳答案

这是我想出的解决方案:https://github.com/mnaoumov/Invoke-SqlcmdEx

现在

> .\Invoke-SqlcmdEx.ps1 -InputFile .\MyScript.sql
Line 3
Line 6
Msg 208, Level 16, State 1, Server MyServer, Script .\MyScript.ps1, Line 9
Invalid object name 'NonExistingTable'.

sqlcmd failed for script .\MyScript.ps1 with exit code 1
At C:\Dev\Invoke-SqlcmdEx\Invoke-SqlcmdEx.ps1:77 char:18
+ throw <<<< "sqlcmd failed for script $InputFile with exit code $LASTEXITCODE"
+ CategoryInfo : OperationStopped: (sqlcmd failed f...ith exit code 1:String) [], RuntimeException
+ FullyQualifiedErrorId : sqlcmd failed for script .\MyScript.ps1 with exit code 1

它有一个合适的 9号线输出

以防万一我也在这里内联脚本。该脚本可能看起来有点矫枉过正,但它是为了完全支持所有 SQLCMD 脚本功能并正确处理事务而编写的

调用-SqlcmdEx.ps1
#requires -version 2.0

[CmdletBinding()]
param
(
[string] $ServerInstance = ".",
[string] $Database = "master",
[string] $User,
[string] $Password,

[Parameter(Mandatory = $true)]
[string] $InputFile
)

$script:ErrorActionPreference = "Stop"
Set-StrictMode -Version Latest
function PSScriptRoot { $MyInvocation.ScriptName | Split-Path }

trap { throw $Error[0] }

function Main
{
if (-not (Get-Command -Name sqlcmd.exe -ErrorAction SilentlyContinue))
{
throw "sqlcmd.exe not found"
}

$scriptLines = Get-Content -Path $InputFile
$extendedLines = @()

$offset = 0
foreach ($line in $scriptLines)
{
$offset++
if ($line -match "^\s*GO\s*$")
{
$extendedLines += `
@(
"GO",
"PRINT '~~~ Invoke-SqlcmdEx Helper - Offset $offset'"
)
}

$extendedLines += $line
}

$tempFile = [System.IO.Path]::GetTempFileName()

try
{
$extendedLines > $tempFile

$sqlCmdArguments = Get-SqlCmdArguments

$ErrorActionPreference = "Continue"
$result = sqlcmd.exe $sqlCmdArguments -i $tempFile 2>&1
$ErrorActionPreference = "Stop"

$offset = 0
$result | ForEach-Object -Process `
{
$line = "$_"
if ($line -match "~~~ Invoke-SqlcmdEx Helper - Offset (?<Offset>\d+)")
{
$offset = [int] $Matches.Offset
}
elseif (($_ -is [System.Management.Automation.ErrorRecord]) -and ($line -match "Line (?<ErrorLine>\d+)$"))
{
$errorLine = [int] $Matches.ErrorLine
$realErrorLine = $offset + $errorLine
$line -replace "Line \d+$", "Script $InputFile, Line $realErrorLine"
}
else
{
$line
}
}

if ($LASTEXITCODE -ne 0)
{
throw "sqlcmd failed for script $InputFile with exit code $LASTEXITCODE"
}
}
finally
{
Remove-Item -Path $tempFile -ErrorAction SilentlyContinue
}
}

function Get-SqlCmdArguments
{
$sqlCmdArguments = `
@(
"-S",
$ServerInstance,
"-d",
$Database,
"-b",
"-r",
0
)

if ($User)
{
$sqlCmdArguments += `
@(
"-U",
$User,
"-P",
$Password
)
}
else
{
$sqlCmdArguments += "-E"
}

$sqlCmdArguments
}

Main

UPD :@MartinSmith 提供了一个巧妙的想法来使用 LINENO 接近。

这是使用这种方法的版本: https://github.com/mnaoumov/Invoke-SqlcmdEx/blob/LINENO/Invoke-SqlcmdEx.ps1它基本上插入 LINENO [对应行号] 每个之后 陈述。

但是如果我们考虑以下脚本
IF NOT EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID('dbo.MyFunction') AND type = 'FN')
EXEC sp_executesql N'CREATE FUNCTION dbo.MyFunction() RETURNS int AS BEGIN RETURN 0 END'
GO
LINENO 3

ALTER FUNCTION dbo.MyFunction()
RETURNS int
AS
BEGIN
RETURN 42
END
GO

它会失败
> sqlcmd -i MyScript.sql
Msg 111, Level 15, State 1, Server MyServer, Line 5
'ALTER FUNCTION' must be the first statement in a query batch.
Msg 178, Level 15, State 1, Server MyServer, Line 9
A RETURN statement with a return value cannot be used in this context.

所以 LINENO 方法不适用于必须是查询批处理中第一个的语句。以下是此类声明的列表: http://msdn.microsoft.com/en-us/library/ms175502.aspx :创建默认值、创建函数、创建过程、创建规则、创建模式、创建触发器和创建 View 。没有提到 ALTER 语句,但我认为该规则也适用于它们

关于sql - 在 TSQL 错误消息之后获取文件中的行号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27785390/

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