2007年6月27日

CSDN上面的一段导出Excel格式文件的存储过程

摘要: if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[p_exporttb]') and OBJECTPROPERTY(id, N'IsProcedure') = 1)drop procedure [dbo].[p_exporttb]GO/*--数据导出EXCEL 导出查询中的数据到Excel,包含字段名,文件... 阅读全文

posted @ 2007-06-27 15:07 Neo0820 阅读(715) 评论(0) 推荐(0) 编辑

sql判断文件是否存在

摘要: create proc p_QueryCheckFile @path nvarchar(1000), @fname nvarchar(250)as--检查文件是否已经存在if right(@path,1)'\' set @path=@path+'\'if exists (select * from sysobjects ... 阅读全文

posted @ 2007-06-27 14:53 Neo0820 阅读(1841) 评论(0) 推荐(0) 编辑

导航