Viewing 3 posts - 1 through 3 (of 3 total)
I've used Visual Studio (2010 Ultimate) with SVN via Ankh and it's impressive. Automated deployments and unit testing. Microsoft are pushing this forward with 2012 as SQL Server Data Tools...
March 16, 2012 at 10:08 am
Hi All,
Sorry I'm late to the party, but just wanted to post something for anyone to comment on as another method of solving the problem using date diff and...
February 7, 2012 at 7:58 am
This might be useful for ordering and defining the general periods;
-- Replace #EffectiveDate with your source of period date delimiters.
CREATE TABLE #EffectiveDate (
Effective_Date DATETIME);
INSERT INTO #EffectiveDate VALUES ('20110715'),('20110815'),('20110910');
-- Find period...
October 26, 2011 at 4:33 am
Viewing 3 posts - 1 through 3 (of 3 total)