Stored Procedure Properties
| Name | Value |
|---|---|
| Owner | dbo |
| Created | 2004-05-31 |
| Startup | False |
| Encrypted | False |
Creation Options
| Name | Value |
|---|---|
| QUOTED_IDENTIFIER | OFF |
| ANSI_NULLS | OFF |
Parameters
| Name | DataType | Length | Type |
|---|---|---|---|
| @ForumGroupName | nvarchar | 512 | INPUT |
| @ForumGroupId | int | 4 | INPUT |
Total: 2 parameter(s)
SQL
SET QUOTED_IDENTIFIER OFF GO SET ANSI_NULLS OFF GO CREATE PROCEDURE forums_UpdateForumGroup ( @ForumGroupName nvarchar(256), @ForumGroupId int ) AS IF @ForumGroupName IS NULL DELETE ForumGroups WHERE ForumGroupId = @ForumGroupId ELSE -- insert a new forum UPDATE ForumGroups SET Name = @ForumGroupName WHERE ForumGroupId = @ForumGroupId GO SET QUOTED_IDENTIFIER OFF GO SET ANSI_NULLS ON GO