Viewing 15 posts - 1 through 15 (of 272 total)
I just wonder why we are not farther along with biometrics.
May 29, 2019 at 4:55 pm
This completely depends on your data. Sometimes it's obvious that a single column is unique and determines the record. Other times, there is no obvious combination to make up a...
May 20, 2019 at 3:46 pm
This is something I think about quite a lot these days. I am about 2.5 years away from traditional retirement age, but I have no desire to retire. Yet, it...
May 14, 2019 at 4:24 pm
What error is being returned?
May 8, 2019 at 8:11 pm
You only need to backup that which you cannot afford to lose.
May 8, 2019 at 3:38 pm
Minimum upgrade point will depend on your migration cycle and where you are from a timing perspective. If you just migrated to 2016, you may not be ready for 2017...
May 7, 2019 at 8:14 pm
I recall in school, there were some teachers that would give a point for filling out your name on your paper correctly. I feel like I just got one...
August 8, 2012 at 7:24 am
Correct answers = 1 ???
This must be one of those Monty Python type questions:
Q: What is your name?
A: Steve Cullen
Q: What is your quest?
A: I seek knowledge and wisdom about...
July 5, 2012 at 6:31 am
Or do an inner join on that criteria.
June 28, 2012 at 9:46 am
Either a cross join or a JOIN Sales ON 1 = 1 will work if there is only 1 row in that table.
June 28, 2012 at 6:21 am
I dislike questions that require analysis or over analysis in order to arrive at the correct answer.
A QOD question should be a simple test. A better question might have...
June 25, 2012 at 6:54 am
This could work:
--===Declare variables
DECLARE @StartDate DATE, @EndDate DATE;
--===Set our variables based on the current date
select @StartDate = dateadd(mm, datediff(mm, 0, GETDATE()), 0);
select @EndDate = dateadd(mm, datediff(mm, 0, GETDATE()) + 1,...
June 19, 2012 at 8:03 am
One possible solution:
USE tempdb
GO
CREATE TABLE MyTable (ProductionDate DATETIME NOT NULL, Quantity INT NOT NULL)
INSERT INTO MyTable
SELECT '1-1-2012',5 UNION ALL
SELECT '1-3-2012',7
-- Get the data
;WITH iCalendar AS (
select top 15 DATEADD(DD, N...
June 15, 2012 at 7:17 am
Viewing 15 posts - 1 through 15 (of 272 total)