经验首页 前端设计 程序设计 Java相关 移动开发 数据库/运维 软件/图像 大数据/云计算 其他经验
当前位置:技术经验 » 数据库/运维 » MS SQL Server » 查看文章
YourSQLDba的共享路径备份遭遇重启问题
来源:cnblogs  作者:潇湘隐者  时间:2019/9/26 9:01:12  对本文有异议

如果YourSQLDba设置过共享路径备份(具体参考博客YourSQLDba设置共享路径备份),有时候服务器重启后,备份就会出错,具体错误信息类似如下所示:

 

 

  1. Date        2019/9/25 10:10:00
  1. Log        SQL Server (Current - 2019/9/25 3:06:00)
  1.  
  1. Source        spid56
  1.  
  1. Message
  1. BackupDiskFile::CreateMedia: Backup device 'M:\xxx\LOG_BACKUP\msdb_[2019-09-24_00h08m06_Tue]_logs.TRN' failed to create. Operating system error 3(系统找不到指定的路径。).

 

 

 

出现这个问题,需要使用Exec YourSQLDba.Maint.CreateNetworkDriv设置网络路径,即使之前设置过网络路径,查询[YourSQLDba].[Maint].[NetworkDrivesToSetOnStartup]表也有相关网络路径设置,但是确实需要重新设置才能消除这个错误。

 

 

  1. EXEC sp_configure 'show advanced option', 1;
  1. GO
  1. RECONFIGURE;
  1. GO
  1. sp_configure 'xp_cmdshell', 1;
  1. GO
  1. RECONFIGURE;
  1. GO
  1.  
  1. EXEC YourSQLDba.Maint.CreateNetworkDrives @DriveLetter = 'M:\',
  1.     @unc = 'xxxxxxxxxx;
  1. GO
  1.  
  1.  
  1. sp_configure 'xp_cmdshell', 0;
  1. GO
  1.  
  1. EXEC sp_configure 'show advanced option', 1;
  1. GO
  1. RECONFIGURE;

 

 

查看了一下 [Maint].[CreateNetworkDrives]存储过程,应该是重启过后,需要运行net use这样的命令进行相关配置。

 

 

  1. USE [YourSQLDba]
  1. GO
  1. SET ANSI_NULLS ON
  1. GO
  1. SET QUOTED_IDENTIFIER ON
  1. GO
  1. ALTER proc [Maint].[CreateNetworkDrives]
  1.   @DriveLetter nvarchar(2)
  1. , @unc nvarchar(255)
  1. as
  1. Begin
  1.   Declare @errorN int
  1.   Declare @cmd nvarchar(4000)
  1.  
  1.   Set nocount on
  1.  
  1.   Exec yMaint.SaveXpCmdShellStateAndAllowItTemporary
  1.  
  1.   Set @DriveLetter=rtrim(@driveLetter)
  1.   Set @Unc=rtrim(@Unc)
  1.  
  1.   If Len(@DriveLetter) = 1
  1.     Set @DriveLetter = @DriveLetter + ':'
  1.  
  1.   If Len(@Unc) >= 1
  1.   Begin
  1.     Set @Unc = yUtl.NormalizePath(@Unc)
  1.     Set @Unc = Stuff(@Unc, len(@Unc), 1, '')
  1.   End
  1.  
  1.   Set @cmd = 'net use <DriveLetter> /Delete'
  1.   Set @cmd  = Replace( @cmd, '<DriveLetter>', @DriveLetter)
  1.  
  1.  
  1.   begin try
  1.     Print @cmd
  1.     exec xp_cmdshell @cmd, no_output
  1.   end try
  1.   begin catch
  1.   end catch
  1.  
  1.   -- suppress previous network drive definition
  1.   If exists(select * from Maint.NetworkDrivesToSetOnStartup Where DriveLetter = @driveLetter)
  1.   Begin
  1.     Delete from Maint.NetworkDrivesToSetOnStartup Where DriveLetter = @driveLetter
  1.   End
  1.  
  1.   Begin Try
  1.    
  1.     Set @cmd = 'net use <DriveLetter> <unc>'
  1.     Set @cmd  = Replace( @cmd, '<DriveLetter>', @DriveLetter )
  1.    
  1.     Set @cmd  = Replace( @cmd, '<unc>', @unc )
  1.     Print @cmd
  1.     exec xp_cmdshell @cmd
  1.  
  1.     Insert Into Maint.NetworkDrivesToSetOnStartup (DriveLetter, Unc) Values (@DriveLetter, @unc)
  1.    
  1.     Exec yMaint.RestoreXpCmdShellState
  1.  
  1.   End Try
  1.   Begin Catch
  1.     Set @errorN = ERROR_NUMBER() -- return error code
  1.     Print convert(nvarchar, @errorN) + ': ' + ERROR_MESSAGE()
  1.     Exec yMaint.RestoreXpCmdShellState
  1.   End Catch
  1.  
  1. End -- Maint.CreateNetworkDrives

原文链接:http://www.cnblogs.com/kerrycode/p/11584378.html

 友情链接:直通硅谷  点职佳  北美留学生论坛

本站QQ群:前端 618073944 | Java 606181507 | Python 626812652 | C/C++ 612253063 | 微信 634508462 | 苹果 692586424 | C#/.net 182808419 | PHP 305140648 | 运维 608723728

W3xue 的所有内容仅供测试,对任何法律问题及风险不承担任何责任。通过使用本站内容随之而来的风险与本站无关。
关于我们  |  意见建议  |  捐助我们  |  报错有奖  |  广告合作、友情链接(目前9元/月)请联系QQ:27243702 沸活量
皖ICP备17017327号-2 皖公网安备34020702000426号