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

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最新韩剧 | 国产乱子伦精品免费 | 中文日本免费高清 | 521香蕉网欧美 | 全黄裸片一29分钟免费真人版 | 免费国产黄线在线观 | 亚洲精品aa在线 | 亚洲视频偷拍视频2亚 | 亚洲丝袜在线 | 欧美亚洲一区二区三区导航 | 国产免费一区二区三区免费视频 | 天堂а√在线中文在线 | 国产精品国 | 国产高清在线 | 日韩免费福利试看3分钟 | 海角社真实xxⅹ人伦 | 成人国产精品视频 | 国产伦精品一区二区三区视 | 日韩高清在线播放不卡 | 又粗又大又硬又爽的免费视频 | 天天色综合 | 免费视频网站 | 人操人碰 | 国产日产亚洲欧美综合另类 | 免费观看性生交大片 | 在线播放免费精品 | 国产99视频精品免费视 | 国产亚洲精品成 | 国产区精品视频 | 国产日韩中文字幕 | 欧美日韩一本到手机视频观看一区 | 国产精品多p对白交换绿帽 国产日本韩国视频 | 米奇欧美777四色影视在线 | 亚洲国产精品激情在线观看 | 亚洲美女国产精品综 | 日韩精品专区在线影院重磅 | 日本精品在线一区欧美 | 免费在线观看电视剧大全 | 亚洲精品在看在线观看高清 | 亚洲国产网站在线观看 |