主頁 > 知識庫 > sql2005數(shù)據(jù)導出方法(使用存儲過程導出數(shù)據(jù)為腳本)

sql2005數(shù)據(jù)導出方法(使用存儲過程導出數(shù)據(jù)為腳本)

熱門標簽:舞鋼市地圖標注app 創(chuàng)業(yè)電銷機器人 松原導航地圖標注 電銷機器人虛擬號碼 沈陽智能外呼系統(tǒng)代理 海南自動外呼系統(tǒng)價格 九鹿林外呼系統(tǒng)怎么收費 浙江地圖標注 滄州營銷外呼系統(tǒng)軟件

執(zhí)行語句:exec KeleyiOutputSqlData thetablename

以下是創(chuàng)建存儲過程腳本:

復制代碼 代碼如下:

SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
Create PROCEDURE [dbo].[KeleyiOutputSqlData]

@tablename sysname

AS

declare @column varchar(1000)

declare @columndata varchar(1000)

declare @sql varchar(4000)

declare @xtype tinyint

declare @name sysname

declare @objectId int

declare @objectname sysname

declare @ident int

set nocount on

set @objectId=object_id(@tablename)

if @objectId is null -- 判斷對象是否存在

begin

print 'The object not exists'

return

end

set @objectname=rtrim(object_name(@objectId))

if @objectname is null or charindex(@objectname,@tablename)=0 --此判斷不嚴密

begin

print 'object not in current database'

return

end

if OBJECTPROPERTY(@objectId,'IsTable') > 1 -- 判斷對象是否是table

begin

print 'The object is not table'

return

end

select @ident=status0x80 from syscolumns where id=@objectid and status0x80=0x80

if @ident is not null

print 'SET IDENTITY_INSERT '+@TableName+' ON'

declare syscolumns_cursor cursor

for select c.name,c.xtype from syscolumns c where c.id=@objectid order by c.colid

open syscolumns_cursor

set @column=''

set @columndata=''

fetch next from syscolumns_cursor into @name,@xtype

while @@fetch_status >-1

begin

if @@fetch_status >-2

begin

if @xtype not in(189,34,35,99,98) --timestamp不需處理,image,text,ntext,sql_variant 暫時不處理

begin

set @column=@column+case when len(@column)=0 then'' else ','end+@name

set @columndata=@columndata+case when len(@columndata)=0 then '' else ','','','

end

+case when @xtype in(167,175) then '''''''''+'+@name+'+''''''''' --varchar,char

when @xtype in(231,239) then '''N''''''+'+@name+'+''''''''' --nvarchar,nchar

when @xtype=61 then '''''''''+convert(char(23),'+@name+',121)+''''''''' --datetime

when @xtype=58 then '''''''''+convert(char(16),'+@name+',120)+''''''''' --smalldatetime

when @xtype=36 then '''''''''+convert(char(36),'+@name+')+''''''''' --uniqueidentifier

else @name end

end

end

fetch next from syscolumns_cursor into @name,@xtype

end

close syscolumns_cursor

deallocate syscolumns_cursor

set @sql='set nocount on select ''insert '+@tablename+'('+@column+') values(''as ''--'','+@columndata+','')'' from '+@tablename

print '--'+@sql

exec(@sql)

if @ident is not null

print 'SET IDENTITY_INSERT '+@TableName+' OFF'

標簽:商洛 日喀則 咸寧 臺灣 西藏 公主嶺 寶雞

巨人網(wǎng)絡通訊聲明:本文標題《sql2005數(shù)據(jù)導出方法(使用存儲過程導出數(shù)據(jù)為腳本)》,本文關鍵詞  sql2005,數(shù)據(jù),導出,方法,使用,;如發(fā)現(xiàn)本文內容存在版權問題,煩請?zhí)峁┫嚓P信息告之我們,我們將及時溝通與處理。本站內容系統(tǒng)采集于網(wǎng)絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《sql2005數(shù)據(jù)導出方法(使用存儲過程導出數(shù)據(jù)為腳本)》相關的同類信息!
  • 本頁收集關于sql2005數(shù)據(jù)導出方法(使用存儲過程導出數(shù)據(jù)為腳本)的相關信息資訊供網(wǎng)民參考!
  • 推薦文章