Viewing 10 posts - 256 through 265 (of 265 total)
you can run DBCC FREEPROCCACHE it removes all elements from the procedure cache.
To verify it clears procedure cache run DBCC PROCCACHE
Prakash
May 8, 2002 at 4:02 am
Now after running for 36 hours that tasks finished. The concern was wait time was shown as 98767000 miliseconds for some threads while for other threads are showing 51000 miliseconds....
May 7, 2002 at 11:16 pm
It's non clustered indexes that if create on different disk gets benifitted(conditional: if the data required to read or write (disk I/O) is not enough for the disk.)
Clustered index should...
May 7, 2002 at 9:00 am
Service pack 2 is released.....
I guess to start with you should use profiler to capture events and then analyze the events where it's taking long......
Cheers,
Prakash
May 6, 2002 at 4:42 am
Thanks to all,
I checked with all this stuff this being very helpful.
Prakash
May 6, 2002 at 4:30 am
Some thoughts:
Can't you use distributed Partitioned vievs I guess if fits to ur needs, this is best.
Regarding tables if you are reading lot of data then it's good to place...
May 1, 2002 at 1:25 am
If you want to create your own procedures for a particular requirement instead of the functionality given.
Better use sp_helptext on the procedure in master to get the procedure...
May 1, 2002 at 12:14 am
It's a datawarehouse of bank...
Basically when a single procedure is run it takes some two to three hours while if we run it parallaly with some other processes it get...
April 30, 2002 at 11:52 pm
Compile this procedure this will give you enough information about locks.......
Cheers,
Prakash
drop proc ph_blocked_details
go
create proc ph_blocked_details as
DECLARE @BLOCKED_SPID INT,
@Blocking_SPID INT,
@HOSTNAME_BlockedProccess varchar(50),
@PROGRAM_NAME_BlockedProccess varchar(50),
@HOSTNAME_BlockingProccess varchar(50),
@PROGRAM_NAME_BlockingProccess varchar(50),
@dbNameOfBlocked varchar(4000),
@dbNameOfBlocking varchar(4000),
@statusOfBlocked varchar(4000),
@statusOfBlocking ...
April 30, 2002 at 3:38 am
Check performance monitor for disk queue length ,total processor and buffer cache
If disk queue length is more than 2 per disk in array then Disk I/O is culprit
If total processor...
April 30, 2002 at 3:33 am
Viewing 10 posts - 256 through 265 (of 265 total)