Viewing 15 posts - 1,006 through 1,020 (of 1,518 total)
Grant Fritchey (7/22/2008)
I guess...
August 1, 2008 at 12:44 pm
Jonathan Kehayias (8/1/2008)
DECLARE @InstanceName varchar(100),
@InstanceLocation varchar(100),
@InstancePath varchar(100)
SELECT @InstanceName = convert(varchar, ServerProperty('InstanceName'))
EXEC master..xp_regread @rootkey='HKEY_LOCAL_MACHINE',
@key='Software\Microsoft\Microsoft SQL Server\Instance Names\SQL',
@value_name=@InstanceName,
...
August 1, 2008 at 12:31 pm
I think enabling Snapshot Isolation Read Committed would solve your problem.
But there are other implications to enabling this isolation level, so you will have to test carefully before implementing in...
August 1, 2008 at 12:24 pm
Jonathan Kehayias (7/23/2008)
HKLM\Software\Microsoft\Microsoft...
August 1, 2008 at 12:02 pm
Don't forget about your tempdb data files.
Those need to be separated from the rest: separate disk array, device etc. (I'm not clear on this terminology).
August 1, 2008 at 11:12 am
vasaharshit (8/1/2008)
Thanks a lot!!!
Just one confirmation needed i will have to create this table before right UpdateDBStatsStatus?
and i will have to run it once in a day,right?
so...
August 1, 2008 at 11:08 am
PaulB (8/1/2008)
August 1, 2008 at 10:47 am
The datafiles piece, yes.
But don't rely on that link for SQL 2005, it is outdated. For example, implementing trace flag -T1118 is not applicable.
Check out these links instead:
Configure SQL Server...
August 1, 2008 at 10:36 am
vasaharshit (8/1/2008)
Thanks a lot Mr or Mrs. 500 !!!i got some result but the probleme is i am not able to analyze it.
where is the difficulty?
August 1, 2008 at 10:31 am
vasaharshit (8/1/2008)
I have near about 1300 tables i just want to check which tables are updated or have new rows added ....
...
August 1, 2008 at 10:08 am
Marios Philippopoulos (8/1/2008)
i6004835 (8/1/2008)
August 1, 2008 at 5:31 am
i6004835 (8/1/2008)
August 1, 2008 at 5:17 am
i6004835 (8/1/2008)
August 1, 2008 at 5:02 am
Carl Federl (7/31/2008)
In sysprocesses I see lastwaittype: PAGELATCH_SH and waitresource: 13:1:6396860.
A bit before the query completes execution I see lastwaittype: PAGEIOLATCH_SH and waitresource: 2:1:274.
I know the first number is the...
July 31, 2008 at 8:15 pm
OK, here is the latest info. For the longest time, the lastwaittype is PAGELATCH_SH and waitresource is 13:1:6275751.
I have been able to find the table and index this resource corresponds...
July 31, 2008 at 6:30 pm
Viewing 15 posts - 1,006 through 1,020 (of 1,518 total)