User Remus Rusanu - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T14:54:21Z http://stackoverflow.com/feeds/user/105929 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1871075/how-to-compare-security-setting-access-rights-between-2-sql-database/1871106#1871106 0 Answer by Remus Rusanu for How to compare security setting/access rights between 2 SQL Database? Remus Rusanu 2009-12-09T01:37:00Z 2009-12-09T01:37:00Z <p>Non-priviledged accounts can only see their own session from sp_who/sp_who2. In particular, code running under the database scopped impersonation context (EXECUTE As OWNER) will not be able to see any other session. </p> <p>See <a href="http://rusanu.com/2006/03/01/signing-an-activated-procedure/" rel="nofollow">Signing an activated procedure</a> for an example how to elevate the database impersonation context to the server (that example is actually exactly about reading the sessions DMVs).</p> <p>If I'd venture a guess, the difference between production and development is that in production the database SAFEQA is not marked as TRUSTWORTHY.</p> <p>See also <a href="http://msdn.microsoft.com/en-us/library/ms188304.aspx" rel="nofollow">Extending Database Impersonation by Using EXECUTE AS</a> for more details.</p> http://stackoverflow.com/questions/1862071/how-to-set-authentication-methods-in-iis-programattically/1862091#1862091 1 Answer by Remus Rusanu for How to set Authentication Methods in IIS programattically Remus Rusanu 2009-12-07T18:53:45Z 2009-12-09T00:05:12Z <p>See <a href="http://technet.microsoft.com/en-us/library/cc754628%28WS.10%29.aspx" rel="nofollow">Configure Windows Authentication (IIS 7)</a>:</p> <pre><code>appcmd set config /section:windowsAuthentication /enabled:true | false </code></pre> <p>For IIS 6 probably WMI is the alternative:</p> <ul> <li><a href="http://msdn.microsoft.com/en-us/library/ms524913.aspx" rel="nofollow">Creating Sites and Virtual Directories, and Setting Properties Using WMI</a></li> <li><a href="http://msdn.microsoft.com/en-us/library/ms524328.aspx" rel="nofollow">IIsWebServiceSetting (WMI)</a> </li> <li><a href="http://msdn.microsoft.com/en-us/library/ms524513.aspx" rel="nofollow">AuthFlags</a> </li> </ul> http://stackoverflow.com/questions/1869753/maximum-size-for-a-sql-server-query-in-clause-is-there-a-better-approach/1869810#1869810 3 Answer by Remus Rusanu for Maximum size for a SQL Server Query? IN clause? Is there a Better Approach Remus Rusanu 2009-12-08T21:01:47Z 2009-12-08T23:59:29Z <p>Every SQL batch has to fit in the <a href="http://msdn.microsoft.com/en-us/library/ms143432.aspx" rel="nofollow">Batch Size Limit</a>: 65,536 * Network Packet Size.</p> <p>Other than that, your query is limited by runtime conditions. It will usually run out of stack size because x IN (a,b,c) is nothing but x=a OR x=b OR x=c which creates an expression tree similar to x=a OR (x=b OR (x=c)), so it gets very deep with a large number of OR. SQL 7 would hit a SO <a href="http://support.microsoft.com/kb/288095" rel="nofollow">at about 10k values in the IN</a>, but nowdays stacks are much deeper (because of x64), so it can go pretty deep.</p> <p><strong>Update</strong></p> <p>You already found Erland's article on the topic of passing lists/arrays to SQL Server. With SQL 2008 you also have <a href="http://msdn.microsoft.com/en-us/library/bb675163.aspx" rel="nofollow">Table Valued Parameters</a> which allow you to pass an entire DataTable as a single table type parameter and join on it. </p> <p>XML and XPath is another viable solution:</p> <pre><code>SELECT ... FROM Table JOIN ( SELECT x.value(N'.',N'uniqueidentifier') as guid FROM @values.nodes(N'/guids/guid') t(x)) as guids ON Table.guid = guids.guid; </code></pre> http://stackoverflow.com/questions/1870626/what-causes-this-ms-dtc-error-to-occur-sporadically-in-net/1870712#1870712 0 Answer by Remus Rusanu for What causes this MS DTC error to occur sporadically in .NET? Remus Rusanu 2009-12-08T23:53:45Z 2009-12-08T23:53:45Z <ul> <li><a href="http://support.microsoft.com/kb/918331" rel="nofollow">How to troubleshoot connectivity issues in MS DTC by using the DTCPing tool</a></li> <li><a href="http://support.microsoft.com/kb/926099" rel="nofollow">How to enable diagnostic tracing for MS DTC on a Windows Vista-based computer</a></li> </ul> http://stackoverflow.com/questions/1870240/security-for-requesting-temporary-logins/1870333#1870333 0 Answer by Remus Rusanu for Security for requesting temporary logins Remus Rusanu 2009-12-08T22:29:54Z 2009-12-08T22:29:54Z <p>The EXECUTE AS clause on the work procedure puts you into the 'execute as' cage, see <a href="http://msdn.microsoft.com/en-us/library/ms188304.aspx" rel="nofollow">Extending Database Impersonation by Using EXECUTE AS</a>. Because the EXECUTE AS of the procedure is an <strong>database principal</strong>, the execute as context will be trusted only inside the database.</p> <p>There are two workarounds, the 500lb sledge hammer of <code>ALTER DATABASE [SQLEmergencyLoginRequest] SET TRUSTWORTHY ON</code> or the surgical precission tool of code signing, see <a href="http://rusanu.com/2006/03/07/call-a-procedure-in-another-database-from-an-activated-procedure/" rel="nofollow">Call a procedure in another database from an activated procedure</a> for an example. I highly recommend the code signing approach:</p> <ul> <li>craete a certificate in SQLEmergencyLoginRequest</li> <li>sign the procedure</li> <li>drop the private key of the certificate to prevent future use for signing</li> <li>export the certificate</li> <li>import the certificate in master</li> <li>create a login derived from the certificate</li> <li>grant AUTHENTICATE on SERVER to the certificate derived login</li> <li>grant all other priviledges needed for the procedure to this derived login </li> </ul> <p>This would ensure that the procedure has all the needed priviledges to do its work, in any database. You have to redo the whole signing procedure every time you alter it.</p> http://stackoverflow.com/questions/1869886/is-it-possible-to-use-nets-transactionscope-with-sql-server-2005-without-allowi/1869962#1869962 1 Answer by Remus Rusanu for Is it possible to use .NET's TransactionScope with Sql Server 2005 without allowing promotion to DTC? Remus Rusanu 2009-12-08T21:27:17Z 2009-12-08T21:27:17Z <p>Two separate connections under the same TransactionScope <strong>must</strong> enroll into DTC. You can either:</p> <ul> <li>make sure you never open more than 1 connection under each transaction scope</li> <li>or override the current transaction scope with a new one when opening a new connection (thus breaking transactional consistency in the process...)</li> </ul> <p>You can't 'ignore' this aspect and leave it for later, transactional consistency is the fundation of all database operations and not some night-before-release afterthought. You must get this right <em>before</em> you write the very first line of code.</p> http://stackoverflow.com/questions/1869479/database-design-question-using-multiple-tables-or-xml/1869576#1869576 2 Answer by Remus Rusanu for Database design question, using multiple tables or XML Remus Rusanu 2009-12-08T20:19:41Z 2009-12-08T20:19:41Z <p>What database engine are we talking about?</p> <p>If is any of the commercial <strong>relational</strong> engines (SQL Server, Oracle, DB2, MySQL) then the best performance will come from using... relations. Tables, in other words. Indexes, foreign key constraints, this kind of stuff. While most have some XML support, it will not match relational performance. I can understand a discussion about shredding XML into tables vs. keeping it in XML blobs. But to model many-to-many relations and foreign keys as XML is as bad idea as I've seen one in quite few days (and I'm seeing bad ideas on a daily basis...). </p> <p>On the other hand if you are talking about some esoteric XML oriented database, let us know :)</p> http://stackoverflow.com/questions/1869409/debugging-sql-server-2008/1869444#1869444 1 Answer by Remus Rusanu for Debugging SQL Server 2008 Remus Rusanu 2009-12-08T19:59:52Z 2009-12-08T19:59:52Z <p>You can debug CLR procedures and functions from VS, see <a href="http://msdn.microsoft.com/en-us/library/zefbf0t6.aspx" rel="nofollow">Debugging SQL</a></p> <p>Transact-SQL is a different story, it needs special configuration steps and can be debugged from a special tool, see <a href="http://msdn.microsoft.com/en-us/library/cc646008.aspx" rel="nofollow">Using the Transact-SQL Debugger</a>.</p> http://stackoverflow.com/questions/1869356/fast-atomic-table-replacement/1869397#1869397 4 Answer by Remus Rusanu for Fast, Atomic Table Replacement Remus Rusanu 2009-12-08T19:50:57Z 2009-12-08T19:50:57Z <p>Nobody should see anything in the middle. If they do, it means you're doing dirty reads and you deserve every bad result yout get.</p> <p>You can use ALTER TABLE ... SWITCH PARTITION ... to 'switch' in the content of another table (must have identical structure and constraints). The operation is as atomic and fast as it gets, it simple changes some metadata pointers around so the content 'magically' moves into the destination table. See <a href="http://technet.microsoft.com/en-us/library/ms191160.aspx" rel="nofollow">Transferring Data Efficiently by Using Partition Switching</a>. Neither the source nor the destination do not need to be explicitly 'partitoned' tables, the switch operation works on normal, single partitioned, tables too,.</p> http://stackoverflow.com/questions/1865979/sql-express-iis-a-database-wont-attach-if-you-manually-detached-it/1869296#1869296 0 Answer by Remus Rusanu for SQL Express & IIS - A database won't attach if you manually detached it? Remus Rusanu 2009-12-08T19:32:15Z 2009-12-08T19:32:15Z <p>When you ask a database to be attached on-the-fly to a SQL Express instance using the AttachDBFileName connections string the application will not connect to the SQL Expres sinstance at all, but instead it will connect to a <strong>child</strong> instance, which is an new instance created specificaly for the user requesting the attach operation. See <a href="http://msdn.microsoft.com/en-us/library/bb264564%28SQL.90%29.aspx" rel="nofollow">SQL Server 2005 Express Edition User Instances</a>. This child instance will attach the database and will continue to run for up two one hour, after which it will shut itself down.</p> <p>When you try to connect from 'enterprise manager' you will not be able to connect to the child instance (is realy complicated to connect explicitly to one, so you cannot accidentaly do it), you are connecting to the <strong>parent</strong> instance and messing with the database. </p> <p>To summarize, either stick with the RANU model and use AttachDBFileName, or use a normal database operations mode and manage the database from the SSMS. Don't mix the two.</p> http://stackoverflow.com/questions/1863908/sending-emails-from-sql-sever/1864004#1864004 1 Answer by Remus Rusanu for Sending emails from sql sever Remus Rusanu 2009-12-08T01:26:57Z 2009-12-08T01:26:57Z <p>Using the <a href="http://msdn.microsoft.com/en-us/library/ms175887.aspx" rel="nofollow">Database Mail</a> feature and the built-in procedure <a href="http://sp%5Fsend%5Fdbmail" rel="nofollow">sp_send_dbmail</a>.</p> http://stackoverflow.com/questions/1863750/does-sql-server-even-look-at-a-table-when-joining-on-a-variable-that-returns-fals/1863778#1863778 5 Answer by Remus Rusanu for Does SQL Server even look at a table when joining on a variable that returns false? Remus Rusanu 2009-12-08T00:16:12Z 2009-12-08T00:16:12Z <ul> <li>As a general rule, SQL <a href="http://rusanu.com/2009/09/13/on-sql-server-boolean-operator-short-circuit/" rel="nofollow">does not guarantee runtime boolean operator short-circuit</a>.</li> <li>The query plan would have to work for <em>any</em> value of @param because plans are reused between executions</li> </ul> <p>So while in a particular context you may find that the when @param has a different value then the outer join table may never be <em>probed</em>, you should not rely on it for correctness. Note that probe means that actual values are searched for in the table. The metadata information will <em>always</em> be checked. For example you cannot cheat and ask for a join to a table that doesn't exists.</p> <p>In particular, do not attempt to create a single query where there should be two different ones (one that joins, one that doesn't).</p> http://stackoverflow.com/questions/1863725/using-4-part-naming-to-do-insert-to-db2-from-sql-server-2005/1863737#1863737 1 Answer by Remus Rusanu for Using 4-part naming to do insert to DB2 from SQL Server 2005? Remus Rusanu 2009-12-08T00:02:39Z 2009-12-08T00:02:39Z <p>The 4 part name insert is a distributed transaction and the DB2 driver needs to enroll into it. See <a href="http://publib.boulder.ibm.com/infocenter/db2luw/v9/index.jsp?topic=/com.ibm.db2.udb.apdv.cli.doc/doc/t0024165.htm" rel="nofollow">Registering the IBM DB2 Driver for ODBC and CLI with the Microsoft DTC</a>.</p> http://stackoverflow.com/questions/1863717/time-stamp-in-dbml-is-solving-concurrency-issues-why/1863734#1863734 1 Answer by Remus Rusanu for Time Stamp in DBML is solving concurrency issues...why? Remus Rusanu 2009-12-07T23:59:54Z 2009-12-07T23:59:54Z <p>Without knowing the details of your system I would guess that is because SQL Server DATETIME has a resolution of 3 ms at best, giving a high probability for conflicts. TIMESTAMP is a counter in desquise and cannot conflict.</p> http://stackoverflow.com/questions/1863066/deleting-a-sql-row-ignoring-all-foreign-keys-and-constraints/1863357#1863357 1 Answer by Remus Rusanu for Deleting a SQL row ignoring all foreign keys and constraints Remus Rusanu 2009-12-07T22:28:31Z 2009-12-07T22:28:31Z <p>Yes, simply run </p> <pre><code>DELETE FROM myTable where myTable.ID = 6850 </code></pre> <p><strong>AND LET ENGINE VERIFY THE CONSTRAINTS</strong>. </p> <p>If you're trying to be 'clever' and disable constraints, you'll pay a huge price: enabling back the constraints has to verify <em>every row</em> instead of the one you just deleted. There are internal flags SQL keeps to know that a constraint is 'trusted' or not. You're 'optimization' would result in either changing these flags to 'false' (meaning SQL no longer trusts the constraints) or it has to re-verify them from scratch.</p> <p>See <a href="http://technet.microsoft.com/en-us/library/ms177456.aspx" rel="nofollow">Guidelines for Disabling Indexes and Constraints</a> and <a href="http://sqlblog.com/blogs/tibor%5Fkaraszi/archive/2008/01/12/non-trusted-constraints-and-performance.aspx" rel="nofollow">Non-trusted constraints and performance</a>.</p> <p>Unless you did some <strong>solid</strong> measurements that demonstrated that the constraint verification of the DELETE operation are a performance bottleneck, let the engine do its work.</p> http://stackoverflow.com/questions/1863057/why-is-my-table-valued-parameter-empty-when-reaching-the-database/1863233#1863233 2 Answer by Remus Rusanu for Why is my table-valued parameter empty when reaching the database? Remus Rusanu 2009-12-07T22:02:26Z 2009-12-07T22:12:48Z <p>Add this:</p> <pre><code>cmd.CommandType = CommandType.StoredProcedure; </code></pre> http://stackoverflow.com/questions/1862282/sql-server-get-view-creation-statement-for-existing-view/1862300#1862300 1 Answer by Remus Rusanu for Sql Server - Get view creation statement for existing view Remus Rusanu 2009-12-07T19:27:47Z 2009-12-07T19:27:47Z <p>It's in <a href="http://msdn.microsoft.com/en-us/library/ms175081.aspx" rel="nofollow">sys.sql_modules</a>. Other schema tables like INFORMATION_SCHEMA ones only contain the first 4000 characters of the definition (they truncate).</p> http://stackoverflow.com/questions/1859456/com-net-interop-winform-from-com-client/1862124#1862124 1 Answer by Remus Rusanu for COM - .NET Interop - Winform from COM client Remus Rusanu 2009-12-07T18:59:26Z 2009-12-07T18:59:26Z <p>You need to set your C++/MFC host to use <a href="http://msdn.microsoft.com/en-us/library/ms680112%28VS.85%29.aspx" rel="nofollow">apartment threading model</a> for the C# forms COM object. This will serialize all the calls on the proxy through the original thread that instantiated the COM object. You must also properly marshal the original interface between your threads in the C++/MFC code, using <a href="http://msdn.microsoft.com/en-us/library/ms693316%28VS.85%29.aspx" rel="nofollow">CoMarshalInterThreadInterfaceInStream</a> and <a href="http://msdn.microsoft.com/en-us/library/ms691421%28VS.85%29.aspx" rel="nofollow">CoGetInterfaceAndReleaseStream</a> </p> http://stackoverflow.com/questions/1861006/is-there-a-way-to-parse-a-google-search-string-to-a-table-variable-in-t-sql/1861756#1861756 1 Answer by Remus Rusanu for Is there a way to parse a Google search string to a table variable in T-SQL? Remus Rusanu 2009-12-07T17:58:58Z 2009-12-07T18:04:22Z <p>Well parsers are written the same way in any language, using a state machine. Nothing like writting a short parser in the morning to get your sinapses lubricated:</p> <pre><code>declare @s varchar(max); declare @t table (operator char(1) null, token varchar(max)); set @s = 'one -two +three "four five" -"six seven" +"eight nine" "ten eleven twelve"'; declare @state varchar(100); declare @operator char(1); declare @token varchar(max); declare @c char(1); declare @i int; set @state = 'start'; set @i = -1; while (1=1) begin set @i = @i + 1; if (@i &gt; len(@s)) break; set @c = substring(@s, @i, 1); if (@state = 'start') begin if @c in ('-', '+') begin set @operator = @c; set @token = ''; set @state = 'operator'; continue; end else if @c = '"' begin set @operator = null; set @token = ''; set @state = 'quote'; continue; end else if (@c between 'a' and 'Z') or (@c between '0' and '9') begin set @operator = null; set @token = @c; set @state = 'token'; continue; end else continue; -- ignore noise end else if @state = 'token' begin if (@c between 'a' and 'Z') or (@c between '0' and '9') begin set @token = @token + @c; continue; end else begin insert into @t (operator, token) values (@operator, @token); set @state = 'start'; continue; end end else if @state = 'quote' begin if (@c != '"') begin set @token = @token+@c; continue; end else begin insert into @t (operator, token) values (@operator, @token); set @state = 'start'; continue; end end else if @state = 'operator' begin if @c = '"' begin set @token = ''; set @state = 'quote'; continue; end else if (@c between 'a' and 'Z') or (@c between '0' and '9') begin set @token = @c; set @state = 'token'; continue; end else begin -- consider raising error here, invalid char after operator +/- set @state = 'start'; continue; end end else raiserror ('Unexpected state %s', 16,2, @state); end if @state = 'token' begin insert into @t (operator, token) values (@operator, @token); end else if @state != 'start' begin raiserror ('Incorrectly formatted string, must not end in state %s', 16, 1, @state); end select * from @t; </code></pre> http://stackoverflow.com/questions/1860297/tempdb-sql-server-locking/1861245#1861245 1 Answer by Remus Rusanu for tempdb SQL Server locking Remus Rusanu 2009-12-07T16:48:28Z 2009-12-07T16:48:28Z <blockquote> <p>long-running locks in tempdb since this obviously affects concurrency badly</p> </blockquote> <p>That is actually not obvious at all. Long held locks are of importance only if you and the other application go after the <em>same</em> locks. The code sample you posted is perfectly legitimate. First of all #temp is a connection specific table that no other connection can even see it. But even if it would be global resource, it would belong to the other application and hence you would have no business acquiring locks on it.</p> <p>As an exercise, open an SSMS query window and run this:</p> <pre><code>begin transaction; create table #temp (a int); </code></pre> <p>Then opne a second query window and run the same. QED they don't block each other, despite creating the very same #temp table.</p> <p>If tempdb is indeed a bottle neck you need to do some more investigation and find the actual resources that contention occurs on.</p> http://stackoverflow.com/questions/1718037/abuse-of-c-lambda-expressions-or-syntax-brilliance 71 Abuse of C# lambda expressions or Syntax brilliance? Remus Rusanu 2009-11-11T21:00:35Z 2009-12-07T12:00:52Z <p>I am looking at the <a href="http://www.codeplex.com/MVCContrib" rel="nofollow">MvcContrib</a> Grid component and I'm fascinated, yet at the same time repulsed, by a syntactic trick used in the <a href="http://www.jeremyskinner.co.uk/2009/02/22/rewriting-the-mvccontrib-grid-part-2-new-syntax/" rel="nofollow">Grid syntax</a>: </p> <pre><code>.Attributes(style =&gt; "width:100%") </code></pre> <p>The syntax above sets the style attribute of the generated HTML to <code>width:100%</code>. Now if you pay attention, 'style' is nowhere specified, is deduced from the <strong>name</strong> of the parameter in the expression! I had to dig into this and found where the 'magic' happens:</p> <pre><code> Hash(params Func&lt;object, TValue&gt;[] hash) { foreach (var func in hash) { Add(func.Method.GetParameters()[0].Name, func(null)); } } </code></pre> <p>So indeed, the code is using the formal, compile time, name of parameters to create the dictionary of attribute name-value pairs. The resulted syntax construct is very expressive indeed, but at the same time very dangerous. The general use of lambda expressions allows for replacement of the <em>names</em> used without side effect. I see an example in a book that says <code>collection.ForEach(book =&gt; Fire.Burn(book))</code> I know I can write in my code <code>collection.ForEach(log =&gt; Fire.Burn(log))</code> and <em>it means the same thing</em>. But with the MvcContrib Grid syntax here all of the sudden I find code that actively looks and makes decissions based on the names I choose for my variables!</p> <p>So is this common practice with the C# 3.5/4.0 community and the lambda expressions lovers? Or is a rogue one trick maverick I shouldn't worry about?</p> http://stackoverflow.com/questions/1851314/sql-server-replication-distributor/1853037#1853037 0 Answer by Remus Rusanu for SQL Server Replication, Distributor Remus Rusanu 2009-12-05T18:39:53Z 2009-12-05T18:39:53Z <p>I'd recommend you do some scalability tests first. Replication is very verbose in terms of agent jobs and T-SQL connections for reading and writing data. 200 publications you're talking 200 publisher agents, 200 subscription agents, plus the distributor maintenance. Most sites complain about maintenance problems of having 1 publisher and 1 subscriber... Say you manage to pull this off and <strong>operate</strong> it successfully, what is going to be your upgrade story? And how are you going to implement a schema change? </p> <p>The largest replication deployment I heard of (some years ago) had I believe 450 publishers and was implemented by an army of Microsoft field consultants sweating for months to bend the behemoth into shape. Your 200 replication sites project is <em>way</em> more ambitious than you realize. </p> <p>I suggest you explore some alternatives too. If you need a periodic table snapshot then SSIS can be a good match. If you need a continuous stream of changes then <a href="http://msdn.microsoft.com/en-us/library/ms166071%28SQL.90%29.aspx" rel="nofollow">Service Broker</a> can scale way way easier than replication. </p> http://stackoverflow.com/questions/1850194/open-process-as-different-user/1850334#1850334 2 Answer by Remus Rusanu for open process as different user Remus Rusanu 2009-12-04T23:23:03Z 2009-12-04T23:23:03Z <p>You shouldnt create a process as a different user just to get his priviledges. To get an user priviledges you need an iudentity token. To start a process as an user you need an impersonate token. Idenity tokens are very low security risk, impersonation tokens on the other hand are very serious business. At the very least, you need to know the password of the user in order to impersonate (or have an impesonation capable context, like an SSPI exchange security context).</p> <p>Use <a href="http://msdn.microsoft.com/en-us/library/aa379159%28VS.85%29.aspx" rel="nofollow">LookupAccountName</a> to get the SID, <a href="http://msdn.microsoft.com/en-us/library/aa378299%28VS.85%29.aspx" rel="nofollow">LsaOpenPolicy</a> and <a href="http://msdn.microsoft.com/en-us/library/ms721790%28VS.85%29.aspx" rel="nofollow">LsaEnumerateAccountRights</a>.</p> http://stackoverflow.com/questions/1850172/stored-procedure-performance-randomly-plummets-trivial-alter-fixes-it-why/1850200#1850200 5 Answer by Remus Rusanu for Stored procedure performance randomly plummets; trivial ALTER fixes it. Why? Remus Rusanu 2009-12-04T22:55:10Z 2009-12-04T22:55:10Z <p>Parameter sniffing and plan reuse. Every now and then you get a bad plan. Doing an ALTER bumps the metadata version on the procedure so the plans <em>must</em> be recompiled on next execution. The solution depends on a miriad of factors, you may have bad SQL, you may get an unlucky 'optimization', we can't possible know. Identify the statement in the procedure that is slow, when is slow. SQL Profiler is your friend, trace <a href="http://msdn.microsoft.com/en-us/library/ms189570.aspx" rel="nofollow">SP:StmtCompleted</a> eevnt with a duration > 5000 for instance.</p> http://stackoverflow.com/questions/1850069/error-while-installing-the-net-windowservice-the-name-is-already-in-use-as-eith/1850115#1850115 1 Answer by Remus Rusanu for Error while installing the .net windowservice :The name is already in use as either a server or service name Remus Rusanu 2009-12-04T22:38:04Z 2009-12-04T22:38:04Z <p>Your unique service name is in use as a service name or as a display name on the the server machine. It is not in use on your local machine, so it works. </p> <p>Ensure that the service that already uses your service name is an older version of your service, the Uninstall the old version of the service from the server first, before attempting to install your newer version.</p> <p>If the service that uses your service name is not an older version of your service, then pick a better name, one that has a lower proobability of being already in use.</p> http://stackoverflow.com/questions/1850045/how-do-i-find-all-stored-procedures-that-insert-update-or-delete-records/1850078#1850078 1 Answer by Remus Rusanu for How do I find all stored procedures that insert, update, or delete records? Remus Rusanu 2009-12-04T22:28:59Z 2009-12-04T22:28:59Z <p>That is the problem with sys.sql_dependencies. SQL cannot accurately track dependencies in stored procedures (there are sound reasons why it can't, but lets no go there now). That is without even considering dynamic SQL or CLR procedures.</p> <p>Visual Studio Database Edition has some better capabilities, but it can track dependencies in scipts, not in a live database. It can though reverse engineer live databases into scripts and analyse the resulted scripts, to some better accuracy than sys.sql_dependencies can. It cannot handle dynamic SQL.</p> http://stackoverflow.com/questions/1849944/t-sql-how-to-write-a-conditional-join/1850031#1850031 4 Answer by Remus Rusanu for T-SQL - How to write a conditional join Remus Rusanu 2009-12-04T22:19:01Z 2009-12-04T22:19:01Z <p>The simple ways are actualy not good solutions. As bad as it sounds, the best solution is to have explicit IF in the code and separate queries:</p> <pre><code>IF (condition) SELECT ... FROM Person WHERE ... ELSE IF (otherCondition) SELECT ... FROM Person JOIN ... ON ... WHERE ... ELSE IF (moreCondition) SELECT ... FROM Persons JOIN ... JOIN ... WHERE ... </code></pre> <p>The reason for this is that if you're trying to build one single query that matches all three (or more) conditions then the engine has to produce one <em>single</em> query plan that works in <em>all</em> conditions. In T-SQL one statement equals one plan. Remember that plans are created for the generic case, for <em>any</em> variable value, so the result is always a very, very bad plan.</p> <p>While is is counterintuitive and seems like a horrible solution to any programmer, this is how databases work. The reason why this is not a problem 99.99% of the times is that after trying what you ask and seeing what it has to be done, developers quickly come to their senses and revise their requirements so that they never have to run queries that optionaly join based on runtime variable values ;)</p> http://stackoverflow.com/questions/1849144/sql-server-and-sqldatareader-trillion-records-memory/1849402#1849402 1 Answer by Remus Rusanu for SQL Server and SqlDataReader - Trillion Records - Memory Remus Rusanu 2009-12-04T20:17:47Z 2009-12-04T20:17:47Z <p>There are a few details. </p> <ul> <li><p>SqlDataReader will normally read an entire row in memory and cache it. This includes any BLOB fields, so you can end up caching several 2GB fields in memory (XML, VARBINARY(MAX), VARCHAR(MAX), NVARCHAR(MAX)). If such fields are a concern then you must pass in the <a href="http://msdn.microsoft.com/en-us/library/system.data.commandbehavior.aspx" rel="nofollow">CommandBehavior.SequentialAccess</a> to <a href="http://msdn.microsoft.com/en-us/library/68etdec0.aspx" rel="nofollow">ExecuteReader</a> and use the streaming capabilities of the SqlClient specific types like <a href="http://msdn.microsoft.com/en-us/library/system.data.sqltypes.sqlbytes.stream.aspx" rel="nofollow">SqlBytes.Stream</a>.</p></li> <li><p>A connection is busy until the SqlDataReader completes. This creates transactional problems because you won't be able to to any processing in the database in the same transaciton, because the connection is busy. Trying to open a different conneciton and enroll in the same transaction will fail, as loop back distributed transacitons are prohibited. The loution is to use <a href="http://msdn.microsoft.com/en-us/library/ms345109%28SQL.90%29.aspx" rel="nofollow">MARS</a>. You do so by setting <a href="http://msdn.microsoft.com/en-us/library/yf1a7f4f%28VS.80%29.aspx" rel="nofollow"><code>MultipleActiveResultSets=True</code></a> on the connection. This allows you to issue command on the <em>same</em> connection while a data reader is still active (typical fetch-process-fetch loop). Read the link to Christian Kleinerman's with great care, make sure you understand the issues and restrictions around MARS and transactions, they're quite subtle and counter intuitive.</p></li> <li><p>Lengthy processing in the client will block the server. Your query will still be executing all this time and the server will have to suspend it when the communication pipe fills up. A query consumes a <a href="http://msdn.microsoft.com/en-us/library/ms178626.aspx" rel="nofollow">worker</a> (or more if it has parallel plans) and workes are a <em>very</em> scarce commodity in a server (they equate roughly to threads). You won't be bale to afford many clients processing huge result sets at their own leissure.</p></li> <li><p>Transaction size. Processing a trillion records on one transaction is never going to work. The log will have to grow to accomodate the <em>entire</em> transaction and won't truncate and reuse the VLFs, resulting in <em>huge</em> log growth. </p></li> <li><p>Recovery time. If processing fails at the 999 billionth record it will have to rollback all the work done, so it will take another '12' days just to rollback.</p></li> </ul> http://stackoverflow.com/questions/1849005/converting-conditionally-built-sql-where-clause-into-linq/1849041#1849041 2 Answer by Remus Rusanu for Converting conditionally built SQL where-clause into LINQ Remus Rusanu 2009-12-04T19:10:18Z 2009-12-04T19:10:18Z <pre><code>var query = from p in persons select p; if (whereCriteria1) { query = from p in query join a in address on p.addressid equals a.addressid where a.state = 'PA' where a.zip = '16127' select p; } if (whereCriteria2) { query = from p in query join c in colors on p.favoritecolorid equals c.colorid where c.name = 'blue' select p; } </code></pre> http://stackoverflow.com/questions/1845854/simulation-of-generate-scripts-in-sql-server-2005without-using-management-studi/1849009#1849009 0 Answer by Remus Rusanu for Simulation of Generate Scripts in sql server 2005+(without using Management Studio) Remus Rusanu 2009-12-04T19:04:26Z 2009-12-04T19:04:26Z <p>SSMS itself uses SMO, namely the <a href="http://msdn.microsoft.com/en-us/library/microsoft.sqlserver.management.smo.scripter.aspx" rel="nofollow">Scripter</a> class. You can use SMO from any .Net application to extract scripts yourself.</p> http://stackoverflow.com/questions/1871075/how-to-compare-security-setting-access-rights-between-2-sql-database/1871106#1871106 Comment by Remus Rusanu on How to compare security setting/access rights between 2 SQL Database? Remus Rusanu 2009-12-09T06:12:05Z 2009-12-09T06:12:05Z To make a database TRUSTWORTHY the sysadmin has to mark it so. Is not a connection string option. http://stackoverflow.com/questions/1871075/how-to-compare-security-setting-access-rights-between-2-sql-database/1871106#1871106 Comment by Remus Rusanu on How to compare security setting/access rights between 2 SQL Database? Remus Rusanu 2009-12-09T03:58:15Z 2009-12-09T03:58:15Z It doesn't matter who executes the procedure. Please read the link provided. http://stackoverflow.com/questions/1870240/security-for-requesting-temporary-logins Comment by Remus Rusanu on Security for requesting temporary logins Remus Rusanu 2009-12-09T00:29:08Z 2009-12-09T00:29:08Z Yes, it still is a vulnerability. As a general rule, never rely on the client to enfore security in the server (ie. SqlParameter), because an attacker will simply not use the client. In particular, this procedure can be used by any low priviledged user to mount an priviledge escalation attack, exploiting the EXECUTE AS priviledge via the Sql Injection vector. In other words, any guest can become sysadmin. http://stackoverflow.com/questions/1870240/security-for-requesting-temporary-logins Comment by Remus Rusanu on Security for requesting temporary logins Remus Rusanu 2009-12-08T22:37:33Z 2009-12-08T22:37:33Z C'mon, use QUOTENAME. You don't want any <code>exec SQLELR&#95;Login&#95;CREATE ..., @DATABASE = 'master; exec IAmInUrDatabsePwningUrTables;', ...</code> http://stackoverflow.com/questions/1869886/is-it-possible-to-use-nets-transactionscope-with-sql-server-2005-without-allowi/1869962#1869962 Comment by Remus Rusanu on Is it possible to use .NET's TransactionScope with Sql Server 2005 without allowing promotion to DTC? Remus Rusanu 2009-12-08T21:57:57Z 2009-12-08T21:57:57Z You are asking literally &quot;just use transactions without DTC&quot; then go on and say &quot;I use multiple databases within the scope&quot;. Let me rephrase that for you: <b>I want to use distributed transactions without using distributed transactions</b>. I hope is more clear now. http://stackoverflow.com/questions/1864236/c-handling-terminate-signal-in-tcp-handler-thread Comment by Remus Rusanu on C#: Handling terminate signal in TCP handler thread? Remus Rusanu 2009-12-08T02:38:16Z 2009-12-08T02:38:16Z Why is community wiki? http://stackoverflow.com/questions/1863908/sending-emails-from-sql-sever/1863923#1863923 Comment by Remus Rusanu on Sending emails from sql sever Remus Rusanu 2009-12-08T01:28:04Z 2009-12-08T01:28:04Z The advice in the link is obsolete at least. http://stackoverflow.com/questions/1862008/why-is-a-trailing-set-inconsistently-throwing-an-error-in-sql/1862048#1862048 Comment by Remus Rusanu on Why is a trailing SET inconsistently throwing an error in SQL? Remus Rusanu 2009-12-07T19:12:57Z 2009-12-07T19:12:57Z Make sure you don't have weird characters like Ctrl-M in your script, that create fake new-lines. It may <i>look</i> like you have a SET on a standalone line when in fact is a continuation of a comment line above, and the customer has inserted a true CRLF instead. Check for changes none the less. Everyone is posting that <code>SET</code> on its own is a syntax error. http://stackoverflow.com/questions/1849144/sql-server-and-sqldatareader-trillion-records-memory/1849402#1849402 Comment by Remus Rusanu on SQL Server and SqlDataReader - Trillion Records - Memory Remus Rusanu 2009-12-07T19:04:21Z 2009-12-07T19:04:21Z The proper way to create batches that can be safely resumed depends on the actual task being done. A trivial example is to have a table with 'current' clustered key value. In a transaction you get the value from the table, select next 10k rows order by clustered key, process them, update the current key value in table, commit. Rinse, cycle and repeat. http://stackoverflow.com/questions/1861822/fts-searching-across-multiple-fields-intelligently Comment by Remus Rusanu on FTS: Searching across multiple fields 'intelligently' Remus Rusanu 2009-12-07T18:20:17Z 2009-12-07T18:20:17Z What makes you think the way you do it now is wrong? http://stackoverflow.com/questions/1854853/sql-server-2005-database-mail-error-the-operation-has-timed-out/1855806#1855806 Comment by Remus Rusanu on sql server 2005 database mail error (The operation has timed out) Remus Rusanu 2009-12-07T18:07:42Z 2009-12-07T18:07:42Z I aggree with Aaron, this problem is in the SMTP server not in the dbmail infrastructure (and why my opinion matters is because I worked fairly close to the db mail feature when was developed). http://stackoverflow.com/questions/1860297/tempdb-sql-server-locking/1860354#1860354 Comment by Remus Rusanu on tempdb SQL Server locking Remus Rusanu 2009-12-07T16:50:22Z 2009-12-07T16:50:22Z @Jens: Multiple files are not for IO but for SGAM/GAM allocation. <a href="http://www.sqlskills.com/BLOGS/PAUL/post/Misconceptions-around-TF-1118.aspx" rel="nofollow">sqlskills.com/BLOGS/PAUL/&hellip;</a> http://stackoverflow.com/questions/1824604/getdate-returning-same-value-at-different-times-what-is-happening/1824614#1824614 Comment by Remus Rusanu on Getdate() returning same value at different times! What is happening? Remus Rusanu 2009-12-06T17:26:12Z 2009-12-06T17:26:12Z 'evaluate for each row processed inside a function' is a procedural statement in which you expect a certain execution path and order. http://stackoverflow.com/questions/1849944/t-sql-how-to-write-a-conditional-join/1850031#1850031 Comment by Remus Rusanu on T-SQL - How to write a conditional join Remus Rusanu 2009-12-05T06:25:38Z 2009-12-05T06:25:38Z @Pony: Yes, dynamic SQL is better for complex conditions. http://stackoverflow.com/questions/1850172/stored-procedure-performance-randomly-plummets-trivial-alter-fixes-it-why/1850200#1850200 Comment by Remus Rusanu on Stored procedure performance randomly plummets; trivial ALTER fixes it. Why? Remus Rusanu 2009-12-04T23:48:13Z 2009-12-04T23:48:13Z Just to be technically accurate: driver is not important per se, but various drives have various defaults and there are differences between SqlClient, ODBC, OleDB, JDBC, PHP, FreeTDS and other drivers in terms of defaults.