从sql数据库中导出图片

整理文档很辛苦,赏杯茶钱您下走!

免费阅读已结束,点击下载阅读编辑剩下 ...

阅读已结束,您可以下载文档离线阅读编辑

资源描述

ifexists(select*fromdbo.sysobjectswhereid=object_id(N'[dbo].[p_export]')andOBJECTPROPERTY(id,N'IsProcedure')=1)dropprocedure[dbo].[p_export]GO/*--导出表中的image列为文件导出当前库,指定表中,指定的image/text/ntext列的数据为文件导出生成的文件以表中的主键做为文件名可以在指定导出目录时,指定文件的前缀导出处理采用了windows身份验证,如果你的sql不支持windows身份验证则需要把bcp处理语句中的/T,替换为/Usa/Psa的密码--*//*--调用示例--导出图像execp_export'pub_info','pub_id','logo'--导出文本文件,文件名以pp开头execp_export'pub_info','pub_id','pr_info','c:\pp_','.txt'--*/createprocp_export@tbnamesysname,--要进行导出处理的表名@keyfdsysname,--要进行导出处理的主键名@imgfdsysname,--要导出的图像字段名@pathnvarchar(1000)='c:\',--导出的图像文件要保存的目录@filesysname='',--导出的图像文件扩展名,默认为.gif--如果是.开头,表明是直接指定的扩展名--否则表示从表中的该字段获取扩展名@whereandnvarchar(1000)=''--导出数据的条件asdeclare@fmtfilenvarchar(1000),@snvarchar(4000)ifisnull(@path,'')=''set@path='c:\'ifisnull(@file,'')=''set@file='.gif'selecttop1@fmtfile=rtrim(reverse(filename))frommaster.dbo.sysfileswherename=N'master'select@fmtfile=stuff(@fmtfile,1,charindex('\',@fmtfile),N''),@fmtfile=reverse(stuff(@fmtfile,1,charindex('\',@fmtfile),N''))+N'\BACKUP\'+cast(newid()asnvarchar(36))+N'.fmt'set@s=N'bcpselectnullunionallselect0unionallselect0unionallselectnullunionallselectnull'+N'queryout'+@fmtfile+N'/T/c'execmaster..xp_cmdshell@s,no_outputset@s=N'declaretbcursorlocalforselectN''bcpselect''+quotename(@imgfd)+''from''+quotename(db_name())+''..''+quotename(@tbname)+''where''+quotename(@keyfd)+''=''+rtrim(pub_id)+''queryout''+@path+rtrim(pub_id)+'+casewhenleft(@file,1)='.'thenquotename(@file,'''')elseN'ltrim('+quotename(@file)+N')'end+N'+''/T/i''+@fmtfile+''''from'+quotename(@tbname)+casewhenisnull(@whereand,'')=''then''elseN'where'+@whereandend+N'opentbfetchtbinto@swhile@@fetch_status=0beginexecmaster..xp_cmdshell@s--,no_outputfetchtbinto@sendclosetbdeallocatetb'execsp_executesql@s,N'@tbnamesysname,@keyfdsysname,@imgfdsysname,@pathnvarchar(1000),@filenvarchar(10),@fmtfilenvarchar(1000),@snvarchar(4000)',@tbname,@keyfd,@imgfd,@path,@file,@fmtfile,@sset@s='del'+@fmtfile+N''execmaster..xp_cmdshell@s,no_outputgo

1 / 4
下载文档,编辑使用

©2015-2020 m.777doc.com 三七文档.

备案号:鲁ICP备2024069028号-1 客服联系 QQ:2149211541

×
保存成功