Forum Replies Created

Viewing 15 posts - 18,586 through 18,600 (of 26,489 total)

  • RE: Are the posted questions getting worse?

    Roy Ernest (10/28/2009)


    I got into an accident yesterday. A four car pile up. Thankfully no one got hurt bad. My whole body is sore. Hit my chest badly on the...

  • RE: I can't seem to figure this out: view and query

    foxjazz-962651 (10/28/2009)


    I figured out a way around it.

    Okay, since you did ask for help, care to enlighten us with your solution? Others may benefit.

  • RE: TSQL using a wildcard in a where clause with dynamic sql

    Make the following changes to the code I provided:

    set @incode = '%' + 'B01' + '%'

    --set @incode = '%' + (select top 1 code from anotherTable where USERID=@PersonId) + '%'

  • RE: Insert not commiting?

    Garadin (10/28/2009)


    CooLDBA (10/28/2009)


    There is no trigger.

    I figure out.

    Thanks for replying.

    And.... what did you figure out?

    Agreed. Forum etiquette says you should post any resolution you come up with if you...

  • RE: TSQL using a wildcard in a where clause with dynamic sql

    You may want to spend a little time reading about sp_executesql in BOL (Books Online). Based on the example there this is the code I came up with, but...

  • RE: time formats

    Need to ask why? Presentation of datetime values should be handled by the UI.

  • RE: Insert not commiting?

    Is there a trigger on the dbo.Lead table that may be causing a rollback of the transaction? Are you getting any kind of error message?

  • RE: "There is insufficient system memory to run this query."

    Flo,

    You indicated that this is an x86 version (32-bit) of SQL Server 2005 and that PAE is enabled on the OS, is AWE enabled for SQL Server 2005?

    Is the server...

  • RE: Database ID changes when restoring DB and SSRS reports fail as a result

    robin-892784 (10/28/2009)


    This restore does drop the old DB and restores the new one...unfortunately I can't alter the restore method.

    I have to ask, but why can't you modify the restore method?...

  • RE: Vet a QOD?

    Gift Peddie (10/27/2009)


    Lynn,

    That is very good example but you will find most T-SQL developers write the old one even in SQL Server 2005 and 2008 and SQL Server in most...

  • RE: Vet a QOD?

    Gift Peddie (10/27/2009)


    Only with regard to INNER JOINs. The old style OUTER JOINs are not supported in SQL Server 2005 and later (compatibility mode 90 and >).

    I am not talking...

  • RE: Vet a QOD?

    Gift Peddie (10/27/2009)


    I had a multi-table query with a left join against some of the tables, one table in particular was not referenced (yet) in the select nor in...

  • RE: The Value of Experience

    I have to agree that experience is extremely helpful. You learn about things that you may not have known about otherwise. I have experience in computer operations, systems...

  • RE: Are the posted questions getting worse?

    Alvin Ramard (10/27/2009)


    Jack Corbett (10/27/2009)


    Thanks Jon. I think I've seen it before, but couldn't remember. Just feels weird typing jcrawf02 when replying or referring to you especially in...

  • RE: Trying to write trigger and fix errors in trigger to compare fields in 2 tables

    J-F Bergeron (10/27/2009)


    Well, the first thing I saw was the multi cross join you have between the deleted, inserted, and your table, in your select, in the trigger. Next is...

Viewing 15 posts - 18,586 through 18,600 (of 26,489 total)