日韩欧美国产精品免费一二-日韩欧美国产精品亚洲二区-日韩欧美国产精品专区-日韩欧美国产另-日韩欧美国产免费看-日韩欧美国产免费看清风阁

LOGO OA教程 ERP教程 模切知識交流 PMS教程 CRM教程 開發(fā)文檔 其他文檔  
 
網(wǎng)站管理員

SQL SERVER編寫存儲過程小工具

admin
2011年2月16日 0:51 本文熱度 3097

在開發(fā)數(shù)據(jù)庫系統(tǒng)的過程中,經(jīng)常要寫很多的存儲過程。為了統(tǒng)一格式和簡化開發(fā)過程,我編寫一些存儲過程,用來自動生成存儲過程。下面就為您簡單介紹一下它們。其中一個用于生成Insert過程,另一個用于生成Update過程。


Sp_GenInsert
該過程運(yùn)行后,它為給定的表生成一個完整的Insert過程。如果原來的表有標(biāo)識列,您得將生成的過程中的SET IDNTITY_INSERT ON 語句手工刪除。
語法如下
sp_GenInsert < Table Name >,< Stored Procedure Name >
以northwind 數(shù)據(jù)庫為例
sp_GenInsert 'Employees', 'INS_Employees'
最后會生成一個Insert存儲過程。利用它,您可以作進(jìn)一步的開發(fā)。


Sp_GenUpdate
它會為一個表生成update存儲過程。語法如下:
sp_GenUpdate < Table Name >,< Primary Key >,< Stored Procedure Name >
以northwind 數(shù)據(jù)庫為例
sp_GenUpdate 'Employees','EmployeeID','UPD_Employees'
運(yùn)行后生成如下所示的存儲過程:
Create Procedure UPD_Employees
@EmployeeID int
@LastName nvarchar(40) ,
@FirstName nvarchar(20) ,
@Title nvarchar(60) ,
@TitleofCourtesy nvarchar(50) ,
@BirthDate datetime ,
@HireDate datetime ,
@Address nvarchar(120) ,
@City nvarchar(30) ,
@Region nvarchar(30) ,
@PostalCode nvarchar(20) ,
@Country nvarchar(30) ,
@HomePhone nvarchar(48) ,
@Extension nvarchar(8) ,
@Phote image ,
@Notes ntext ,
@ReportsTo int ,
@PhotoPath nvarchar(510)
AS
UPDATE Employees
SET
LastName = @LastName,
FirstName = @FirstName,
Title = @Title,
TitleofCourtesy = @TitleofCourtesy,
BirthDate = @BirthDate,
HireDate = @HireDate,
Address = @Address,
City = @City,
Regin = @Regin,
PostalCode = @PostCode,
Country = @Country,
HomePhone = @HomePhone,
Extension = @Extension,
Photo = @Photo
Notes = @Notes,
ReportsTo = @ReportsTo,
PhotoPath = @PhotoPath
WHERE EmployeeID = @EmployeeID


使用以上的兩個存儲過程,節(jié)省了我不少時(shí)間。特別是在改變了表結(jié)構(gòu)后,重新構(gòu)造各個存儲過程的過程中。您可以改寫這兩個程序,來自動生成別的存儲過程。


SQL Server編寫存儲過程小工具
以下是兩個存儲過程的源程序
/*===========================================================


語法: sp_GenInsert <Table Name>,<Stored Procedure Name>
以northwind 數(shù)據(jù)庫為例
sp_GenInsert 'Employees', 'INS_Employees'


注釋:如果您在Master系統(tǒng)數(shù)據(jù)庫中創(chuàng)建該過程,那您就可以在您服務(wù)器上所有的數(shù)據(jù)庫中使用該過程。


=============================================================*/


CREATE procedure sp_GenInsert
@TableName varchar(130),
@ProcedureName varchar(130)
as
set nocount on


declare @maxcol int,
@TableID int
--itlearner.com
set @TableID = object_id(@TableName)


select @MaxCol = max(colorder)
from syscolumns
where id = @TableID


select 'Create Procedure ' + rtrim(@ProcedureName) as type,0 as colorder into #TempProc
union
select convert(char(35),'@' + syscolumns.name)
+ rtrim(systypes.name)
+ case when rtrim(systypes.name) in ('binary','char','nchar','nvarchar','varbinary','varchar') then '(' + rtrim(convert(char(4),syscolumns.length)) + ')'
when rtrim(systypes.name) not in ('binary','char','nchar','nvarchar','varbinary','varchar') then ' '
end
+ case when colorder < @maxcol then ','
when colorder = @maxcol then ' '
end
as type,
colorder
from syscolumns
join systypes on syscolumns.xtype = systypes.xtype
where id = @TableID and systypes.name <> 'sysname'
union
select 'AS',@maxcol + 1 as colorder
union
select 'INSERT INTO ' + @TableName,@maxcol + 2 as colorder
union
select '(',@maxcol + 3 as colorder
union
select syscolumns.name
+ case when colorder < @maxcol then ','
when colorder = @maxcol then ' '
end
as type,
colorder + @maxcol + 3 as colorder
from syscolumns
join systypes on syscolumns.xtype = systypes.xtype
where id = @TableID and systypes.name <> 'sysname'
union
select ')',(2 * @maxcol) + 4 as colorder
union
select 'VALUES',(2 * @maxcol) + 5 as colorder
union
select '(',(2 * @maxcol) + 6 as colorder
union
select '@' + syscolumns.name
+ case when colorder < @maxcol then ','
when colorder = @maxcol then ' '
end
as type,
colorder + (2 * @maxcol + 6) as colorder
from syscolumns
join systypes on syscolumns.xtype = systypes.xtype
where id = @TableID and systypes.name <> 'sysname'
union
select ')',(3 * @maxcol) + 7 as colorder
order by colorder



