Forum Replies Created

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

  • RE: Duplicate records

    You will probably get as many answers to that as you get posts. It would help a bunch if you could provide an example of how your table is...

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

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

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

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

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

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

  • RE: Using Temporary Tables with SSIS

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

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

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

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

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

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

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

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

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