Forum Replies Created

Viewing 15 posts - 2,446 through 2,460 (of 5,103 total)

  • RE: Error: 15457, Severity: 0, State: 1

    I've seen this type of messages when monitoring tools change the 'show advanced options'  and forget to execute RECONFIGURE after it.

    because this is a server wide setting all that is...


    * Noel

  • RE: Returning data when no corresponding rows in second table

    You are welcome


    * Noel

  • RE: MULTIPLE SELECT

    Sushila, now I am feeling hurt ..."my friend" ??? .. THAT, is too painful to bear

    And you are...


    * Noel

  • RE: Poll #3

    A loooooooooooooooooooong time ago I saw Real Genius and it even though it was never popular I loved it because of the creative nature of the ideas portrayed

    Other of my...


    * Noel

  • RE: Returning data when no corresponding rows in second table

    move you where clause for the Referal Table into the join:

    Select p.DisplayName, count(r.ClientNumber) as 'Count'

    from Providers p

    left join Referral r

    on  p.ProviderNumber = r.ProviderNumber and

         p.Facility = r.Facility and

        ...


    * Noel

  • RE: identity column with values based on another column

    if you really want to control that behaviour you need to know what is going to happen when a delete comes along which you haven't replied yet, also what about historical...


    * Noel

  • RE: Bulk Update

    Juan use the UPDATE FROM as Steve posted it but without the where clause

    UPDATE t1

    SET FIELD1 = t2.FIELD1,

        FIELD2 = t2.FIELD2

    FROM table1 t1 JOIN...


    * Noel

  • RE: Precise DATEDIFF()

    have a look at DateDiff2 on this site


    * Noel

  • RE: Select CASE

    Excellent point Kenneth


    * Noel

  • RE: identity column with values based on another column

    I as well as PW believe this is more a presentation issue than anything else. you can make the column a normal Identity and the numbering can be handled in...


    * Noel

  • RE: Getting the latest values

    I am sure PW meant to join by item and date :

    Select Prices.*

    From Prices

    Inner Join

    (

      Select item, Max([Date]) As LastPriceDate

      From Prices

      Group...


    * Noel

  • RE: nvarchar to varchar

    hehe you knew that I was coming don't you

    There is a problem with that approach. Eventhough...


    * Noel

  • RE: nvarchar to varchar

    OK this is to help you with an starting point

    select 'ALTER TABLE ' + TABLE_NAME + '  ALTER COLUMN ' + COLUMN_NAME + ' varchar(' + cast( CHARACTER_MAXIMUM_LENGTH as varchar(4) ) +...


    * Noel

  • RE: Select CASE

    Gary,

    Two stored procedures for your consideration:

    exec sp_update_resume

    exec sp_distribute_resume

    Does not looks good after what you just said ( you should take care of your self


    * Noel

  • RE: sp_executesql and several outputs in store procs

    if what you mean by (,) between parameter.. is that you need to convert them then just do it befor the call:

    ex:

    declare @i int, @a int , @b-2 varchar(20), @c...


    * Noel

Viewing 15 posts - 2,446 through 2,460 (of 5,103 total)