Forum Replies Created

Viewing 15 posts - 406 through 420 (of 3,232 total)

  • RE: Today's Random Word!

    taco

  • RE: Today's Random Word!

    dbowlin (7/9/2010)


    Steve Jones - Editor (7/9/2010)


    dbowlin (7/9/2010)


    Like most of you I probably won't stop 'till I drop. Even then the bills may keep coming.

    I am not sure whether to...

  • RE: How to Decrypt Files with PGP using SSIS

    Is there an update on your progress that you can give us?

  • RE: Today's Random Word!

    CirquedeSQLeil (7/7/2010)


    crookj (7/7/2010)


    Ray K (7/7/2010)


    Vacation (which ended yesterday -- what'd I miss?)

    Vacation - wish I was starting one 🙁

    Joe

    Just ended one and really need another.:-D

    DITTO....I've been back home less than...

  • RE: Today's Random Word!

    babyback

  • RE: Today's Random Word!

    hunch

  • RE: Spitting out XML in specific format

    Using my example from before:

    DECLARE @Vendors TABLE (xid varchar(2), name varchar(20), internal bit)

    INSERT INTO @Vendors

    SELECT 'V1', 'Corporate University', 1 UNION ALL

    SELECT 'V2', 'Learning Provider', 0

    DECLARE @Companies TABLE (xid...

  • RE: Today's Random Word!

    Freedom

  • RE: Partitioning large tables for performance.

    I agree with Paul, Steve and the rest. Partitioning is not the right tool for this job unless your users table has hundreds of millions of rows in it....

  • RE: SQL Join Help

    DECLARE @Orders TABLE (OrderID int, ClientID int)

    INSERT INTO @Orders

    SELECT 1, 234 UNION ALL

    SELECT 2, 234 UNION ALL

    SELECT 3, 234 UNION ALL

    SELECT 4, 200

    DECLARE @Items TABLE (ItemID int, OrderID int)

    INSERT INTO...

  • RE: Deadlocking issue

    I would recommend identifying the cause of the deadlocks and resolving it. There is most likely something inside the application code that is causing the deadlocks.

    There is...

  • RE: Spitting out XML in specific format

    In the meantime, consider this example:

    DECLARE @Vendors TABLE (xid varchar(2), name varchar(20), internal bit)

    INSERT INTO @Vendors

    SELECT 'V1', 'Corporate University', 1 UNION ALL

    SELECT 'V2', 'Learning Provider', 0

    DECLARE @Companies TABLE (xid...

  • RE: Spitting out XML in specific format

    Can you provide us with the DDL for the tables involved along with some sample data? See the link in my signature line for posting sample data.

  • RE: How to Decrypt Files with PGP using SSIS

    dg227 (6/30/2010)


    Good point: for any command line-type tasks, I always work with them outside of SSIS to nail down the exact syntax that I need (including the relevant flags/switches) to...

  • RE: How to Decrypt Files with PGP using SSIS

    dg227 is exactly correct in that you'll want to use variables to dynamically configure a task.

    With that said, you still need to get the syntax down for your decrypt command....

Viewing 15 posts - 406 through 420 (of 3,232 total)