Viewing 15 posts - 781 through 795 (of 1,518 total)
noeld (1/6/2009)
January 6, 2009 at 1:12 pm
GilaMonster (1/6/2009)
Marios Philippopoulos (1/6/2009)
DECLARE @ActionType char(1)SELECT @ActionType = CASE
...
January 6, 2009 at 12:57 pm
Regarding my earlier posting:
Having the trigger takes the onus away from the developers of remembering to include the right code in all their sproc code. The trigger is part of...
January 6, 2009 at 12:45 pm
GSquared (1/6/2009)
January 6, 2009 at 12:31 pm
GilaMonster (1/6/2009)
Marios Philippopoulos (1/6/2009)
Is there a more efficient way of doing this than using a trigger?
The only other way requires that all access to the table is via known stored...
January 6, 2009 at 12:19 pm
GilaMonster (1/6/2009)
Marios Philippopoulos (1/6/2009)
DECLARE @ActionType char(1)SELECT @ActionType = CASE
...
January 6, 2009 at 10:28 am
Using the method in my previous posting, I found the culprit: it is an UPDATE trigger on a large table.
January 6, 2009 at 8:02 am
Thank you all for your input.
According to this link - http://www.microsoft.com/technet/prodtechnol/sql/2005/workingwithtempdb.mspx#E4CAC - the features generating version-store records in tempdb are:
• Snapshot isolation
• Read committed snapshot isolation (RCSI)
• Online...
January 4, 2009 at 8:04 am
Piotr Rodak (1/3/2009)
Have you tried to select from sys.dm_tran_version_store?Regards
Piotr
I took a look at http://msdn.microsoft.com/en-us/library/ms186328(SQL.90).aspx. I need to get session and task-level info on the process that gives rise to the...
January 3, 2009 at 9:13 pm
Thank you both, I'll have a look at your suggestions.
January 3, 2009 at 9:03 pm
Luke L (12/31/2008)
December 31, 2008 at 11:04 am
I found the problem.
I was somehow missing the following 2 registry entries. After adding, the VSS bindings are restored.
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\SourceSafe\SCCServerName - value: Microsoft Visual SourceSafe
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\SourceSafe\SCCServerPath - value: path for file ssscc.dll
See...
December 31, 2008 at 11:03 am
DBADave (12/29/2008)
Is the server you had a problem with also on the SAN?
Yup, but it's not clustered.
December 29, 2008 at 1:48 pm
DBADave (12/29/2008)
December 29, 2008 at 1:43 pm
DBADave (12/29/2008)
December 29, 2008 at 1:33 pm
Viewing 15 posts - 781 through 795 (of 1,518 total)