Viewing 15 posts - 76 through 90 (of 198 total)
Here's my obvious, brute force answer. Sure seems slow though
DECLARE @Tally TABLE ( Number int)
DECLARE @ThisNum int
SET @ThisNum = 0
WHILE @ThisNum < 10000 BEGIN
INSERT INTO @Tally(Number) VALUES(@ThisNum)
SET @ThisNum = @ThisNum...
January 21, 2011 at 11:54 pm
Getting back to the design thing though. I'm still not crazy about the "ProctorSlot" table. I guess the first thing that scares me is duplicates. Is there a way to...
January 15, 2011 at 1:51 pm
That makes good sense. I guess I'm paranoid about times, and I tend to over analyze. Seems like times always come back to bite me.
Thanks!
January 15, 2011 at 1:09 pm
One more thing on this one. I also have a "Holiday" table. Yea, I know it's redundant, I'm working on getting rid of it in favor of the "Blackouts" table,...
January 14, 2011 at 11:22 pm
OK, maybe this is silly, but here's what I came up with. If I understand correctly, this would encapsulate the entire range of the holiday, right down to the millisecond...
January 14, 2011 at 10:56 pm
That's probably where I'll end up going. My issue with that is that I have to spin up a new Azure service who's only job in life is to fire...
January 10, 2011 at 9:32 pm
Thanks Lutz! That will definitely get me over the hump!
January 9, 2011 at 11:40 am
I think I see where you're going with the calendar table. Here's what I have so far. I hope this is enough code for you to see what I'm doing.
--*...
January 9, 2011 at 12:01 am
Below is the official Microsoft doc on limitations. It seems like every which way I turn, I bump up against SOME limitation. Then there's the lack of tooling. R2 FINALLY...
January 3, 2011 at 8:13 pm
I suppose the on premis SQL Agent is as good as anything. I'm sure I'll find other uses for that scenario anyway. Thanks!
January 3, 2011 at 7:20 pm
Thanks MM.
Bit by Azure again. Man, I really need to talk my company off SQL Azure. It is just too limited right now. Anyone out there looking to move to...
January 2, 2011 at 5:47 pm
Although, I guess I'm still stuck with the same basic problem. How do I start the sproc? Without a SQL Agent, I don't have a way to kick it off.
Anybody...
January 2, 2011 at 4:06 pm
Perfect, that looks like exactly what I need. The fact that it exists must mean that it's not THAT bad an idea. 🙂
Thanks!
January 2, 2011 at 3:26 pm
Got it GSquared. Sorry my fault. I don't see the original post when I write my reply and Crazy 8 just stuck in my head. 🙂
I completely agree with you...
December 28, 2010 at 2:38 pm
Viewing 15 posts - 76 through 90 (of 198 total)