select type from #tempproc order by colorder


drop table #tempproc



SQL Server編寫存儲過程小工具
功能:為給定表創(chuàng)建Update存儲過程
語法: sp_GenUpdate <Table Name>,<Primary Key>,<Stored Procedure Name>
以northwind 數(shù)據(jù)庫為例
sp_GenUpdate 'Employees','EmployeeID','UPD_Employees'


注釋:如果您在Master系統(tǒng)數(shù)據(jù)庫中創(chuàng)建該過程,那您就可以在您服務(wù)器上所有的數(shù)據(jù)庫中使用該過程。


===========================================================*/
CREATE procedure sp_GenUpdate
@TableName varchar(130),
@PrimaryKey varchar(130),
@ProcedureName varchar(130)
as
set nocount on


declare @maxcol int,
@TableID int
--itlearner.com
set @TableID = object_id(@TableName)


select @MaxCol = max(colorder)
from syscolumns
where id = @TableID


select 'Create Procedure ' + rtrim(@ProcedureName) as type,0 as colorder into #TempProc
union
select convert(char(35),'@' + syscolumns.name)
+ rtrim(systypes.name)
+ case when rtrim(systypes.name) in ('binary','char','nchar','nvarchar','varbinary','varchar') then '(' + rtrim(convert(char(4),syscolumns.length)) + ')'
when rtrim(systypes.name) not in ('binary','char','nchar','nvarchar','varbinary','varchar') then ' '
end
+ case when colorder < @maxcol then ','
when colorder = @maxcol then ' '
end
as type,
colorder
from syscolumns
join systypes on syscolumns.xtype = systypes.xtype
where id = @TableID and systypes.name <> 'sysname'
union
select 'AS',@maxcol + 1 as colorder
union
select 'UPDATE ' + @TableName,@maxcol + 2 as colorder
union
select 'SET',@maxcol + 3 as colorder
union
select syscolumns.name + ' = @' + syscolumns.name
+ case when colorder < @maxcol then ','
when colorder = @maxcol then ' '
end
as type,
colorder + @maxcol + 3 as colorder
from syscolumns
join systypes on syscolumns.xtype = systypes.xtype
where id = @TableID and syscolumns.name <> @PrimaryKey and systypes.name <> 'sysname'
union
select 'WHERE ' + @PrimaryKey + ' = @' + @PrimaryKey,(2 * @maxcol) + 4 as colorder
order by colorder



select type from #tempproc order by colorder


drop table #tempproc
/*=======源程序結(jié)束=========*/


該文章在 2011/2/16 0:51:25 編輯過
關(guān)鍵字查詢
相關(guān)文章
正在查詢...
點(diǎn)晴ERP是一款針對中小制造業(yè)的專業(yè)生產(chǎn)管理軟件系統(tǒng),系統(tǒng)成熟度和易用性得到了國內(nèi)大量中小企業(yè)的青睞。
點(diǎn)晴PMS碼頭管理系統(tǒng)主要針對港口碼頭集裝箱與散貨日常運(yùn)作、調(diào)度、堆場、車隊(duì)、財(cái)務(wù)費(fèi)用、相關(guān)報(bào)表等業(yè)務(wù)管理,結(jié)合碼頭的業(yè)務(wù)特點(diǎn),圍繞調(diào)度、堆場作業(yè)而開發(fā)的。集技術(shù)的先進(jìn)性、管理的有效性于一體,是物流碼頭及其他港口類企業(yè)的高效ERP管理信息系統(tǒng)。
點(diǎn)晴WMS倉儲管理系統(tǒng)提供了貨物產(chǎn)品管理,銷售管理,采購管理,倉儲管理,倉庫管理,保質(zhì)期管理,貨位管理,庫位管理,生產(chǎn)管理,WMS管理系統(tǒng),標(biāo)簽打印,條形碼,二維碼管理,批號管理軟件。
點(diǎn)晴免費(fèi)OA是一款軟件和通用服務(wù)都免費(fèi),不限功能、不限時(shí)間、不限用戶的免費(fèi)OA協(xié)同辦公管理系統(tǒng)。
Copyright 2010-2025 ClickSun All Rights Reserved

主站蜘蛛池模板: 婷婷综合激情五月中文字幕 | 2025精品国产 | 亚洲精品老司机综合影院 | 色撸撸在线视频 | 国产午夜在线视频 | 精品国产免费人成在线观看 | 国产偷国产偷亚 | 国产深夜在线免费观看 | 国产丶欧美丶日本不卡 | 热门好看的电影大全 | 免费一级欧美大片在 | 国产自经典三级在线观看 | 国产精品成人免费福利 | 国产性生大片免费观看性 | 日本永久免费aⅴ在线观看 噼里啪啦hd免费观看动漫 | 国产午夜福利不卡在线观看 | 色色色色色色资源女人天堂 | 亚洲综合欧美在线 | 欧美区精品系列在线观看不卡 | 午夜家庭影院 | 梦乃爱华作品在线观看播放 | 特级西西人体444ww | 精品午夜一区 | 日韩欧美精品综合一区二区三 | 国内最真实的xxxx人伦 | 亚洲大码熟女在 | 天堂在线8一区二区三区 | 野花香视频在线观看免费高清版 | 亚洲福利国产精品17p | 性一交一黄一片 | 欧美丝袜自拍制服另类 | 欧美日韩免费不卡在线观看 | 天天色综合色 | 国产精品自产拍在 | 一线路二 | 成人国产精品免费视频不卡 | 好看的剧免费在线观看 | 99热这里只有精品 | 视频在线播放 | 亚洲欧美精品福利一区二区 | 国产精品亚洲精品爽爽 |