Viewing 15 posts - 16 through 30 (of 64 total)
Thanks for all the feedback, much appreciated.
As I said previously, writing an article for a SQL Server forum that has enough detail to convey an understanding of a subject, but...
February 25, 2015 at 1:28 am
Thanks muhammad.yasir, good spot!
I've looked into this and perhaps the following would more accurately solve the problem....
declare @product_id1 int = 170, @product_id2 int = 169, @class_id int = 1;
SELECT COUNT(*)
...
February 25, 2015 at 12:57 am
dwain.c (2/24/2015)
ChrisM@Work (2/24/2015)
I'll ask Adam to remind you of this next time you meet up. He sits next to me.Sounds like a small world.
Adam is my brother, an awsome System...
February 24, 2015 at 6:52 am
dwain.c (2/24/2015)
ChrisM@Work (2/24/2015)
I'll ask Adam to remind you of this next time you meet up. He sits next to me.Sounds like a small world.
Adam is my brother, an awsome System...
February 24, 2015 at 6:50 am
I include the encapsulation of the query in a TVF in my demo code, because that's how I would use it in the real world.
Not because a TVF with the...
February 24, 2015 at 6:47 am
Morning all,
And thanks for the feedback.
A big concern I had with writing the article was it length. The original article was 30 pages long and I knew I had to...
February 24, 2015 at 1:46 am
Great article, thanks ed
One question: You said the DLL are machine code. So just to clarify you get a machine code dll and not a clr assembly?
August 6, 2014 at 1:49 am
create schema String
go
create function String.SingleQuote() returns nchar(1) as Begin return char(39) end
go
alter function String.QuotedSingleQuote() returns nchar(2) as Begin return replicate(String.SingleQuote(), 2) end
go
select replace('gary''s gary''s', String.SingleQuote(),String.QuotedSingleQuote())
Surely we can find someting more...
July 11, 2014 at 8:45 am
Secondly I feel that if you had made the main focus of your article about the solution you've developed for monitoring and analysing indexes that you would have found a...
June 26, 2014 at 6:35 am
Thanks for sharing this article with us Daniel.
There is one statement you make which I found interesting.
"It doesn't make sense to maintain one set of indexes for all copies...
June 26, 2014 at 6:25 am
Happy new year to everyone.
I have taken some time to look at language trends using google's online trending app. If you view the trending graph in the link, you'll see...
January 9, 2014 at 5:10 am
Dude I've been adding in smiley faces with my comments to indicate that I'm being friendly and my comments are in jest. People visit this site to get...
December 18, 2013 at 8:15 am
If Alberto Ferrari or Marco Russo were unable to convince you of the languages merits then I very much doubt I can. I feel sorry that you get no satisfaction...
December 18, 2013 at 2:11 am
Thanks for the article,
Consider using strongly typed xml and discarding fuzzy checking like datalength > 10
So you're SP's input parameter might be something like @parmeters XML (DOCUMENT dbo.MyXSD)
http://technet.microsoft.com/en-us/library/ms184277.aspx
You...
December 16, 2013 at 3:02 am
Thanks for all your feedback (both positive and negative). I've made a correction to the code sample that Christian and others highlighted (thanks).
Regarding the question around the motivation to learn...
December 13, 2013 at 2:32 am
Viewing 15 posts - 16 through 30 (of 64 total)