Forum Replies Created

Viewing 15 posts - 16 through 30 (of 271 total)

  • RE: LOOKUP ISSUE

    The SSIS lookup task is case sensitive when it does comparisons, and there is a reasonable chance your database is set to a case insensitive collation. That would mean the...

  • RE: SQL Disk Error

    I can see no error messages in any of those images - Can you post the exact text of the message you are seeing please?

    I would suggest you post...

  • RE: Procedure or function not working correctly

    Can you post the definition of 'NEWTABLE' as used in your example, and when you say anything is passed in - can you show a call to the function that...

  • RE: syntax for using /SET for SSIS config file in SQL 2008?

    Just to say you are not alone in finding the current behaviour odd. There must have been some reason for it, but I just cannot understand what benefit there is...

  • RE: join tabel

    Can you explain a little more what you are actually trying to do? You seem to have 3 separate queries there - what final result do you want?

    Mike John

  • RE: Move currentdate+1 to field when null?

    When you say "move" - do you mean update the dischargedate in the table to currentdate + 1 or just treat it that way ion the where clause of this...

  • RE: performance tunning.

    There will be lots of things you can do.

    Can you post the table definitions (create table etc) index definitions, sample execution plan for how this query is being executed, and...

  • RE: which is better performance wise

    From what you are saying these different columns sound like should be of several different data types, such things as account balances, credit limits, date last ordered, date last accessed,...

  • RE: which is better performance wise

    I'm going to use the classic answer.

    "It Depends."

    if you ALWAYS want all columns retrieved together then a single table will be faster at getting everything compared with multiple tables.

    BUT in...

  • RE: DB Size Growing after moving fields

    Most likely is the space has not been reclaimed in the old table yet. If you have no clustered index on a table some operations can not free up the...

  • RE: Memory utilization is reaching more than 90% in sql server 2008

    I would have a read of the link Gail gave above. The others are not really answerable without knowing what else the server is running.

    As for explaining to client...

  • RE: Memory utilization is reaching more than 90% in sql server 2008

    SQL Server is designed to use as much memory as Windows will allow it, so unless you are experiencing problems elsewhere I would leave well alone.

    You "may" need to restrict...

  • RE: BEGIN TRY - Catch not working

    I have hit this myself in the past. It is not so much the catch that does not work - that handles errors that are raised just fine. However sp_start_job...

  • RE: Join on 2 tables where values are different

    Sorry for misreading the stars/quotes - eyes must be getting old!

    No reason I can think of for one or the other option not working - unless you actually have leading...

  • RE: Join on 2 tables where values are different

    Two quick options

    either

    select ..

    from a

    inner join b on a.col1 = '"' + b.col1 + '"'

    or

    select ..

    from a

    inner join b on replace(a.col1,'"','') = b.col1

    but either will...

Viewing 15 posts - 16 through 30 (of 271 total)