Forum Replies Created

Viewing 15 posts - 5,836 through 5,850 (of 7,164 total)

  • RE: Combining Multiple Records Into One

    You can use SQLCLR aggregate GROUP_CONCAT to do this (get it here http://groupconcat.codeplex.com):

    SELECT jc.OrderNum,

    dbo.GROUP_CONCAT(DISTINCT OrdCountry) AS OrdCountries

    FROM #JobCountry...

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

  • RE: Microsoft.ACE.OLEDB.12.0" for linked server "(null)" reported an error

    32-bit or 64-bit SQL Server? How much memory does your server have in it and what is the max memory setting in SQL Server?

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

  • RE: How to select all the tables

    ash0550 (6/27/2011)


    In the Adventure works DB If i want select all the tables under Production at once without mentioning in particular

    How to do it. Is it possible

    Yes, it is...

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

  • RE: PGP Encryption in SSIS

    Elliott Whitlow (6/27/2011)


    opc.three (6/27/2011)


    Not leaving SSIS for PGP tasks would be preferable. And I agree, downgrading would probably be an easy thing to do. Just for completeness, I did a...

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

  • RE: PGP Encryption in SSIS

    Elliott Whitlow (6/27/2011)


    opc.three (6/25/2011)


    http://ssisextensions.codeplex.com/ is 2008 only.

    Cozy Roc has a 2005 component but I just looked at it and it appears as if it support OpenPGP only, i.e. it does...

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

  • RE: how to avoid casting for tables with indexes

    whole (6/27/2011)


    hi, i cannot do anything about the database design now ...

    now i understand the criteria that both columns datatypes needs to match...

    Excellent, remember this when it's your turn...

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

  • RE: How to select one column as multiple columns..

    Ninja's_RGR'us (6/27/2011)


    Sean Lange (6/27/2011)


    I do know what to do on each layer and trust me you both are wrong, no other data engine, or layer, linq, entity framework, Datasets loops...

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

  • RE: Join Question

    I do love them, like hangnails, and splinters 😀

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

  • RE: PGP Encryption in SSIS

    From http://en.wikipedia.org/wiki/International_Data_Encryption_Algorithm:

    IDEA was used in Pretty Good Privacy (PGP) v2.0, and was incorporated after the original cipher used in v1.0, BassOmatic, was found to be insecure.[2] IDEA is an optional...

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

  • RE: Change FillFactor back to 0 on DB

    GilaMonster (6/26/2011)


    opc.three (6/26/2011)


    I always use PerfMon, not sure if it's available in a DMV. If you find a DMV/F please post back 😀

    Except that the perfmon counter doesn't actjually track...

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

  • RE: Double Insert Possible ?

    GilaMonster (6/26/2011)


    opc.three (6/26/2011)


    Snapshot iso is the other level you could consider. It is the only other read-consistent iso level besides serializable. I say consider because I have never looked at...

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

  • RE: Change FillFactor back to 0 on DB

    I always use PerfMon, not sure if it's available in a DMV. If you find a DMV/F please post back 😀

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

  • RE: Double Insert Possible ?

    Serializable would keep you from getting dups. It is super max lockdown though so using it would defeat the purpose of running two instances of your code as it is...

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

  • RE: Change FillFactor back to 0 on DB

    SkyBox (6/26/2011)


    opc.three (6/24/2011)


    No problem. I am curious now though, because a default of 100 is not really appropriate for most shops IMO...I usually change the default to 90 on all...

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

  • RE: SQL Query with MAX Aggregate Function

    You're welcome 🙂

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

Viewing 15 posts - 5,836 through 5,850 (of 7,164 total)