程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> SqlServer數據庫 >> 關於SqlServer >> 利用SQL移動硬盤文件

利用SQL移動硬盤文件

編輯:關於SqlServer

以下的代碼將演示如何利用SQL數據庫進行硬盤文件的移動:

  if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[p_movefile]') and OBJECTPROPERTY(id, N'IsProcedure') = 1)
  drop procedure [dbo].[p_movefile]
  GO

  /*--移動服務器上的文件

  不借助 xp_cmdshell ,因為這個在大多數時候都被禁用了

  --鄒建 2004.08(引用請保留此信息)--*/

  /*--調用示例

  exec p_movefile 'd:\aa.txt','c:\'
  --*/
  create proc p_movefile
  @s_file varchar(1000), --源文件
  @d_file varchar(1000) --目標文件
  as
  declare @err int,@src varchar(255),@desc varchar(255)
  declare @obj int

  exec @err=sp_oacreate 'Scripting.FileSystemObject',@obj out
  if @err<>0 goto lberr

  exec @err=sp_oamethod @obj,'MoveFile',null,@s_file,@d_file
  if @err<>0 goto lberr

  exec @err=sp_oadestroy @obj
  return

  lberr:
  exec sp_oageterrorinfo 0,@src out,@desc out
  select cast(@err as varbinary(4)) as 錯誤號
  ,@src as 錯誤源,@desc as 錯誤描述
  go

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved