Viewing 15 posts - 16 through 30 (of 95 total)
November 19, 2018 at 12:51 am
November 17, 2018 at 6:56 am
CREATE FUNCTION dbo.Next_Monday()
November 17, 2018 at 6:30 am
Didn't have any coffee yet, but selected the right (wrong) answer..
July 9, 2018 at 12:15 am
If I read this this article the result should be -21.
Louis.
March 14, 2018 at 1:14 am
Setting the date is depending on the language/region setting of SQL server.
he server I tested on interpreted the string '10/02/17' as February 10th, DATENAME returned 10.
I picked the...
November 14, 2017 at 12:14 am
Instead of adding the extra columns later :
SELECT TOP (0)
*,
[FileName] = CAST(null AS varchar(60) ),
...
May 15, 2017 at 7:09 am
To extract nodes from an xml with namespaces, look at this site: xmlnamespaces,
I can't try with your namespace without sample data
Regarding missing nodes, using the value...
March 20, 2017 at 10:31 am
March 18, 2017 at 4:11 am
January 19, 2017 at 1:47 pm
You could use a recusive cte,
Changed the Id in your sample to Group_Id and added an Identity_Column to enable filtering and sorting.
The first cte filters and sorts the data...
July 5, 2016 at 8:53 am
Steve, your explanation tells me I'm right, but the result tells me false....
Did you try to Stretch us and run into the limitations of the QOTD ?
Louis.
June 29, 2016 at 1:05 am
This code checks for existence of the column and drops it.
IF EXISTS (
SELECT 1
...
May 13, 2016 at 5:38 am
VARDECIMAL is a storage format, not a datatype...
pls my point..
May 10, 2016 at 4:25 am
Viewing 15 posts - 16 through 30 (of 95 total)