📄 cs_system_addnewurl.sql.prc
字号:
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[cs_System_AddNewUrl]') and OBJECTPROPERTY(id, N'IsProcedure') = 1)
drop procedure [dbo].[cs_System_AddNewUrl]
GO
/***************************************************
Adds another Url to an existing SiteSettings Record
Author: Scott Watermasysk
Date: 10/21/2004
****************************************************/
CREATE Proc [dbo].cs_System_AddNewUrl
(
@ExistingUrl nvarchar(512),
@NewUrl nvarchar(512)
)
as
if exists(Select SiteID FROM cs_Sites where SiteUrl = @NewUrl)
Return -1 -->> The site @NewUrl already exists
Declare @SiteID int
Declare @SettingsID int
Declare @NewSiteID int
Select @SiteID = SiteID FROM cs_Sites where SiteUrl = @ExistingUrl
If @SiteID is null
Return -2 -->> The site at @ExistingUrl does not Exist
Select @SettingsID = SettingsID FROM cs_SiteMappings where SiteID = @SiteID
If @SettingsID is null
Return -3 -->> This Application is not yet mapped
Insert cs_Sites Values (@NewUrl)
Select @NewSiteID = @@Identity
if @NewSiteID is null
Return -4 -->> Insert of new site failed
Insert cs_SiteMappings Values (@SettingsID, @NewSiteID)
Return 1
GO
grant execute on [dbo].[cs_System_AddNewUrl] to public
go
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -