Viewing 4 posts - 1 through 5 (of 5 total)
Here's the proc :
CREATE PROC dbo.SP_MngCountryDayOff
(@country_cd CD
,@day_dt DT
,@day_ds DS
)
AS
/********* Variables declaration *********/
/********* Variables initialisation *********/
/* checking parameters */
/**** Treatement if no errors...
March 23, 2012 at 10:41 am
Eugene Elutin (3/23/2012)
I wonder what reasons forced you to use this SP?
Direct order...
March 23, 2012 at 10:24 am
The SP does something very simple :
- Delete existing in a ref table.
- Insert New in that same ref table.
It's easy to do in two requests, but i'm forced to...
March 23, 2012 at 9:39 am
Thanks.
I actually used this post (Reporting Services - Limiting Records Per Page) for the grouping part, and it worked well.
I just wanted to add a text to display more information...
March 20, 2012 at 3:15 am
Viewing 4 posts - 1 through 5 (of 5 total)