狠狠色丁香婷婷综合尤物/久久精品综合一区二区三区/中国有色金属学报/国产日韩欧美在线观看 - 国产一区二区三区四区五区tv

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

SQL SERVER編寫存儲(chǔ)過程小工具

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

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


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


Sp_GenUpdate
它會(huì)為一個(gè)表生成update存儲(chǔ)過程。語(yǔ)法如下:
sp_GenUpdate < Table Name >,< Primary Key >,< Stored Procedure Name >
以northwind 數(shù)據(jù)庫(kù)為例
sp_GenUpdate 'Employees','EmployeeID','UPD_Employees'
運(yùn)行后生成如下所示的存儲(chǔ)過程:
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


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


SQL Server編寫存儲(chǔ)過程小工具
以下是兩個(gè)存儲(chǔ)過程的源程序
/*===========================================================


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


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


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


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


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


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