Welcome to Romanian SQL Server User Group Sign in | Join | Help

Browse by Tags

All Tags » Troubleshooting   (RSS)
with xmlnamespaces (default 'http://schemas.microsoft.com/sqlserver/2004/07/showplan') select x.value(N'@NodeId',N'int') as NodeId , x.value(N'@PhysicalOp', N'sysname') as PhysicalOp , x.value(N'@LogicalOp', N'sysname') as LogicalOp , ox.value(N'@Database',N'sysname') Read More...
You probably can easily answer a question like ‘What columns does this table have?’. Whether you use the SSMS object explorer, or sp_help, or you query sys.column, the answer is fairly easy to find. But what is I ask ‘What are the physical Read More...
Certain SQL Server query execution operations are calibrated to perform best by using a (somewhat) large amount of memory as intermediate storage. The Query Optimizer will choose a plan and estimate the cost based on these operators using this memory Read More...
A new error started showing up in SQL Server 2008 SP2 installations: The database cannot be opened because it is version 661. This server supports version 662 and earlier. A downgrade path is not supported. 661 sure is earlier than 662, so what seems Read More...
In a stackoverflow.com question the user has asked how come a SELECT statement could own a U mode lock? The deadlock indeed suggests that the deadlock victim, a SELECT statement, is owning an U lock on the PK_B index. Why would a SELECT own an U lock? Read More...
Some say performance troubleshooting is a difficult science that blends just the right amount of patience, knowledge and experience. But I say forget all that, a few bullet points can get you a long way in fixing any problem you encounter. Is more important Read More...
Copyright Remus Rusanu 2010. Visit the original article at http://rusanu.com/2010/01/12/what-deprecated-features-am-i-using/   select instance_name as [Deprecated Feature] , cntr_value as [Frequency Used] from sys.dm_os_performance_counters Read More...
Copyright Remus Rusanu 2009. Visit the original article at http://rusanu.com/2009/11/22/system-pagefile-size-on-machines-with-large-ram/  Irrelevant of the size of the RAM, you still need a pagefile at least 1.5 times the amount of physical Read More...
Copyright Remus Rusanu 2009. Visit the original article at http://rusanu.com/2009/07/24/fix-slow-application-startup-due-to-code-sign-validation/  Sometimes you are faced with applications that seem to take ages to start up. Usually they freeze Read More...
Copyright Remus Rusanu 2009. Visit the original article at http://rusanu.com/2009/05/29/lockres-collision-probability-magic-marker-16777215/  @jrowlandjones blogged about a dubious deadlock case. I recommend this article as is correct and presents Read More...
Copyright Remus Rusanu 2009. Visit the original article at http://rusanu.com/2009/05/16/readwrite-deadlock/  How does a simple SELECT deadlock with an UPDATE? Surprisingly, they can deadlock even on well tuned systems that does not do spurious Read More...
Copyright Remus Rusanu 2009. Visit the original article at http://rusanu.com/2009/01/19/clr-memory-leak/  On a recent client engagement I had to investigate what appeared a to be a memory leak in a managed application. The program was running Read More...
Copyright Remus Rusanu 2008. Visit the original article at http://rusanu.com/2008/11/26/replacing-service-certificates-that-are-near-expiration/  Service Broker services use certificates for authenticating message origin and for encrypting messages. Read More...
Copyright Remus Rusanu 2008. Visit the original article at http://rusanu.com/2008/10/28/event-id-833-io-requests-taking-longer-than-15-seconds/  The error 833 is usually associated with hardware or system driver problems and the typical recommendation Read More...
Copyright Remus Rusanu 2008. Visit the original article at http://rusanu.com/2008/08/25/certificate-not-yet-valid/  So you are running into a blocking issue, try to find a solution and you gets back a reply like ‘Sorry, I cannot repro Read More...
More Posts Next page »