Forum Replies Created

Viewing 15 posts - 6,721 through 6,735 (of 7,164 total)

  • RE: Creating Delimited Strings

    MySQL has the group_concat function which is one of the only places I have seen it outshine SQL Server, and I use the word outshine lightly. The lack of a...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Certification...Yes or No?

    Steve Jones - SSC Editor (4/6/2011)


    The Transcender practice exams I have seen in the past used to contain the actual questions on the MS exams. There was a time when...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: How to loop through SQL Table from SSIS to get a set of record and export as excel

    It's Mr 🙂 And my name is opc.three ... Mr or Mrs 500 is just my rating at the moment based on the number of points I have on the...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Certification...Yes or No?

    Steve Jones - SSC Editor (4/1/2011)


    I will say that my take on the exams is that they don't prove a lot, and if you use Transcender exams or other quiz...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: How to loop through SQL Table from SSIS to get a set of record and export as excel

    Too bad this in not being done on Denali (or is it? :-D) where we have the OFFSET/FETCH expression.

    Here is a video that may help you understand the basic use...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: querying a table with xml deadlock graphs

    WayneS (3/31/2011)


    The most recent code for shredding the Deadlock Graph is located here.

    Looks like an SSC article waiting to happen...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Data from dataset to destination server table

    You can get IP address from a DNS lookup on the server name...if you need the whole set of IPs bound to all network adapters on the server then you'll...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Moving Data... does it really need to be so complicated?

    I trust you're just looking for opinions and not some concrete answer...I can imagine a couple scenarios where it might be useful:

    1. I could see using the approach from the...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Data from dataset to destination server table

    RamSteve, please post the code you have so far so we can better assist.

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: How to write a decent script to generate a cross reference?

    Lowell offers a good tip but one I would reserve for one-off troubleshooting. If you're using connection pooling (which you should be) you may want to consider how a change...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Is it possible to format Excel/CSV file into fmt/XML file via BCP

    Just to clarify, a csv file is not the same as Excel file as noted by the xls and xlsx extensions. CSV stands for Comma-Separated Value and is nothing more...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Daily upload from A2007

    I for one am having fun 😉 ...sounds like you are almost there JimS...keep us posted!

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Output Clause and Identity_Insert

    Try it this way:

    USE BackupDatabase

    GO

    SET IDENTITY_INSERT TableA ON

    DELETE FROM PrimaryDatabase..TableA

    OUTPUT Deleted.PrimaryKey

    INTO TableA (PrimaryKey)

    WHERE 1 = 1

    SET IDENTITY_INSERT TableA...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: SQL 2005 Windows Group Access

    db_denydatareader may not be enough depending on what level of access the AD Group affords them. If they have permissions to create or drop tables then db_denydatareader will not prevent...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Daily upload from A2007

    JimS-Indy (4/6/2011)


    Just tried that. Exceeds nvarchar(max) limit....

    Probly need to execute one at a time.

    On second thought. It simply didn't print the whole command. Maybe it's a limitation of the print...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

Viewing 15 posts - 6,721 through 6,735 (of 7,164 total)