Viewing 9 posts - 16 through 24 (of 24 total)
Thanks Gift for your reply.
I read your post and tried to enable the three options, however, file stream couln't be enabled. When clicking the Ok button the Properties dialog is...
March 17, 2010 at 12:58 am
Thanks Steve, they were really useful and provided me with what I needed.
June 29, 2009 at 12:25 am
CREATE FUNCTION [dbo].[GetWorkingDays]
( @StartDate datetime,
@EndDate datetime )
RETURNS INT
AS
BEGIN
DECLARE @varDate datetime --placeholder for c
DECLARE @wdCount int
SELECT @wdCount = 0
SELECT @varDate = @StartDate
WHILE (@varDate Between @StartDate...
May 12, 2009 at 7:03 am
Actually the businees rule needs to insure that only one record for a period of time, so if there is a record for the same period it will return 0...
January 14, 2009 at 11:06 pm
Table structure:
[Record_Id] [int] NOT NULL,
[From] [smalldatetime] NOT NULL,
[To] [smalldatetime] NOT NULL
Data:
Record_Id FROM ...
January 14, 2009 at 6:09 am
Editor's Note: Link removed.
November 5, 2008 at 2:48 am
Viewing 9 posts - 16 through 24 (of 24 total)