Viewing 15 posts - 271 through 285 (of 383 total)
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...
May 23, 2008 at 6:54 am
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:
May 22, 2008 at 8:35 pm
Thank you so much! you have no idea how much i apreciate it. 😀
May 21, 2008 at 7:18 pm
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...
May 21, 2008 at 3:52 pm
would the RTRIM function also get rid of the whitespaces like tab?
May 21, 2008 at 3:17 pm
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...
May 21, 2008 at 1:39 pm
queries not returning data are for example as follows
SELECT p.productname
FROM Products P
WHERE p.productname= 'Computer233-A' and...
May 21, 2008 at 12:45 pm
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...
May 20, 2008 at 9:04 pm
thank you, in your opinion this one is better than using with (rowlock) or WITH (TABLOCK)?
May 20, 2008 at 11:44 am
the serializable isolation should be put in my select transaction or in the transaction that does the insert?
May 20, 2008 at 11:38 am
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...
May 20, 2008 at 11:22 am
Viewing 15 posts - 271 through 285 (of 383 total)