Viewing 3 posts - 1 through 3 (of 3 total)
Something like this will return the number of weeks and remaining days + remaining work days.
CREATE FUNCTION [dbo].udfGetWeeksAndDays
(
@StartDate DATETIME
,@EndDate DATETIME
)
RETURNS
TABLE
AS
RETURN
(
with...
December 13, 2016 at 12:22 am
Should look into using n-hibernate tool such as CSLA, LLBLGen Pro, etc... The CRUD procedures should reside in the DataAccessLayer.dll.
July 9, 2010 at 11:10 am
Good article RBarry Young. I got rid of my cursor by
- Store the result data in table var with rownumber
- create a row index var to loop...
April 14, 2009 at 10:05 am
Viewing 3 posts - 1 through 3 (of 3 total)