0

我已经设置了一个使用 Restore-SqlDatabase cmdlet 恢复数据库的过程,并将其安排到一个 SQl 代理作业中。在我尝试恢复 160GB 数据库之前,它一直运行良好。它基本上在 600 秒后失败,并出现错误“等待操作超时”。我已经尝试添加 0 的 StatementTimeout 以查看它是否会解决这个问题,并更改 SQL Server 上的远程查询超时,但它在 10 分钟后仍然出现。有谁知道我是否可以更改其他设置以增加超时?我正在运行的代码是:

# Load Module path! its not loading by default in calls from powershell
$env:PSModulePath=$env:PSModulePath + ";" + "C:\Program Files\Microsoft SQL Server\110\Tools\PowerShell\Modules\SQLPS\"
## Load module and run functions now

#Import SQL Server PowerShell Provider.
Import-Module "sqlps" -DisableNameChecking

#GEt Around Wait Timeout Error with Remote Connection via PoSh
$server = "THESERVER"
$serverConn = new-object ("Microsoft.SqlServer.Management.Smo.Server") $server
$serverConn.ConnectionContext.StatementTimeout = 0


#Restore Latest Copy of Test Database that was copied over
Restore-SqlDatabase -ServerInstance $server -Database "Test" -BackupFile "H:\SQLBACKUP\DATABASE_Refresh\Test_Latest.BAK" -ReplaceDatabase

出现的错误是:

Restore-SqlDatabase : The wait operation timed out
At H:\SQLBACKUP\_AutoScripts\5_Test_DBRESTORE.ps1:16 char:1
+ Restore-SqlDatabase -ServerInstance $server -Database "Test ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : InvalidOperation: (:) [Restore-SqlDatabase], Win32Exception
    + FullyQualifiedErrorId : ExecutionFailed,Microsoft.SqlServer.Management.PowerShell.RestoreSqlDatabaseCommand
4

1 回答 1

0

它看起来像Restore-SqlDatabase有一个-ConnectionTimeout参数:

指定在超时失败之前等待服务器连接的秒数。超时值必须是 0 到 65534 之间的整数。如果指定 0,则连接尝试不会超时。

所以你的命令可以变成:

Restore-SqlDatabase `
    -ServerInstance $server `
    -Database "Test" `
    -BackupFile "H:\SQLBACKUP\DATABASE_Refresh\Test_Latest.BAK" `
    -ReplaceDatabase `
    -ConnectionTimeout 0
于 2018-02-07T09:47:46.120 回答