Forum Replies Created

Viewing 15 posts - 1,306 through 1,320 (of 3,232 total)

  • RE: I have been hacked; how to strip values

    Depending on how big your table is, you may want to consider re-building it by moving the 'good' data over into a new table instead of stripping out the bad...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Using Temporary Tables with SSIS

    Jeremy Giaco (7/22/2009)


    John Rowan (7/21/2009)


    I'm in agreeance with the others. Why do you think you need a temporary table for SSIS?

    There are a lot of situations....We had a ton...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Need some Cursor help...well I think it's a cursor I need

    Ah, my bad. I didn't see that you wanted just the top 10 for each one. I was thinking you wanted to generate 10 rows for each row....

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Possible Memory Issue

    Jeffrey Williams (7/21/2009)


    John Rowan (7/21/2009)


    Guys, 2147483647 is not 2 TB. The default value for Max Server Memory(MB) is 2147483647, which is 2 GB. I know, I know the...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Lookup tasks

    Your data flow looks fine to me. Are you sure that the failure is not because the Type value that the lookup is searching for does not exist? ...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Possible Memory Issue

    Guys, 2147483647 is not 2 TB. The default value for Max Server Memory(MB) is 2147483647, which is 2 GB. I know, I know the counter should be MB,...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Using Temporary Tables with SSIS

    I'm in agreeance with the others. Why do you think you need a temporary table for SSIS?

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Need some Cursor help...well I think it's a cursor I need

    What is the structure of the table that you need to populate? What do you need in the table, just the DOCID and a Sequence (1-10) number?

    By...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Possible Memory Issue

    Your SQL Server is only set up to use 2 GB so I'm sure it is not using 95-98%. Check the Total/Target SQL Server Memory counters to verify the...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Compare columns if null

    COALESCE searches through the list of values and returns the first non NULL value. So, SELECT COALESCE(NULL,NULL,NULL,1) would return 1. In the code I posted, when both columns...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Compare columns if null

    NULLs represent unknown values. So NULL is not equal to NULL because both values are unknown - how can they be equal. You need logic in your compare...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Foreign key and SSIS

    Use a Lookup transformation in your data flow. Use the values in the file to lookup the FK value in your second table.

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: How to add values into a variable?

    The code is not working in the proper way.

    What is it doing, are you getting an error? It would help if you could post your code, sample data, and...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: SQL While Loop

    If you'd like help improving the performance of this update, post your table DDL and the Cursor SELECT. This looks like it can be done in a single update...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: format of birthdate

    First, I'll give you the blanket warning that storing dates as varchars is just plain bad practice. I'm sure, just like anyone else, you're working with a design that...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

Viewing 15 posts - 1,306 through 1,320 (of 3,232 total)