首页 > 开发 > 综合 > 正文

数据库中存/取文件

2024-07-21 02:08:43
字体:
来源:转载
供稿:网友

sql数据库中用image来存储文件,但sql没有提供直接的存取文件的命令.

/*--bcp 实现二进制文件的导入导出

 支持image,text,ntext字段的导入/导出
 image适合于二进制文件,包括:word文档,excel文档,图片,音乐等
 text,ntext适合于文本数据文件

 注意:导入时,将覆盖满足条件的所有行
  导出时,将把所有满足条件的行导出到指定文件中
  

 此存储过程仅用bcp实现
-----------------*/

/*--调用示例
--数据导出
 exec p_binaryio 'zj','','','acc_演示数据..tb','img','c:/zj1.dat'

--数据导入
 exec p_binaryio 'zj','','','acc_演示数据..tb','img','c:/zj1.dat','',0
--*/
if exists (select * from dbo.sysobjects where id = object_id(n'[dbo].[p_binaryio]') and objectproperty(id, n'isprocedure') = 1)
drop procedure [dbo].[p_binaryio]
go

create proc p_binaryio
@servename varchar (30),--服务器名称
@username varchar (30), --用户名
@password varchar (30), --密码
@tbname varchar (500),  --数据库..表名
@fdname varchar (30),  --字段名
@fname varchar (1000), --目录+文件名,处理过程中要使用/覆盖:@filename+_temp
@tj varchar (1000)='',  --处理条件.对于数据导入,如果条件中包含@fdname,请指定表名前缀
@isout bit=1   --1导出((默认),0导入
as
declare @fname_in varchar(1000) --bcp处理应答文件名
 ,@fsize varchar(20)   --要处理的文件的大小
 ,@m_tbname varchar(50)  --临时表名
 ,@sql varchar(8000)

--则取得导入文件的大小
if @isout=1
 set @fsize='0'
else
begin
 create table #tb(可选名 varchar(20),大小 int
  ,创建日期 varchar(10),创建时间 varchar(20)
  ,上次写操作日期 varchar(10),上次写操作时间 varchar(20)
  ,上次访问日期 varchar(10),上次访问时间 varchar(20),特性 int)
 insert into #tb
 exec master..xp_getfiledetails @fname
 select @fsize=大小 from #tb
 drop table #tb
 if @fsize is null
 begin
  print '文件未找到'
  return
 end

end

--生成数据处理应答文件
set @m_tbname='[##temp'+cast(newid() as varchar(40))+']'
set @sql='select * into '[email protected]_tbname+' from(
 select null as 类型
 union all select 0 as 前缀
 union all select '[email protected]+' as 长度
 union all select null as 结束
 union all select null as 格式
 ) a'
exec(@sql)
select @[email protected]+'_temp'
 ,@sql='bcp "'[email protected]_tbname+'" out "'[email protected]_in
 +'" /s"'[email protected]
 +case when isnull(@username,'')='' then ''
  else '" /u"'[email protected] end
 +'" /p"'+isnull(@password,'')+'" /c'
exec master..xp_cmdshell @sql
--删除临时表
set @sql='drop table '[email protected]_tbname
exec(@sql)

if @isout=1
begin
 set @sql='bcp "select top 1 '[email protected]+' from '
  [email protected]+case isnull(@tj,'') when '' then ''
   else ' where '[email protected] end
  +'" queryout "'[email protected]
  +'" /s"'[email protected]
  +case when isnull(@username,'')='' then ''
   else '" /u"'[email protected] end
  +'" /p"'+isnull(@password,'')
  +'" /i"'[email protected]_in+'"'
 exec master..xp_cmdshell @sql
end
else
begin
 --为数据导入准备临时表
 set @sql='select top 0 '[email protected]+' into '
  [email protected]_tbname+' from ' [email protected]
 exec(@sql)

 --将数据导入到临时表
 set @sql='bcp "'[email protected]_tbname+'" in "'[email protected]
  +'" /s"'[email protected]
  +case when isnull(@username,'')='' then ''
   else '" /u"'[email protected] end
  +'" /p"'+isnull(@password,'')
  +'" /i"'[email protected]_in+'"'
 exec master..xp_cmdshell @sql
 
 --将数据导入到正式表中
 set @sql='update '[email protected]
  +' set '[email protected]+'=b.'[email protected]
  +' from '[email protected]+' a,'
  [email protected]_tbname+' b'
  +case isnull(@tj,'') when '' then ''
   else ' where '[email protected] end
 exec(@sql)

 --删除数据处理临时表
 set @sql='drop table '[email protected]_tbname
end

--删除数据处理应答文件
set @sql='del '[email protected]_in
exec master..xp_cmdshell @sql

go

 
  • 网站运营seo文章大全
  • 提供全面的站长运营经验及seo技术!
  • 发表评论 共有条评论
    用户名: 密码:
    验证码: 匿名发表