Viewing 15 posts - 301 through 315 (of 650 total)
This would be handy for a DBA if all the servers are in the domain, but rather than make a batch file with a list of all your servers by...
June 10, 2010 at 1:33 am
Thank you for proving my argument [Smile]
Eh? The argument seems to be that if you restrict the number of emails in the list to 5, then the problem is...
June 5, 2010 at 2:15 am
[font="Courier New"]UPDATE #tempa
SET alternateemail=emails.AlternateEmails
FROM #tempa
INNER JOIN (SELECT
customer_full_name, postcode,
SUBSTRING(COALESCE((SELECT ','+customer_email
FROM
#tempb b
WHERE
a.customer_full_name=b.customer_full_name
AND a.postcode=b.postcode
FOR XML PATH('')
), ','), 2, 8000) AS alternateEmails
FROM
#tempa a
) emails
ON #tempa.customer_full_name=emails.customer_full_name
AND #tempa.postcode=emails.postcode[/font]
June 3, 2010 at 8:47 am
for me, it is 'the mighty claw of vengeance'. Perfect.
June 2, 2010 at 3:05 pm
Yes. I was wondering if the complexity of getting started with it, and the ridiculously bad training materials, was the reason. The product seems very solid and efficient. Adam...
May 30, 2010 at 2:22 am
Did you not have a smart device - and type the SQL then electronically send it to the guy so he could just cut and paste the code into place?...
May 21, 2010 at 3:14 am
"There really is little justification for not having a case-sensitive collation for database on a dev server"
Hugo, I heartily agree with the sentiment, but I hate to actually recommend having...
May 21, 2010 at 3:07 am
Very sympathetic with Dan Humphries' experiences. It always surprises me that an industry that tries to appear informal and radical can occasionally become bureaucratic to the point of satire. I've...
May 20, 2010 at 2:55 am
What bugs me is when people resurrect an old thread to post an answer that's less accurate/useful than an answer already posted in the thread.
This is a difficult problem to...
May 15, 2010 at 2:46 am
I must say I enjoy your editorials. I agree that one can always do more, but whatever it is has got to be sustainable.
Despite the indications to the contrary on...
May 14, 2010 at 2:04 am
I was wish Management Studio behaved like LinqPad when it comes to the object explorer. Rather than DB->Tables, I'd prefer DB->Schemas->Tables
I agree. I find the object browser puzzling in the...
May 8, 2010 at 3:21 pm
anything that involves a table schema change for example kind of makes the whole approach a bit complex and prone to problems
Right on the nail. If you can crack the...
May 6, 2010 at 7:33 am
I really enjoy seeing scripts like this, since the whole topic of scripting is fascinating. What I really like about this is that someone has gone ahead and brewed a...
May 6, 2010 at 4:19 am
John, this is a fascinating thought. As I read it, it would be no defense for the director of a company guilty of a breach of the DP Act that...
April 29, 2010 at 5:07 am
[p]Oh dear. This article really should have explained more. As it stands, I'm afraid it is rather misleading. Although it is right in saying that many such procedures will...
April 27, 2010 at 10:46 am
Viewing 15 posts - 301 through 315 (of 650 total)