用存储过程生成xml文件

 
CREATE proc SP_SaveXML


@fname varchar(1000)="d:/line.xml"

as
set nocount on
declare @startime datetime    
declare @nWorth float 		
declare @i int			


set @startime=(select top 1 nTime from Test_data order by nTime)
set @nWorth=(select top 1 nWorth from Test_Data order by nTime)		
set @i=0

create table ##t(re nvarchar(4000))
insert ##t
select Re='
 
 '
union all select '
 
 
  
  '
union all select '
  
  
   
   '

while datediff(day,@startime,getdate())>=0
begin
insert ##t
select '
   
   
    
    '+cast(CONVERT(varchar(12),@startime,102) as varchar)+'
   
   '
set @i=@i+1
set @startime=DATEADD(day,1,@startime)
end

insert ##t
select '
  
  '
union all select '
  
  
   
   '
union all select '
   
   
    
    '


set @startime=(select top 1 nTime from Test_data order by nTime)	
set @i=0

while datediff(day,@startime,getdate())>=0

begin

if exists(select top 1 nWorth from Test_Data where nTime=@startime) 

set @nWorth=(select top 1 nWorth from Test_Data where nTime=@startime)

insert ##t
select '
    
    
     
     '+cast(cast(@nWorth as decimal(10,3)) as varchar)+'
    
    '

set @i=@i+1
set @startime=DATEADD(day,1,@startime)
end

insert ##t
select '
   
   '
union all select '
  
  '

union all select '
 
 '

exec('master..xp_cmdshell ''bcp ##t out "'+@fname+'" /P"" /c''')

drop table ##t
GO
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值