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

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

主站蜘蛛池模板: 中文字幕国产欧美 | 国产在线拍揄自揄免费一区 | 午夜看片在线观 | 国产最新进 | 日韩精品一区二区三区在线 | 全部免费的电视剧大全 | 91精品国产亚洲爽啪在线观看 | 国产在线一卡2卡三卡4卡免费 | 亚洲欧美日本综合 | 欧美v日韩v亚洲v最新在线观看 | 国产精品免费视频色拍拍 | 亚洲精品一区二区观看 | 国产aⅴ一 | 亚洲中中文字幕第一页 | 高清午夜福利电影在线 | 午夜福利在线观看亚洲一区二区 | 日韩一区二区三区美女 | 好看的日韩电影 | 日产精品卡2卡3卡4卡免费 | 日本高清一级婬片a级中文字幕 | 激情五月天深爱网 | 亚洲日韩国产欧美一区二区三区 | 村长扶着小萍的腰猛的挺进 | 日本vs亚洲vs韩国一区三区 | 欧美海外国产 | 久中文字幕中文字幕亚洲无线 | 免费的电影天堂手机在线观看 | 国产在线一区二区播放精品 | 91碰碰视频 | 国产丝袜 | 精品www日韩熟女 | 精品人伦一区二区三区蜜 | 国产精品臀控福利在线观看 | 日本视频| 欧美亚洲国产一区二区 | 国内高清久 | 亚洲天堂一区二区三区 | 私人情侣影院在线电影院 | 亚洲人成在线影院 | 国产中文字幕免费不卡 | 亚洲人亚洲精品 |