Viewing 15 posts - 1 through 15 (of 2,006 total)
Best wishes, thoughts and prayers with you and your family.
July 7, 2020 at 4:33 pm
SQLBits.
Not a huge surprise. I've seen a few events coming up being cancelled or postponed.
Good they have postponed it though and not cancelled it.
Sadly hotel is standing by its...
March 11, 2020 at 12:45 pm
Awww, SQLBits has been postponed until September. I was really looking forward to it as well, but not surprised at all.
March 11, 2020 at 9:29 am
What is supposed to happen when you have an "IN" and no corresponding "OUT" ? Emp ID 1 has a time in at "2017-08-02 13:00:00.000", then another time in at...
February 26, 2018 at 9:07 am
Sound died in Pinal Dave's talk ??
February 23, 2018 at 8:54 am
I'm there for the Friday and the Saturday, as normal when it's a sensible distance from home 🙂
Train journey in on the Saturday is going to be a killer.
February 20, 2018 at 8:30 am
Not an aswer to your question, but I'm just curious. . . why are you upgrading from 2008 to 2008R2? Both are out of mainstream support and both end extended...
February 15, 2018 at 4:24 am
Something like this would show you the tables and rows where a column holds data that has at least 3 decimal places: -
DECLARE @sql...
February 13, 2018 at 4:47 am
A few options. . .
SELECT N AS [ORIGINAL],
LTRIM([N]) AS [LTRIM - DOES NOTHING],
REPLACE([N],...
August 2, 2016 at 7:48 am
Is the row_number even necessary? Don't you just want: -
SELECT [ItemNr],
MAX([FromDate]) AS FromData
FROM #Table1
WHERE FromDate...
June 20, 2016 at 6:49 am
Your "PRINT" is printing a variable called "@sql", whilst your statement is being appended to a variable called "@SQLQuery".
This seems like an odd requirement, why do you want to do...
June 15, 2016 at 3:14 am
You could try modifying this: -
SET NOCOUNT ON;
IF OBJECT_ID('tempdb..#indexes') IS NOT NULL
BEGIN
DROP TABLE [#indexes];
END;
SELECT CASE WHEN [a].[type_desc] <> 'HEAP'
...
May 20, 2016 at 5:09 am
Brandie Tarvin (5/17/2016)
May 17, 2016 at 6:08 am
Alan.B (2/23/2016)
February 24, 2016 at 6:40 am
February 23, 2016 at 8:01 am
Viewing 15 posts - 1 through 15 (of 2,006 total)