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

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

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

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

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

復(fù)制代碼 代碼如下:

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 -- 判斷對(duì)象是否存在

begin

print 'The object not exists'

return

end

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

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

begin

print 'object not in current database'

return

end

if OBJECTPROPERTY(@objectId,'IsTable') > 1 -- 判斷對(duì)象是否是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 暫時(shí)不處理

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'

標(biāo)簽:商洛 日喀則 咸寧 臺(tái)灣 西藏 公主嶺 寶雞

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