Viewing 15 posts - 1,156 through 1,170 (of 2,052 total)
I guess the first is:
My computer->properties->advanced->performance->advanced
November 26, 2007 at 2:36 am
Have a look at
http://www.sql-server-performance.com/articles/per/advanced_sql_locking_p1.aspx
and http://www.sql-server-performance.com/tips/reducing_locks_p1.aspx
November 24, 2007 at 6:12 am
Failed to reserve contiguous memory of Size= 65536
Could be MemToLeaveArea is getting full. You can change the default from 256mb to 512mb with the -g switch
http://www.sqlnewsgroups.net/group/microsoft.public.sqlserver.server/topic1788.aspx
Overview of cumulative hotfixes for...
November 21, 2007 at 11:23 am
Have a look at:
http://www.sql-server-performance.com/tips/filegroups_p1.aspx
http://sqlblogcasts.com/blogs/tonyrogerson/archive/2006/08/17/948.aspx
November 21, 2007 at 4:40 am
You can use
DBCC DROPCLEANBUFFERS
Remarks
Use DBCC DROPCLEANBUFFERS to test queries with a cold buffer cache without shutting down and restarting the server.
and
DBCC FREEPROCCACHE
Remarks
Use DBCC FREEPROCCACHE to clear the procedure cache. Freeing...
November 20, 2007 at 4:54 am
Hello,
The latest articles recommend watching I/O latency performance counters instead of
queue length.
The high queue length can come of various reasons:
datagrowth, recent software update.
Have a look at
http://www.sql-server-performance.com/articles/audit/main.aspx (performance audit)
http://www.microsoft.com/technet/prodtechnol/sql/2000/maintain/sqlIObasics.mspx
for...
November 19, 2007 at 3:12 am
Access saves the tabledefinition when it is first linked.
Any change in the defintion may result in #deleted entries or not showing additional columns.
Some access-programs have vba-code that drop the old...
November 19, 2007 at 2:52 am
It surprises me too.
In the definitions where-clause of the view is
where permissions(831458882) & 1 = 1
Still have to decipher that.
November 9, 2007 at 5:19 am
Select AcctNbr,SubAcctNbr
from dbo.AcctEntry --> has 700,000 rows
Could be a full table scan or an index scan (on AcctNbr,SubAcctNbr)
Fast server:
Could have had those data in cache before (more memory)
Could have an...
November 9, 2007 at 5:00 am
*be aware that SP4 needs a hotfix if you are using AWE-memory parameters
*SP4 has a behaviour change in deciding which index to use. With comparisions you have to match the...
November 9, 2007 at 1:59 am
The only thing I had to change on replication was the batch-size used by the agents because of a slow subscriber.
October 29, 2007 at 1:48 pm
Have a look at the performance counter sql server target memory.
http://www.sql-server-performance.com/tips/performance_monitor_memory_counter_p1.aspx
October 29, 2007 at 1:45 pm
A restore normally restores permissions also.
Are you restoring to a single-user mode (restricted) or multiuser?
I had problems with permissions not being restored in restricted mode (only dbo permissions remained).
October 29, 2007 at 1:37 pm
Can you find the specific error?
It only starts deleting files after all the backups were succesfull.
October 29, 2007 at 1:35 pm
is a hard limit in msde 2000
http://www.petefreitag.com/item/194.cfm
sql server 2005 express doesn't has that limitation
http://databases.aspfaq.com/database/what-are-the-limitations-of-msde.html
October 28, 2007 at 12:23 pm
Viewing 15 posts - 1,156 through 1,170 (of 2,052 total)