User Eric Z Beard - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T21:41:44Zhttp://stackoverflow.com/feeds/user/1219http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/36054/anyone-have-experience-with-sphinx-speech-recognition3Anyone have experience with Sphinx speech recognition?Eric Z Beard2008-08-30T15:46:09Z2009-11-26T19:46:23Z
<p>Has anyone used the <a href="http://cmusphinx.sourceforge.net/html/cmusphinx.php" rel="nofollow">Sphinx</a> speech recognition stack to build IVR applications? I am looking for open source alternatives to the expensive and somewhat limiting choices from MSFT and others. I have not been able to find a comprehensive package that ties open source speech/voip applications together.</p>
http://stackoverflow.com/questions/1723523/database-change-management-using-hand-generated-scripts/1728655#17286550Answer by Eric Z Beard for Database Change Management using hand generated scriptsEric Z Beard2009-11-13T11:26:28Z2009-11-13T11:26:28Z<p>This is a tough problem, plain and simple. The tools mentioned in other answers can definitely help, but you're still left to do a lot yourself.</p>
<p>I actually have a table in my schema that stores an ID for each change script (which matches the case number in my issue/bug tracking system). At the end of each change script I insert the ID into that table. I have a separate script that checks to see what's been done on any specific instance of the database. It would be feasible to automate running each of the scripts that haven't been run yet, but I like to run change scripts manually in case anything goes wrong.</p>
<p>Rollbacks can be almost impossible, especially since many schema changes require some sort of data migration. I have found that best practice with any changes to the schema are to make them backwards-compatible. Never rename a column or table (at least at first). Only add things, and make all new adds nullable. A rollback script simply removes the new stuff, if you realize something isn't quite right. Of course you end up with old, unused columns and tables, so you write a second script that is run after your current release is considered stable, which gets rid of the old stuff.</p>
http://stackoverflow.com/questions/1724299/explain-this-obscure-asp-net-bug/1728586#17285860Answer by Eric Z Beard for Explain this obscure ASP.NET bugEric Z Beard2009-11-13T11:11:13Z2009-11-13T11:11:13Z<p>You must be doing something really unusual to bring down the worker process. It doesn't have anything to do with the database error - it's got to be related to where that error happens in your code, likely on a background thread, but even then ASP.NET generally protects itself from being brought down by uncaught exceptions.</p>
<p>It's best practice to always surround all code in any methods that are executed on threads with a try-catch.</p>
http://stackoverflow.com/questions/1726755/converting-asp-net-sql-web-app-to-be-ime-zone-savy/1728510#17285100Answer by Eric Z Beard for Converting asp.net/sql web app to be ime zone savyEric Z Beard2009-11-13T10:53:57Z2009-11-13T10:53:57Z<p>In the latest version of .NET you get the <a href="http://msdn.microsoft.com/en-us/library/system.timezoneinfo.aspx" rel="nofollow">TimeZoneInfo</a> class that helps with converting dates.</p>
<p>You store the dates in GMT, also store the user's time zone, and then convert the dates each time you need to display them. The hard part is dealing with daylight savings time. The TimeZoneInfo class should help with this. Before that class was available you had to do it all yourself, storing tables of data on time zones and the date ranges of daylight savings time in each time zone.</p>
http://stackoverflow.com/questions/92114/how-can-i-copy-a-large-file-on-windows-without-copyfile-or-copyfileex4How can I copy a large file on Windows without CopyFile or CopyFileEx?Eric Z Beard2008-09-18T12:33:05Z2009-10-07T06:43:08Z
<p>There is a limitation on Windows Server 2003 that prevents you from copying extremely large files, in proportion to the amount of RAM you have. The limitation is in the CopyFile and CopyFileEx functions, which are used by xcopy, Explorer, Robocopy, and the .NET FileInfo class.</p>
<p>Here is the error that you get:</p>
<blockquote>
<p>Cannot copy [filename]: Insufficient system resources exist to complete the requested service.</p>
</blockquote>
<p>The is a <a href="http://support.microsoft.com/default.aspx/kb/259837" rel="nofollow">knowledge base article</a> on the subject, but it pertains to NT4 and 2000.</p>
<p>There is also a suggestion to <a href="http://blogs.technet.com/askperf/archive/2007/05/08/slow-large-file-copy-issues.aspx" rel="nofollow">use ESEUTIL</a> from an Exchange installation, but I haven't had any luck getting that to work.</p>
<p>Does anybody know of a quick, easy way to handle this? I'm talking about >50Gb on a machine with 2Gb of RAM. I plan to fire up Visual Studio and just write something to do it for me, but it would be nice to have something that was already out there, stable and well-tested.</p>
<p><strong>[Edit]</strong> I provided working C# code to accompany the accepted answer.</p>
http://stackoverflow.com/questions/18655/why-do-we-need-entity-objects62Why do we need entity objects?Eric Z Beard2008-08-20T19:37:53Z2009-09-24T23:28:48Z
<p>Ok, I realize I might be downvoted into oblivion for this question, especially given my stance on the matter, but I really need to see some honest, thoughtful debate on the merits of the currently accepted <strong><em>enterprise application</em></strong> design paradigm.</p>
<p>I am not convinced that entity objects should exist.</p>
<p>By entity objects I mean the typical things we tend to build for our applications, like "Person", "Account", "Order", etc.</p>
<p>My current design philosophy is this:</p>
<ul>
<li>All database access must be accomplished via stored procedures.</li>
<li>Whenever you need data, call a stored procedure and iterate over a SqlDataReader or the rows in a DataTable</li>
</ul>
<p>(Note: I have also built enterprise applications with J2EE, java folks please substitute the equvalent for my .NET examples)</p>
<p>I am not anti-OO. I write lots of classes for different purposes, just not entities. I will admit that a large portion of the classes I write are static helper classes.</p>
<p>I am not building toys. I'm talking about large, high volume transactional applications deployed across multiple machines. Web applications, windows services, web services, b2b interaction, you name it.</p>
<p>I have used OR Mappers. I have written a few. I have used the J2EE stack, CSLA, and a few other equivalents. I have not only used them but actively developed and maintained these applications in production environments.</p>
<p>I have come to the battle-tested conclusion that entity objects are getting in our way, and our lives would be <em>so</em> much easier without them.</p>
<p>Consider this simple example: you get a support call about a certain page in your application that is not working correctly, maybe one of the fields is not being persisted like it should be. With my model, the developer assigned to find the problem opens <em>exactly 3 files</em>. An ASPX, an ASPX.CS and a SQL file with the stored procedure. The problem, which might be a missing parameter to the stored procedure call, takes minutes to solve. But with any entity model, you will invariably fire up the debugger, start stepping through code, and you may end up with 15-20 files open in Visual Studio. By the time you step down to the bottom of the stack, you forgot where you started. We can only keep so many things in our heads at one time. Software is incredibly complex without adding any unnecessary layers.</p>
<p>Development complexity and troubleshooting are just one side of my gripe.</p>
<p>Now let's talk about scalability.</p>
<p>Do developers realize that each and every time they write or modify any code that interacts with the database, they need to do a throrough analysis of the exact impact on the database? And not just the development copy, I mean a mimic of production, so you can see that the additional column you now require for your object just invalidated the current query plan and a report that was running in 1 second will now take 2 minutes, just because you added a single column to the select list? And it turns out that the index you now require is so big that the DBA is going to have to modify the physical layout of your files?</p>
<p>If you let people get too far away from the physical data store with an abstraction, they will create havoc with an application that needs to scale.</p>
<p>I am not a zealot. I can be convinced if I am wrong, and maybe I am, since there is such a strong push towards Linq to Sql, ADO.NET EF, Hibernate, J2EE, etc. Please think through your responses, if I am missing something I really want to know what it is, and why I should change my thinking.</p>
<p><strong><em>[Edit]</em></strong></p>
<p>It looks like this question is suddenly active again, so now that we have the new comment feature I have commented directly on several answers. Thanks for the replies, I think this is a healthy discussion.</p>
<p>I probably should have been more clear that I am talking about enterprise applications. I really can't comment on, say, a game that's running on someone's desktop, or a mobile app.</p>
<p>One thing I have to put up here at the top in response to several similar answers: orthogonality and separation of concerns often get cited as reasons to go entity/ORM. Stored procedures, to me, are the best example of separation of concerns that I can think of. If you disallow all other access to the database, other than via stored procedures, you could in theory redesign your entire data model and not break any code, so long as you maintained the inputs and outputs of the stored procedures. They are a perfect example of programming by contract (just so long as you avoid "select *" and document the result sets).</p>
<p>Ask someone who's been in the industry for a long time and has worked with long-lived applications: how many application and UI layers have come and gone while a database has lived on? How hard is it to tune and refactor a database when there are 4 or 5 different persistence layers generating SQL to get at the data? You can't change anything! ORMs or any code that generates SQL <strong><em>lock your database in stone</em></strong>.</p>
http://stackoverflow.com/questions/36056/whats-a-good-open-source-voicexml-implementation4What's a good open source VoiceXML implementation?Eric Z Beard2008-08-30T15:49:05Z2009-08-31T17:44:40Z
<p>I am trying to find out if it's possible to build a complete IVR application by cobbling together parts from open source projects. Is anyone using a non-commercial VoiceXML implementation to build speech-enabled systems?</p>
http://stackoverflow.com/questions/229824/tsql-email-validation-without-regex1TSQL Email Validation (without regex)Eric Z Beard2008-10-23T14:00:19Z2009-08-28T07:28:40Z
<p>Ok, there are a million regexes out there for validating an email address, but how about some basic email validation that can be integrated into a TSQL query for Sql Server 2005?</p>
<p>I don't want to use a CLR procedure or function. Just straight TSQL.</p>
<p>Has anybody tackled this already?</p>
http://stackoverflow.com/questions/355949/how-good-are-redgates-sql-tools3How good are Redgate's SQL tools?Eric Z Beard2008-12-10T12:56:27Z2009-08-21T08:43:03Z
<p>I'd like to hear from anyone who has experience with Redgate's tools for Sql Server 2005. In particular, are their backups 100% reliable? Their claims about backup speed and compression sound almost too good to be true.</p>
<p>For those who have used Redgate's backup, do they handle transaction log backups (and therefore restoring up to a specific point in time), or just full backups?</p>
http://stackoverflow.com/questions/1295247/do-stored-procedures-have-the-ability-to-delete-a-file-from-the-os/1298952#12989520Answer by Eric Z Beard for Do stored procedures have the ability to delete a file from the OS?Eric Z Beard2009-08-19T10:18:04Z2009-08-19T10:18:04Z<p>You could also use a CLR stored procedure for this. That's one of the main reasons for the existence of managed stored procedures, to interact with the OS in a safe manner.</p>
http://stackoverflow.com/questions/1298487/how-to-access-cursor-columns-without-fetch-into/1298920#12989200Answer by Eric Z Beard for How to Access Cursor Columns Without FETCH .. INTOEric Z Beard2009-08-19T10:09:12Z2009-08-19T10:09:12Z<p>No, you have to do it that way if you want to store the values from the cursor in local variables instead of returning them back to the client.</p>
http://stackoverflow.com/questions/41925/is-there-a-standard-for-storing-normalized-phone-numbers-in-a-database15Is there a standard for storing normalized phone numbers in a database?Eric Z Beard2008-09-03T15:22:33Z2009-07-29T11:56:25Z
<p>What is a good data structure for storing phone numbers in database fields? I'm looking for something that is flexible enough to handle international numbers, and also something that allows the various parts of the number to be queried efficiently.</p>
<p>[Edit] Just to clarify the use case here: I currently store numbers in a single varchar field, and I leave them just as the customer entered them. Then, when the number is needed by code, I normalize it. The problem is that if I want to query a few million rows to find matching phone numbers, it involves a function, like</p>
<pre><code>where dbo.f_normalizenum(num1) = dbo.f_normalizenum(num2)
</code></pre>
<p>which is terribly inefficient. Also queries that are looking for things like the area code become extremely tricky when it's just a single varchar field.</p>
<p><strong>[Edit]</strong></p>
<p>People have made lots of good suggestions here, thanks! As an update, here is what I'm doing now: I still store numbers exactly as they were entered, in a varchar field, but instead of normalizing things at query time, I have a trigger that does all that work as records are inserted or updated. So I have ints or bigints for any parts that I need to query, and those fields are indexed to make queries run faster.</p>
http://stackoverflow.com/questions/1158880/how-do-i-speed-up-deletes-from-a-large-database-table3How do I speed up deletes from a large database table?Eric Z Beard2009-07-21T12:26:21Z2009-07-24T04:29:54Z
<p>Here's the problem I am trying to solve: I have recently completed a data layer re-design that allows me to load-balance my database across multiple shards. In order to keep shards balanced, I need to be able to migrate data from one shard to another, which involves copying from shard A to shard B, and then deleting the records from shard A. But I have several tables that are very big, and have many foreign keys pointed to them, so deleting a single record from the table can take more than one second.</p>
<p>In some cases I need to delete millions of records from the tables, and it just takes too long to be practical.</p>
<p>Disabling foreign keys is not an option. Deleting large batches of rows is also not an option because this is a production application and large deletes lock too many resources, causing failures. I'm using Sql Server, and I know about partitioned tables, but the restrictions on partitioning (and the license fees for enterprise edition) are so unrealistic that they are not possible.</p>
<p>When I began working on this problem I thought the hard part would be writing the algorithm that figures out how to delete rows from the leaf level up to the top of the data model, so that no foreign key constraints get violated along the way. But solving that problem did me no good since it takes weeks to delete records that need to disappear overnight.</p>
<p>I already built in a way to mark data as virtually deleted, so as far as the application is concerned, the data is gone, but I'm still dealing with large data files, large backups, and slower queries because of the sheer size of the tables.</p>
<p>Any ideas? I have already read older related posts here and found nothing that would help.</p>
http://stackoverflow.com/questions/24168/why-are-relational-set-based-queries-better-than-cursors6Why are relational set-based queries better than cursors?Eric Z Beard2008-08-23T12:04:48Z2009-07-13T13:54:07Z
<p>When writing database queries in something like TSQL or PLSQL, we often have a choice of iterating over rows with a cursor to accomplish the task, or crafting a single SQL statement that does the same job all at once.</p>
<p>Also, we have the choice of simply pulling a large set of data back into our application and then processing it row by row, with C# or Java or PHP or whatever.</p>
<p>Why is it better to use set-based queries? What is the theory behind this choice? What is a good example of a cursor-based solution and its relational equivalent?</p>
http://stackoverflow.com/questions/10575/whats-your-interactive-voice-response-platform3What's your Interactive Voice Response Platform?Eric Z Beard2008-08-14T02:01:02Z2009-06-26T19:32:38Z
<p>For those of you working in the voice space, what are you using as your IVR platform? I am using Microsoft Speech Server 2007. What are some equivalent packages? Is anyone using open source software for handling inbound or outbound calls? Note that I'm not just talking about speech recognition, which is one component of a comprehensive package. An IVR platform would consist of speech recognition, text-to-speech, a VUI technology such as VoiceXML, and call termination via SIP or telephony hardware.</p>
http://stackoverflow.com/questions/83185/should-you-administer-iq-tests-to-programmers-during-the-interview-process5Should you administer IQ tests to programmers during the interview process?Eric Z Beard2008-09-17T13:29:23Z2009-06-09T01:10:26Z
<p>How many companies are using IQ tests to rate prospective programmers? </p>
<p>How would you weight an IQ test vs. education, experience, etc.?</p>
<p>Are there any legal issues that come into play with this kind of thing?</p>
<p>Is there an industry standard test?</p>
<p><strong>[Edit]</strong></p>
<p><strong><em>WOW</em></strong>, I wasn't expecting such a strong response against the idea. I guess a big reason not to do it is that you might scare off potential employees! I have to admit that in my experience, an IQ test has proven to be one of the <strong><em>best</em></strong> indicators of future performance.</p>
http://stackoverflow.com/questions/949125/why-are-there-so-many-tools-technologies-to-do-same-task-in-open-source-community/949934#9499340Answer by Eric Z Beard for why are there so many tools/technologies to do same task in open-source communityEric Z Beard2009-06-04T11:22:50Z2009-06-04T11:22:50Z<p>I have built complex systems on both sides of the fence, both FOSS and also on Windows platforms. While I love the free-ness and flexibility of Linux-based systems (making architectural decisions based on license costs instead of what you really need sucks), I can say with absolute certainty that I get more done with less people on Windows.</p>
<p>With FOSS, if you have a complex system and hire a new programmer, you generally need weeks to spin the person up on all the different pieces of the puzzle - languages, compilers, tools, etc.</p>
<p>Every Windows programmer I have hired in the last few years has been checking in code within one day of starting, sometimes within a few hours. That's the benefit of a homogenous platform. I'm guaranteed to get somebody who already knows our whole stack.</p>
<p>You really have to do a cost-benefit analysis of FOSS, to see if you really are in fact saving money. If you can get by on just one less person, over the course of a year, how much does a developer cost you vs. your license costs?</p>
http://stackoverflow.com/questions/846336/how-do-i-get-sql-server-management-studio-to-stop-processing-on-an-error/846497#8464970Answer by Eric Z Beard for How do I get SQL Server Management Studio to stop processing on an error?Eric Z Beard2009-05-11T02:06:29Z2009-05-11T02:06:29Z<p>If you can't put your script into a stored procedure and use the return statement to exit on error, the solution provided by @Justice might be your best bet. Everyone else is missing the point - you can't return from a script, even if you use transactions or even if you raiserror. SSMS will just execute the next thing anyway, even if set xact abort is on.</p>
<p>If you can convert your script to a stored procedure, then you can just return from it when you detect an error.</p>
http://stackoverflow.com/questions/51793/how-can-you-set-the-smtp-envelope-mail-from-using-system-net-mail3How can you set the SMTP envelope MAIL FROM using System.Net.Mail?Eric Z Beard2008-09-09T12:58:22Z2009-03-16T23:02:27Z
<p>When you send an email using C# and the System.Net.Mail namespace, you can set the "From" and "Sender" properties on the MailMessage object, but neither of these allows you to make the MAIL FROM and the from address that goes into the DATA section different from each other. MAIL FROM gets set to the "From" property value, and if you set "Sender" it only adds another header field in the DATA section. This results in "From X@Y.COM on behalf of A@B.COM", which is not what you want. Am I missing something?</p>
<p>The use case is controlling the NDR destination for newsletters, etc., that are sent on behalf of someone else.</p>
<p>I am currently using <a href="http://www.aspnetemail.com/" rel="nofollow">aspNetEmail</a> instead of System.Net.Mail, since it allows me to do this properly (like most other SMTP libraries). With aspNetEmail, this is accomplished using the EmailMessage.ReversePath property.</p>
http://stackoverflow.com/questions/123671/how-is-openid-implemented8How is OpenID implemented?Eric Z Beard2008-09-23T20:33:39Z2009-03-12T14:18:05Z
<p><strong>How would you design and implement OpenID components?</strong></p>
<p>(Was "How does OpenId work")</p>
<p>I realize this question is somewhat of a <a href="http://stackoverflow.com/questions/69076/openid-login-workflow">duplicate</a>, and yes, I have read <a href="http://openid.net/specs/openid-authentication-2_0.html" rel="nofollow">the spec</a> and the <a href="http://en.wikipedia.org/wiki/OpenID" rel="nofollow">wikipedia article</a>.</p>
<p>After reading the materials mentioned above, I still don't have a complete picture in my head of how each step in the process is handled. Maybe what's missing is a good workflow diagram for how an implementation of OpenID works.</p>
<p>I'm considering incorporating OpenID into one of my applications to accomodate a B2B single-sign-on scenario, and I will probably go with <a href="http://code.google.com/p/dotnetopenid/" rel="nofollow">DotNetOpenID</a> instead of trying to implement it myself, but I still want a better grasp of the particulars before I get started.</p>
<p>Can anyone recommend books or websites that do a good job of explaining it all? It wouldn't hurt to have an answer that covers the basics here on this site as well.</p>
<p>[Edit]</p>
<p>I changed the title to be more implementation-specific, since there are obviously plenty of places to get the ten-thousand-foot view.</p>
http://stackoverflow.com/questions/27894/whats-the-difference-between-a-temp-table-and-table-variable-in-mssql13What's the difference between a temp table and table variable in MSSQL?Eric Z Beard2008-08-26T12:27:30Z2009-02-11T20:28:56Z
<p>In Sql Server 2005, we can create temp tables one of two ways:</p>
<pre><code>declare @tmp table (Col1 int, Col2 int);
</code></pre>
<p>or</p>
<pre><code>create table #tmp (Col1 int, Col2 int);
</code></pre>
<p>What are the differences between the two? I have read conflicting opinions on whether @tmp still uses tempdb, or if everything happens in memory. </p>
<p>In which scenarios does one out-perform the other? </p>
http://stackoverflow.com/questions/498056/c-sip-stack-library/517451#5174510Answer by Eric Z Beard for C# SIP Stack/LibraryEric Z Beard2009-02-05T19:14:02Z2009-02-05T19:14:02Z<p>I needed this a while back and ended up writing my own B2BUA (a SIP proxy that also handles the audio and acts as an endpoint to both sides of the conversation). </p>
<p>The problem with the SIP spec (and RTP), is that it's very complicated, especially is you consider all of the optional additions that have been made to it over the years. Everyone implements it just a little bit differently, so if you go with shrink-wrapped software, you might run into problems with specific phones or servers.</p>
<p>In my case, I was trying to get Microsoft Speech Server to communicate with SIP terminators. Microsoft has an especially creative interpretation of the SIP spec (the most notable example being that they do not support UDP). Also, some VOIP gateways do not support REFER for supervised transfers, which is a necessity for many applications.</p>
<p>Several decent links have been provided in the other answers: my advice is to roll your own or go with something that is open source so you can tweak it as necessary when you run into the inevitable incompatibilites in SIP implementations.</p>
http://stackoverflow.com/questions/491484/db-connections-in-asp-net-mysql-vs-sql-server/491530#4915300Answer by Eric Z Beard for DB Connections in ASP.NET, MySQL vs. SQL ServerEric Z Beard2009-01-29T13:09:39Z2009-01-29T13:09:39Z<p>It might be connection pooling, but you also have to consider the fact that when .NET code is talking to Sql Server, it's communicating using the most efficient possible channels, since the code is all owned and controlled by Microsoft. If .NET code is talking to a 3rd party server, or if some 3rd party code is talking to Sql Server, the communication has to be more standards-based and generic, therefore it's much slower.</p>
<p>That's why back during the "Pet Shop" wars, the ASP.NET solution always ran so much faster than the alternate solutions. When you're forced to be platform-agnostic, you can't possibly keep up with 100% native code.</p>
http://stackoverflow.com/questions/457032/code-reuse-and-modularity-in-sql/457758#4577581Answer by Eric Z Beard for Code reuse and modularity in SQLEric Z Beard2009-01-19T14:32:17Z2009-01-19T14:32:17Z<p>You are going to find that using functions within your queries is a disaster for performance. The functions become a black box for the optimizer, so you will end up re-coding the function call back into the query to make it run fast once you get up to a large number of rows in your tables.</p>
<p>A better way to deal with common calculations is to insert them into a new column with a trigger, or in your insert/update queries. That way you can index the calculated value and use it directly instead of figuring it out each time you need it.</p>
http://stackoverflow.com/questions/425475/sql-server-listing-all-indexes/428235#4282350Answer by Eric Z Beard for SQL Server: Listing all indexesEric Z Beard2009-01-09T14:30:57Z2009-01-09T14:30:57Z<p>Here's an example of the kind of query you need:</p>
<pre><code>select
i.name as IndexName,
o.name as TableName,
ic.key_ordinal as ColumnOrder,
ic.is_included_column as IsIncluded,
co.[name] as ColumnName
from sys.indexes i
join sys.objects o on i.object_id = o.object_id
join sys.index_columns ic on ic.object_id = i.object_id
and ic.index_id = i.index_id
join sys.columns co on co.object_id = i.object_id
and co.column_id = ic.column_id
where i.[type] = 2
and i.is_unique = 0
and i.is_primary_key = 0
and o.[type] = 'U'
--and ic.is_included_column = 0
order by o.[name], i.[name], ic.is_included_column, ic.key_ordinal
;
</code></pre>
<p>This one is somewhat specific to a certain purpose (I use it in a little C# app to find duplicate indexes and format the output so it's actually readable by a human). But you could easily adapt it to your needs.</p>
http://stackoverflow.com/questions/428147/sql-identity-column-out-of-step/428207#4282071Answer by Eric Z Beard for SQL Identity Column out of stepEric Z Beard2009-01-09T14:22:56Z2009-01-09T14:22:56Z<p>It's too risky to rely on this kind of identity strategy, since it's (obviously) possible that it will get out of synch and wreck everything.</p>
<p>With replication, you really need to identify your data with GUIDs. It will probably be easier for you to migrate your data to a schema that uses GUIDs for PKs than to try and hack your way around IDENTITY issues.</p>
http://stackoverflow.com/questions/425898/can-sql-clr-triggers-do-this-or-is-there-a-better-way/428106#4281060Answer by Eric Z Beard for Can SQL CLR triggers do this? Or is there a better way?Eric Z Beard2009-01-09T13:52:09Z2009-01-09T13:52:09Z<p>Why not implement the insert in a stored procedure, and do the business logic in the procedure after the insert? What is so complicated about it that it can't be written in T-SQL?</p>
http://stackoverflow.com/questions/421275/different-execution-plan-when-executing-statement-directly-and-from-stored-proced/421288#4212884Answer by Eric Z Beard for Different execution plan when executing statement directly and from stored procedureEric Z Beard2009-01-07T17:53:09Z2009-01-07T17:53:09Z<p>This generally has something to do with parameter sniffing. It can be very frustrating to deal with. Sometimes it can be solved by recompiling the stored procedure, and sometimes you can even use a duplicate variable inside the stored procedure like this:</p>
<pre><code>alter procedure p_myproc (@p1 int) as
declare @p1_copy int;
set @p1_copy = @p1;
</code></pre>
<p>And then use @p1_copy in the query. Seems ridiculous but it works.</p>
<p>Check my recent question on the same topic:</p>
<p><a href="http://stackoverflow.com/questions/414336/why-does-the-sqlserver-optimizer-get-so-confused-with-parameters">http://stackoverflow.com/questions/414336/why-does-the-sqlserver-optimizer-get-so-confused-with-parameters</a></p>
http://stackoverflow.com/questions/40242/what-is-the-best-way-to-migrate-an-existing-messy-webapp-to-elegant-mvc/40262#402628Answer by Eric Z Beard for What is the best way to migrate an existing messy webapp to elegant MVC?Eric Z Beard2008-09-02T18:43:56Z2009-01-06T17:48:54Z<p>Your best bet is probably to refactor it slowly as you go along. Few us of have the resources that would be required to completely start from scratch with something that has so many business rules buried in it. Management really hates it when you spend months on developing an app that has more bugs than the one you replaced.</p>
<p>If you have the opportunity to build any separate apps from scratch, use all of the best practices there and use it to demonstrate how effective they are. When you can, incorporate those ideas gradually into the old application.</p>
http://stackoverflow.com/questions/414336/why-does-the-sqlserver-optimizer-get-so-confused-with-parameters4Why does the SqlServer optimizer get so confused with parameters?Eric Z Beard2009-01-05T20:09:49Z2009-01-06T16:26:19Z
<p>I know this has something to do with parameter sniffing, but I'm just perplexed at how something like the following example is even possible with a piece of technology that does so many complex things well.</p>
<p>Many of us have run into stored procedures that intermittently run several of orders of magnitude slower than usual, and then if you copy out the sql from the procedure and use the same parameter values in a separate query window, it runs as fast as usual.</p>
<p>I just fixed a procedure like that by converting this:</p>
<pre><code>alter procedure p_MyProc
(
@param1 int
) as -- do a complex query with @param1
</code></pre>
<p>to this:</p>
<pre><code>alter procedure p_MyProc
(
@param1 int
)
as
declare @param1Copy int;
set @param1Copy = @param1;
-- Do the query using @param1Copy
</code></pre>
<p>It went from running in over a minute back down to under one second, like it usually runs. This behavior seems totally random. For 9 out of 10 @param1 inputs, the query is fast, regardless of how much data it ends up needing to crunch, or how big the result set it. But for that 1 out of 10, it just gets lost. And the fix is to replace an int with the same int in the query?</p>
<p>It makes no sense.</p>
<p>[Edit]</p>
<p>@gbn linked to this question, which details a similar problem:</p>
<p><a href="http://stackoverflow.com/questions/379007/known-issue-sql-server-2005-stored-procedure-fails-to-complete-with-a-parameter">http://stackoverflow.com/questions/379007/known-issue-sql-server-2005-stored-procedure-fails-to-complete-with-a-parameter</a></p>
<p>I hesitate to cry "Bug!" because that's so often a cop-out, but this really does seem like a bug to me. When I run the two versions of my stored procedure with the same input, I see identical query plans. The only difference is that the original takes more than a minute to run, and the version with the goofy parameter copying runs instantly.</p>
http://stackoverflow.com/questions/1723523/database-change-management-using-hand-generated-scripts/1728655#1728655Comment by Eric Z Beard on Database Change Management using hand generated scriptsEric Z Beard2009-11-16T18:37:11Z2009-11-16T18:37:11ZWell, my migration scripts tend to involve millions of records, so transactions are out - that would lock up the database for way too long. I am using Sql Server.http://stackoverflow.com/questions/988373/difference-between-a-inline-function-and-a-view/988539#988539Comment by Eric Z Beard on Difference between a inline function and a viewEric Z Beard2009-11-13T11:27:49Z2009-11-13T11:27:49ZYep, I missed "inline", you're right.http://stackoverflow.com/questions/1723523/database-change-management-using-hand-generated-scripts/1723556#1723556Comment by Eric Z Beard on Database Change Management using hand generated scriptsEric Z Beard2009-11-13T11:16:07Z2009-11-13T11:16:07ZAs much as I love RedGate's tools, I've got issues with SqlCompare - it tends to drop and re-create indexes on tables when you make changes, and it re-creates all indexes on the PRIMARY filegroup, not where they used to be.http://stackoverflow.com/questions/988373/difference-between-a-inline-function-and-a-view/988539#988539Comment by Eric Z Beard on Difference between a inline function and a viewEric Z Beard2009-11-13T10:38:22Z2009-11-13T10:38:22ZThat's not correct for functions, not for Sql Server. Functions are a black box, and don't get expanded into the containing query - that's why performance is horrific if you use functions that query anything. It turns into a bad nested loop since the function is handled separately for each row.http://stackoverflow.com/questions/18717/are-foreign-keys-really-necessary-in-a-database-design/18730#18730Comment by Eric Z Beard on Are Foreign Keys really necessary in a database design?Eric Z Beard2009-09-18T12:04:23Z2009-09-18T12:04:23Z@jcollum, I made that comment during the beta of Stack Overflow, when pretty much everybody here knew who Jeff and Joel were, and most were probably listening to the Podcast, so Fog Creek was on everybody's radar.http://stackoverflow.com/questions/355949/how-good-are-redgates-sql-tools/1310767#1310767Comment by Eric Z Beard on How good are Redgate's SQL tools?Eric Z Beard2009-08-21T12:04:54Z2009-08-21T12:04:54ZMy only complaints so far are that the data generator doesn't allow you to specify custom foreign key values, and Sql Compare insists on dropping and re-creating all indexes when making minor column changes, and then puts all indexes back in the PRIMARY filegroup with all extended properties ignored. It takes hours to re-create my indexes, and they don't fit in one filegroup.http://stackoverflow.com/questions/355949/how-good-are-redgates-sql-tools/1310767#1310767Comment by Eric Z Beard on How good are Redgate's SQL tools?Eric Z Beard2009-08-21T12:02:57Z2009-08-21T12:02:57ZIt's funny that you posted here today... I just started using RedGate's entire toolbelt, and the backups, within the last week or so. The backups are fantastic - compressed and split into multiple files, which is great for my daily backups which uncompressed were nearing 1Tb.http://stackoverflow.com/questions/1298487/how-to-access-cursor-columns-without-fetch-intoComment by Eric Z Beard on How to Access Cursor Columns Without FETCH .. INTOEric Z Beard2009-08-19T10:11:10Z2009-08-19T10:11:10Z@pjp, sometimes cursors are useful to run some complex logic on a row-by-row basis, often by calling a stored procedure for each row returned. Also, if you need to do something like delete a few million rows, a single set-based query can lock up your database for a long time. Deleting one row at a time with a cursor takes a lot longer but allows the database to breathe while it's happening.http://stackoverflow.com/questions/1158880/how-do-i-speed-up-deletes-from-a-large-database-tableComment by Eric Z Beard on How do I speed up deletes from a large database table?Eric Z Beard2009-07-25T11:40:55Z2009-07-25T11:40:55ZI don't want to post the actual plan but I can describe it easily enough: a clustered index delete at far right with 66%, then under that 29 seeks for the FKs at approximately 1% each.http://stackoverflow.com/questions/1158880/how-do-i-speed-up-deletes-from-a-large-database-table/1175753#1175753Comment by Eric Z Beard on How do I speed up deletes from a large database table?Eric Z Beard2009-07-24T13:01:25Z2009-07-24T13:01:25ZThe problem is that I'm not talking about 30 minutes. I'm talking about tens of millions of rows which are taking me more than 1 second per row to delete. That adds up to months.http://stackoverflow.com/questions/1158880/how-do-i-speed-up-deletes-from-a-large-database-table/1158920#1158920Comment by Eric Z Beard on How do I speed up deletes from a large database table?Eric Z Beard2009-07-21T13:27:18Z2009-07-21T13:27:18ZThat might be something I could try, but we're talking about tables with tens of millions of records, several Gigs for the clustered index. It would have to be possible inside of a normal maintenance window.http://stackoverflow.com/questions/1158880/how-do-i-speed-up-deletes-from-a-large-database-tableComment by Eric Z Beard on How do I speed up deletes from a large database table?Eric Z Beard2009-07-21T13:23:31Z2009-07-21T13:23:31Z@AdaTheDev, for new shards it's not such a problem but my initial deployment was a backup-restore, and on each copy, mark half of the data as virtually deleted. So those two shards are huge.
@Mitch, the point of shards is to use cheaper equipment, so I won't spend money to solve the problem.
@ck, I'm not sure the FKs are the real problem. I think the biggest percentage of time spent is the clustered index delete.http://stackoverflow.com/questions/32000/c-sqlclient-simplest-insert/32031#32031Comment by Eric Z Beard on C# - SQLClient - Simplest INSERTEric Z Beard2009-06-26T12:45:59Z2009-06-26T12:45:59ZIt's recommended to put a using statement around any disposable object, so you get the try-finally-dispose logic guaranteed without any chance of messing it up and not releasing resources.http://stackoverflow.com/questions/50744/wait-until-file-is-unlocked-in-net/50800#50800Comment by Eric Z Beard on Wait until file is unlocked in .NetEric Z Beard2009-06-15T19:40:11Z2009-06-15T19:40:11ZAre you talking about 2 threads in the same app calling WaitForFile on the same file? Hmm, not sure, since I mostly use this to wait for other processes to let go of the file. I've had this code in production for a long time and it has worked well for me. Should be pretty simple to write a an app to test your theory.http://stackoverflow.com/questions/10575/whats-your-interactive-voice-response-platform/854039#854039Comment by Eric Z Beard on What's your Interactive Voice Response Platform?Eric Z Beard2009-05-29T13:23:23Z2009-05-29T13:23:23ZfreeSwitch is giving me hope. It is remarkable when it comes to bridging the gap between all of the different implementations of SIP and RTP. Still lots of work to do, though.