Viewing 15 posts - 256 through 270 (of 1,033 total)
CELKO (8/7/2012)
August 7, 2012 at 7:34 am
Sean Lange (8/7/2012)
August 7, 2012 at 7:31 am
Thomas Abraham (8/7/2012)
+2 - This question has GOTCHA written all over it. While I admit I should have been more careful in reading the question, the question title and the...
August 7, 2012 at 7:29 am
tommyh (8/6/2012)
August 7, 2012 at 7:28 am
I fill in the calendar table with a dump from an 11,000 integer tally table. It reaches out about 30 years. I have a process that checks nightly...
August 6, 2012 at 8:20 am
Add a calendar table with a working_day field type int =1 on working days, and 0 on non-working days.
i.e.
CREATE TABLE dbo.calendar(
calendar_date date NOT NULL PRIMARY KEY,
working_day INT NOT NULL DEFAULT...
August 6, 2012 at 7:49 am
Put me in the group of learners...
Knew the first two. Have never played with either XML or SPATIAL data types as of yet (curious about them, haven't had a...
August 6, 2012 at 7:23 am
capn.hector (8/3/2012)
August 3, 2012 at 9:38 am
It's hard to tell when the SQL script is an image.
I'm sure this will come down to some kind of argument, but when I see the image
I don't see...
August 3, 2012 at 9:34 am
My turn
DECLARE @num INT = 102948092
DECLARE @numstr VARCHAR(10)
SET @numstr = @num
DECLARE @tab TABLE(
num INT,
numc CHAR(1))
;WITH
t1 AS (SELECT 1 N UNION ALL SELECT 1 N),
t2 AS (SELECT...
August 3, 2012 at 7:45 am
rja.carnegie (9/17/2009)
August 3, 2012 at 7:31 am
Koen Verbeeck (8/3/2012)
Indeed, the correct answer is 1,0,1,error, because the last query produces a syntax error. Shame, because it was a pretty good question otherwise.Points back please 🙂
+1 I agree.......
August 3, 2012 at 7:05 am
1 Production Environment
3 Full Backups + 12 Differentials + 36 Transaction log backups on the production server
1 Staging Environment
1 Full Backup copied from Production at some ponit
1 Development Environment
1 Full...
August 3, 2012 at 6:57 am
Thanks for making me think... I had to sit there and keep reminding myself how the datetime2 values would round and then tried to keep two mental counts (statement 1...
August 2, 2012 at 6:55 am
mtassin (7/30/2012)
July 30, 2012 at 10:51 am
Viewing 15 posts - 256 through 270 (of 1,033 total)