Forum Replies Created

Viewing 15 posts - 271 through 285 (of 383 total)

  • RE: C:\ drive full in sql server box

    Thank you, i am a little skeptical about installing third party software in the box, is there another way? , also i checked this morning and in my temp folder...

  • RE: C:\ drive full in sql server box

    yes i went to the temp folder and it is empty and also showing 0 mg, i also clicked on the show hidden files and nothing. :ermm:

  • RE: Help with Trim

    Thank you so much! you have no idea how much i apreciate it. 😀

  • RE: Help with Trim

    so say I have this in my table

    'ComputerAA1'

    and someone tries to insert this

    'ComputerAA1SPACE' --they will get a duplicate error for the constraint

    but if they try to insert this...

  • RE: Help with Trim

    would the RTRIM function also get rid of the whitespaces like tab?

  • RE: Help with Trim

    I get an empty set when running your query.

    Another example: i found two productnames:

    "ComputerAA1" and "ComputerAA1 "

    I tried to do uan update to the second one

    Update Products

    set...

  • RE: Help with Trim

    i get SQL_Latin1_General_CP1_CI_AS

  • RE: Help with Trim

    queries not returning data are for example as follows

    SELECT p.productname

    FROM Products P

    WHERE p.productname= 'Computer233-A' and...

  • RE: Help with Trim

    it is a varchar (40).

  • RE: number of locks

    yes, it does! thank you so much.

  • RE: transaction issue

    yes thank you!, i just need to figure out which one will work better with my transaction, your approach or the other one....

    SET TRANSACTION ISOLATION LEVEL SERIALIZABLE

    GO

    BEGIN TRANSACTION

    Select.....

    Updates...

    Thank...

  • RE: transaction issue

    thank you so much for your knowledge. 🙂

  • RE: transaction issue

    thank you, in your opinion this one is better than using with (rowlock) or WITH (TABLOCK)?

  • RE: transaction issue

    the serializable isolation should be put in my select transaction or in the transaction that does the insert?

  • RE: transaction issue

    thank you, sounds exactly of what i need

    UPDATE Production.Product

    WITH (UPDLOCK)

    SET ListPrice = ListPrice * 1.10

    WHERE ProductNumber LIKE '00'

    If i only do a select statement then i would need to...

Viewing 15 posts - 271 through 285 (of 383 total)