Viewing 15 posts - 4,411 through 4,425 (of 8,416 total)
DrJogalog (4/2/2010)
April 2, 2010 at 3:48 am
GilaMonster (4/2/2010)
It's perhaps better to say that they don't participate in transactions.
Or locking...that's something else that is often forgotten 🙂
Table variable changes are still logged, they have to be (all...
April 2, 2010 at 3:41 am
carl.anderson-1037280 (4/1/2010)
April 2, 2010 at 12:53 am
Rambler (4/1/2010)
I've come across Michelle Utford's script before - if I understand the note in the script excerpt, it will ignore heaps, right?
Right.
I cannot make any modifications to the databases...
April 2, 2010 at 12:49 am
matt stockham (4/1/2010)
April 2, 2010 at 12:41 am
Toby White (4/1/2010)
April 2, 2010 at 12:39 am
Daniel C (4/1/2010)
Regarding the concurrency while in SERIALIZABLE isolation level, you might wanna use this:ALTER DATABASE AdventureWorks SET ALLOW_SNAPSHOT_ISOLATION ON
But then of course you have to explicitly set the SNAPSHOT...
April 2, 2010 at 12:34 am
Daniel C (4/1/2010)
April 1, 2010 at 11:18 pm
Using a synonym would be my default choice here, since they were pretty much invented just for this type of scenario.
April 1, 2010 at 11:12 pm
CirquedeSQLeil (4/1/2010)
Thanks for the links Paul.
Actually, my advice is to read everything Craig F has ever written!
April 1, 2010 at 11:10 pm
The Dixie Flatline (4/1/2010)
Table variables aren't subject to logging.
Well...I know what you mean, but it's not literally true:
-- For the demo
USE tempdb;
-- Truncate the log
CHECKPOINT;
-- Show log records
-- (just LOP_BEGIN_CKPT...
April 1, 2010 at 11:08 pm
Lamprey13 (4/1/2010)
Think again:
...and think again, again:
http://blogs.msdn.com/craigfr/archive/2007/04/25/read-committed-isolation-level.aspx
...rows can be missed or double-counted at the default READ COMMITTED level too. It might surprise you that this can still happen at REPEATABLE...
April 1, 2010 at 10:48 pm
Grant Fritchey (4/1/2010)
GilaMonster (4/1/2010)
Now I have someone whining about my april fool's blog post. 🙁
Oh that was flipping sad.
I hope the schmuck finds your post every day for the rest...
April 1, 2010 at 11:46 am
Viewing 15 posts - 4,411 through 4,425 (of 8,416 total)