Forum Replies Created

Viewing 15 posts - 301 through 315 (of 650 total)

  • RE: Make a 100+ Server Inventory in 30 minutes

    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...

  • RE: Creating Comma seperated list of details from multiple columns

    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...

  • RE: Creating Comma seperated list of details from multiple columns

    [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]

  • RE: Raw Materials - The Job Interview

    for me, it is 'the mighty claw of vengeance'. Perfect.

  • RE: Getting the Message

    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...

  • RE: Where a Rose is not a rose…

    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?...

  • RE: Where a Rose is not a rose…

    "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...

  • RE: A regression of the art of database development

    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...

  • RE: More, More, More

    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...

  • RE: More, More, More

    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...

  • RE: I am not a Schema

    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...

  • RE: Version Control your Stored Procedures

    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...

  • RE: Version Control your Stored Procedures

    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...

  • RE: Financial Data in the Cloud?

    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...

  • RE: Creating a System Stored Procedure

    [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...

Viewing 15 posts - 301 through 315 (of 650 total)