Viewing 5 posts - 1 through 5 (of 5 total)
Thanks Grant Fritchey.
Can you please complete my example & give solution for 3NF.
December 28, 2010 at 8:40 am
By keeping NOT NULL, sql server has to check for NOT NULL before insertion of each row. so that's my question whether it would increase performance & would be it...
December 1, 2010 at 8:29 am
Cris,
Do you mean query 2 will run fast than query 1
Query1
UPDATE tb_Transaction
SET n_TransactionID = 0
FROM tb_Transaction A
INNER JOIN tb_Manager B
ON A.n_ManagerNo = B.n_ManagerNo
LEFT OUTER JOIN tb_TransactionHistory C
ON A.n_TransactionNo = C.n_TransactionNo
WHERE...
November 30, 2010 at 8:45 am
Its all right but i want to know the techniques to handle concurrency i.e. Lost updates
September 20, 2010 at 9:57 am
Hi,
The expected level of concurrency
- How many total users = 25
- How many users actually hitting the database at the same time = 10
- How many users actually hitting the...
September 19, 2010 at 12:02 am
Viewing 5 posts - 1 through 5 (of 5 total)