Stored Procedure Properties
| Name | Value |
|---|---|
| Owner | dbo |
| Created | 2004-05-31 |
| Startup | False |
| Encrypted | False |
Creation Options
| Name | Value |
|---|---|
| QUOTED_IDENTIFIER | ON |
| ANSI_NULLS | ON |
Parameters
| Name | DataType | Length | Type |
|---|---|---|---|
| @ForumID | int | 4 | INPUT |
| @UserName | nvarchar | 100 | INPUT |
Total: 2 parameter(s)
SQL
SET QUOTED_IDENTIFIER ON GO SET ANSI_NULLS ON GO CREATE PROCEDURE forums_GetUnmoderatedPostStatus ( @ForumID int = null, @UserName nvarchar (50) = null ) AS BEGIN DECLARE @DateDiff int DECLARE @TotalCount int IF @ForumID = 0 SET @ForumID = null SELECT OldestPostAgeInMinutes = datediff(mi, isnull(min(postdate),getdate()),getdate()), TotalPostsInModerationQueue = count(PostID) FROM POSTS P WHERE ForumID = isnull(@ForumID,ForumID) AND Approved = 0 END GO SET QUOTED_IDENTIFIER OFF GO SET ANSI_NULLS ON GO