Viewing 15 posts - 376 through 390 (of 404 total)
You can use sp_configure to set max server memory.
sp_configure 'Max server memory', value
reconfigure
As Ps said, 64 bit is not affected by AWE settings. Once you have configured the...
June 8, 2009 at 11:39 pm
I think what Gail said is correct. You have to use Profiler to identify which all queries are I/O intensive.
Meanwhile if you have page life expectancy going down for...
June 8, 2009 at 11:07 pm
simply create a variable
declare @DelString varchar(max)
While @@fetch_status =0
@DelString = ',' + @DelString
Fetch next from cursor into Cursor variable
June 8, 2009 at 7:21 am
In master execute
select * from sysperfinfo where counter_name like '%Log growth%'
This will give total number of log growths
June 8, 2009 at 7:15 am
There is no acceptable number of pages as such. It depends on the environment you have.
SQL server loads a page into memory when its first accessed. Subsequent requests...
June 8, 2009 at 7:02 am
Once you take a log backup, Its safe to shrink the log file
Yes you can shrink the file to a fixed size
DBCC SHRINKFILE('filename',SizeInMb)
eg DBCC SHRINKFILE('prodLog',1024)
For future, monitor the log file...
June 8, 2009 at 6:53 am
Thanks a lot.
Sorry for late reply
Were your physical disk counters for each individual drive?
Yes. My counters where for each individual drives. I noticed that the spikes where more frequent...
June 8, 2009 at 6:32 am
That only works for 2 DMVs - sys.dm_os_latch_stats and sys.dm_os_wait_stats. No other DMV can be cleared using that.
Yes. I thought that was obvious from Gail's previous post. I just meant...
June 8, 2009 at 6:28 am
Will running Rebuilding indexes maintenance plan, decrease the number of deadlocks by any chance?
Rebuilding index will removes index fragmentation. Fragmentation affects performance. Anything you do to speed up your queries...
June 4, 2009 at 6:34 am
ALLOW_PAGE_LOCKS can but may not lead you to deadlocks. However if you have a very busy OLTP system, page level locks hits concurrency. But remember, if you disable this there...
June 4, 2009 at 5:48 am
DBCC SQLPERF("dmvname",CLEAR)
eg: DBCC SQLPERF("sys.dm_os_latch_stats" , CLEAR)
June 4, 2009 at 5:29 am
Congratulations SSC, on this great achievment. Three cheers to all the ppl who are eager to share their knowledge.
January 28, 2009 at 10:16 pm
How much varied your parameters are?
If it varies a lot, sometimes cached execution plans are not as useful
you can recompile it each time.
But you can tune the query by looking...
January 19, 2009 at 11:52 pm
You have written the query right. If you want just the client columns use subquery
You can use select distinct client.* also
January 19, 2009 at 11:04 pm
Viewing 15 posts - 376 through 390 (of 404 total)