Viewing 15 posts - 421 through 435 (of 902 total)
Final Edit,
Dwain, I figured out why yours didnt work you're addind on the Julian day which is 1-365/366
I think you need to add the Week day number ...
January 8, 2013 at 1:31 am
Id love to see the GenerateCalendar function.
Coming from a DW background the persisted calendar table is second nature, and I'm surprised more traditional OLTP systems dont implement one...
January 8, 2013 at 12:44 am
Nice Alternative dwain, love the use of cross applys with the tally and inline month generator, as well as the normalisation of the month to always be the first.
January 8, 2013 at 12:18 am
That makes sense, and I can see why you're having problems.
Is it possible to get the Columns renamed in the XML source or is this a fixed definition?
One thing...
January 7, 2013 at 7:30 am
Why cant you just name the columns differently? Especially if its a temporary thing like a table variable.
January 7, 2013 at 7:08 am
Sorry to say It Depends, usually the data volumes, budget etc will dictate these things.
We tend to split everything out, even down to having seperate Servers for SSAS, SSRS and...
January 7, 2013 at 6:51 am
I tend to have a generic calendar table build of which this is a cut down version.
This is the one I tend to use as a prepopulation staging table...
January 7, 2013 at 2:52 am
Thanks anthony, I'm sure there will be one I'll do some digging.
January 7, 2013 at 2:39 am
Thanks Anthony, I was curious as I've been thinking of using the Google API to get Geo-spatial data for locations, as well as using the google data with a 2012...
January 7, 2013 at 2:34 am
The Codeplex solution Looks very nice.
Out of curiosity what are you using google analytics for, is it a matter of data enrichment (Geo codes etc) or is there some other...
January 7, 2013 at 2:15 am
Welcome to SSC, DDL would be nice but this is not really a difficult problem so I've mocked up the data to suit, but for future refrence the DDL (table...
January 7, 2013 at 1:47 am
Personally I would run the overnight loads independantly on each environment with Prod being the priority environment.
this way your data is then pretty much in sync, with the exception of...
January 3, 2013 at 12:58 am
manikandanps (1/3/2013)
this should work!!!!!Select * from #temp2
EXCEPT
Select * from #temp1
I already provided that solution but the poster needs to add more logic so I've provided the additional solutions, which should...
January 3, 2013 at 12:36 am
Ok, I didnt realise there was any other logic.
This is a way to do it with a Left Join
Select t2.*
from #temp2 t2
Left Join #temp1 t1 on t2.StudentLocalID=t1.StudentLocalID and...
January 3, 2013 at 12:07 am
this should work
Select * from #temp2
EXCEPT
Select * from #temp1
January 2, 2013 at 10:41 am
Viewing 15 posts - 421 through 435 (of 902 total)