User Kluge - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T19:53:28Z http://stackoverflow.com/feeds/user/8752 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1466461/recommended-movies-on-history-of-computers-programming/1467008#1467008 1 Answer by Kluge for Recommended movies on history of computers/programming? Kluge 2009-09-23T16:07:38Z 2009-09-23T16:07:38Z <p>Robert X. Cringely did a PBS series entitled "Triumph of the Nerds: How the Personal Computer Changed the World," that I liked. You can get it on <a href="http://www.shoppbs.org/product/index.jsp?productId=1978852" rel="nofollow">DVD</a>.</p> http://stackoverflow.com/questions/1279813/invalid-variant-operation-error/1279916#1279916 1 Answer by Kluge for Invalid Variant Operation error Kluge 2009-08-14T20:05:38Z 2009-08-14T20:05:38Z <p>Just a guess:</p> <p>ovElements.item(i).Value is probably a Variant. If a variant contains a null value you will get that error when you compare it to a string.</p> <p>Make sure ovElements.item(i) doesn't contain a null value before comparing it.</p> http://stackoverflow.com/questions/1236264/is-there-an-efficient-and-free-method-of-migrating-a-6gb-interbase-db-to-mysql/1236364#1236364 1 Answer by Kluge for Is there an efficient and free method of migrating a 6GB Interbase DB to MySql? Kluge 2009-08-06T00:04:23Z 2009-08-06T00:04:23Z <p>Since both Interbase and MySql have ODBC drivers, how about using your favorite development environment to write an app that opens each table in the IB database and copies it into the MySql database? There are various languages and IDE's that support data access using odbc.</p> <p>This would be nicer than using csv because your code could copy the schema during the process of copying each table.</p> http://stackoverflow.com/questions/193016/reverse-engineering-war-stories 16 Reverse engineering war stories Kluge 2008-10-10T21:05:58Z 2009-06-08T19:21:41Z <p>Sometimes you don't have the source code and need to reverse engineer a program or a black box. Any fun war stories?</p> <p>Here's one of mine:</p> <p>Some years ago I needed to rewrite a device driver for which I didn't have source code. The device driver ran on an old CP/M microcomputer and drove a dedicated phototypesetting machine through a serial port. (Wow, I'm showing my age here...) Almost no documentation for the phototypesetting machine was available to me.</p> <p>I finally hacked together a serial port monitor on a DOS PC that mimicked the responses of the phototypesetting machine. I cabled the DOS PC to the CP/M machine and started logging the data coming out of the device driver as I feed data in through the CP/M machine. This enabled me to figure out the handshaking and encoding used by the device driver and re-create an equivalent one for a DOS machine.</p> http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/407484#407484 11 Answer by Kluge for What's your most controversial programming opinion? Kluge 2009-01-02T17:27:35Z 2009-04-21T22:39:06Z <p><strong>SQL could and should have been done better.</strong> Because its original spec was limited, various venders have been extending the language in different directions for years. SQL that is written for MS-SQL is different than SQL for Oracle, IBM, MySQL, Sybase, etc. Other serious languages (take C++ for example) were carefully standardized so that C++ written under one compiler will generally compile unmodified under another. Why couldn't SQL have been designed and standardized better?</p> <p><strong>HTML was a seriously broken choice as a browser display language.</strong> We've spent years extending it through CSS, XHTML, Javascript, Ajax, Flash, etc. in order to make a useable UI, and the result is still not as good as your basic thick-client windows app. Plus, a competent web programmer now needs to know three or four languages in order to make a decent UI.</p> <p>Oh yeah. Hungarian notation is an abomination.</p> http://stackoverflow.com/questions/761170/optimal-way-to-store-retrieve-array-in-table/761198#761198 0 Answer by Kluge for Optimal Way to Store/Retrieve Array in Table Kluge 2009-04-17T16:44:06Z 2009-04-17T16:44:06Z <p>Maybe the word you're looking for is "normalize". As in, move the array to a separate table, linked to the first by means of a key. This offers several advantages:</p> <ul> <li><p>The array size can grow almost indefinitely</p></li> <li><p>Efficient storage</p></li> <li><p>Ability to search for values in the array without having to use "like"</p></li> </ul> <p>Of course, the decision of whether to normalize this data depends on many factors that you haven't mentioned, like the number of elements, whether or not the number is fixed, whether the elements need to be searchable, etc.</p> http://stackoverflow.com/questions/707478/how-can-i-send-emails-that-preserve-the-formatting-that-a-user-provides-in-rtf-in/707557#707557 0 Answer by Kluge for How can I send emails that preserve the formatting that a user provides in RTF in a RichTextBox? Kluge 2009-04-01T22:15:06Z 2009-04-01T22:15:06Z <p>You need an RTF to HTML converter. You're right, it may not be worth your time to write one. I did anyway. It wasn't too bad because I had some control over the RTF document creation and could prohibit things that I didn't want to translate to HTML. Converting RTF to HTML is basically just a document parser with the ability to replace RTF command verbs with their HTML equivalents.</p> http://stackoverflow.com/questions/707117/sql-order-by-slowness/707129#707129 3 Answer by Kluge for SQL 'ORDER BY' slowness Kluge 2009-04-01T20:06:12Z 2009-04-01T21:24:28Z <p>ORDER BY is not generally slow, provided that the database can find an index that corresponds with the ORDER BY expression.</p> <p>However, your SQL statement might include other things that force the database to scan the entire table before returning the results, like SELECT TOP n</p> http://stackoverflow.com/questions/706236/sql-select-value-if-no-corresponding-value-exists-in-another-table/706325#706325 1 Answer by Kluge for SQL select value if no corresponding value exists in another table Kluge 2009-04-01T16:23:03Z 2009-04-01T16:23:03Z <p>This should work:</p> <pre><code>select iif(history.newvalue is null, employee.department, history.newvalue) as Department from employee left outer join history on history.RowId = employee.Id and history.changedate &lt; '2008-05-20' // (i.e. given date) and history.changedate = (select max(changedate) from history h1 where h1.RowId = history.RowId and h1.changedate &lt;= history.changedate) </code></pre> http://stackoverflow.com/questions/675493/have-you-ever-turned-down-morally-questionable-or-unethical-web-work/675540#675540 1 Answer by Kluge for Have you ever turned-down morally questionable or unethical web work? Kluge 2009-03-23T22:54:20Z 2009-03-23T22:59:22Z <p>I can think of lots of work I would turn down on ethical grounds:</p> <ul> <li>Writing viruses or adware.</li> <li>Writing deceptive sites that extract money from people under misleading premises.</li> <li>Websites engaging in illegal activities.</li> <li>Porn. (My personal objections here.)</li> </ul> <p>My personal feeling is that if a company is being deceptive or dishonest with its customers, I want no part of working for them. How could you trust an employer / client that deceives its customers?</p> <p>Edit to move beyond the hypothetical: I was once approached to sell my company to some stock brokers who wanted it as a shell corporation that they could take public. They weren't particularly interested in the company or its products. They just wanted an established company. The deal stunk and I quickly declined.</p> http://stackoverflow.com/questions/671995/finding-the-current-row-in-delphis-tdbgrid/672278#672278 2 Answer by Kluge for Finding the current row in Delphi's TDBGrid Kluge 2009-03-23T04:55:55Z 2009-03-23T04:55:55Z <p>I'm not sure if I understand your question, but I'll attempt an answer and maybe you can clarify if this isn't what you are asking.</p> <p>Since a TDBGrid is tied to a DataSource, the current row is the same as the current row in the data source. You can query the DataSource, either by looking at a primary key value or the RecNo property to determine which record is the current one.</p> http://stackoverflow.com/questions/548659/prevent-application-running-from-windows-temp-folder/548669#548669 1 Answer by Kluge for Prevent application running from windows temp folder Kluge 2009-02-14T07:06:54Z 2009-02-14T07:06:54Z <p>Why not check the current directory to see if it's a temp folder? In pseudocode:</p> <pre><code>if (GetCurrentDir() == GetTempDir()) abort("You cannot run our application from the temp folder."); </code></pre> http://stackoverflow.com/questions/518026/zip-code-to-city-state-and-vice-versa-in-a-database/518139#518139 0 Answer by Kluge for Zip Code to City/State and vice-versa in a database? Kluge 2009-02-05T21:57:30Z 2009-02-05T21:57:30Z <p>If the reason for the lookup is the user's convenience, here's an alternate approach that doesn't require licensing any third-party databases:</p> <p>Just lookup the city/state from your existing name/address table, provided the zip code matches. If somebody has previously made an entry for that zip code, then you'll find the city and state from that entry. IF no previous entry exists, then worst case the user has to entry in the city and state.</p> <p>This solution assumes your need is for convenience for the user. If you are more concerned about accurate validation of city, state, zip codes then you're better off licensing a verified database.</p> http://stackoverflow.com/questions/493372/bcb5-command-line-linker-ilink32-cant-find-consts-obj/493471#493471 0 Answer by Kluge for BCB5 command line linker (ilink32) can't find consts.obj? Kluge 2009-01-29T21:17:05Z 2009-01-29T21:17:05Z <p>Do you have a consts.dcu in the C:\Program Files\Borland\CBuilder5\Lib\Obj folder?</p> <p>I don't know exactly what your error is, but perhaps it's related to this file, which is apparently a pre-compiled delphi unit.</p> http://stackoverflow.com/questions/400903/borland-c-builder-5-cancel-via-escape-key-not-working/485163#485163 1 Answer by Kluge for Borland C++ Builder 5 - Cancel Via Escape Key Not Working Kluge 2009-01-27T20:47:17Z 2009-01-27T20:47:17Z <p>Also keep in mind that the dialog needs to be invoked via ShowModal() rather than just Show(). For example, if your form is named "FAskDialog" then the code that displays it should be like</p> <p>FAskDialog->ShowModal();</p> <p>rather than</p> <p>FAskDialog->Show();</p> <p>If the dialog is invoked via Show(), then hitting a cancel key or setting ModalResult = mrCancel will NOT cause the dialog to close.</p> http://stackoverflow.com/questions/378678/pivotal-suboptimal-decisions-in-the-history-of-software/474121#474121 2 Answer by Kluge for Pivotal Suboptimal Decisions in the History of Software Kluge 2009-01-23T19:20:04Z 2009-01-23T19:20:04Z <p>Microsoft's decision to use "C:\Program Files" as the standard folder name where programs should be installed in Windows. Suddenly working from a command prompt became much more complicated because of that wordy location with an embedded space. You couldn't just type:</p> <pre><code>cd \program files\MyCompany\MyProgram </code></pre> <p>Anytime you have a space in a directory name, you have to encase the entire thing in quotes, like this:</p> <pre><code>cd "\program files\MyCompany\MyProgram" </code></pre> <p>Why couldn't they have just called it c:\programs or something like that?</p> http://stackoverflow.com/questions/464108/what-is-a-better-way-to-create-an-access-database-of-file-names-using-c-builder/464157#464157 0 Answer by Kluge for What is a better way to create an access database of file names using C++ Builder? Kluge 2009-01-21T05:17:53Z 2009-01-21T05:17:53Z <p>The bottleneck in your code is mostly likely the ADO/Access database layer. The directory-level functions (FindFirst(), FindNext()) are relatively fast. You could verify whether the database is the bottleneck by replacing those calls with cout statements. My guess is that it will run much faster when outputting the results to the console.</p> <p>In my experience, Access is not a high-performance database, and the ADO drivers are not as fast as native drivers. I'll bet if you replaced the database with a more serious database, you'd find improved performance.</p> http://stackoverflow.com/questions/459554/how-do-i-tell-if-one-instance-of-my-program-is-running/459568#459568 5 Answer by Kluge for How do i tell if one instance of my program is running? Kluge 2009-01-19T23:15:04Z 2009-01-19T23:15:04Z <p>You create a system mutex. I don't have Delphi code, but here's C++ code:</p> <pre><code>HANDLE Mutex; const char MutexName[] = "MyUniqueProgramName"; Mutex = OpenMutex(MUTEX_ALL_ACCESS, false, MutexName); if (Mutex) throw Exception("Program is already running."); else Mutex = CreateMutex(NULL, true, MutexName); </code></pre> http://stackoverflow.com/questions/451066/whats-the-easiest-most-practical-way-to-toggle-several-lightbulbs-with-a-pc/451107#451107 0 Answer by Kluge for What's the easiest, most practical way to toggle several lightbulbs with a PC? Kluge 2009-01-16T16:47:43Z 2009-01-16T16:47:43Z <p>If you enjoy doing it yourself, a serial port interface wouldn't be too difficult. A serial port has at least two lines that can be switched on/off: RTS/CTS and DSR/DTR. When you turn either line on, you're getting +5VDC on that particular line. You can use those lines to control relays that in turn switch the lights on/off.</p> http://stackoverflow.com/questions/440615/best-way-to-check-that-a-list-of-items-exists-in-an-sql-database-column/440670#440670 6 Answer by Kluge for Best way to check that a list of items exists in an SQL database column? Kluge 2009-01-13T20:30:32Z 2009-01-13T20:35:43Z <p>Since the list of fruits you are selecting from can be arbitrarily long, I would suggest the following:</p> <pre><code>create table FruitList (FruitName char(30)) insert into FruitList values ('apples'), ('pears'), ('oranges') select * from FruitList left outer join AllFruits on AllFruits.fruit = FruitList.FruitName where AllFruits.fruit is null </code></pre> <p>A left outer join should be much faster than "not in" or other kinds of queries.</p> http://stackoverflow.com/questions/439301/convert-rtf-to-html/439607#439607 1 Answer by Kluge for Convert Rtf to HTML Kluge 2009-01-13T16:13:58Z 2009-01-13T16:13:58Z <p>If you don't mind getting your hands dirty, it isn't that difficult to write an RTF to HTML converter.</p> <p>Writing a general purpose RTF->HTML converter would be somewhat complicated because you would need to deal with hundreds of RTF verbs. However, in your case you are only dealing with those verbs used specifically by Crystal Reports. I'll bet the standard RTF coding generated by Crystal doesn't vary much from report to report.</p> <p>I wrote an RTF to HTML converter in C++, but it only deals with basic formatting like fonts, paragraph alignments, etc. My translator basically strips out any specialized formatting that it isn't prepared to deal with. It took about 400 lines of C++. It basically scans the text for RTF tags and replaces them with equivalent HTML tags. RTF tags that aren't in my list are simply stripped out. A regex function is really helpful when writing such a converter.</p> http://stackoverflow.com/questions/437649/why-prefix-c-interface-names-with-i/437662#437662 1 Answer by Kluge for Why prefix C# interface names with ā€œIā€ Kluge 2009-01-13T01:12:15Z 2009-01-13T01:12:15Z <p>Naming conventions offer the benefit of telling you something about the object before you use it. Naming conventions have been widely used for many years, going all the way back to fortran's insistence that integer values were restricted (if I remember correctly) to variable names like "i" and "j".</p> <p>Hungariation notation took naming conventions to a whole new ugly level tha described the variable type, whether or not it was a pointer, etc. Many of us who were exposed to lots of code with Hungarian notation developed nervous twitches and verbal stutters.</p> <p>Prefixing interface names with I is a relatively low-impact, harmless way of identifying that object.</p> http://stackoverflow.com/questions/434140/array-of-structs-and-new-delete/434150#434150 0 Answer by Kluge for Array of structs and new / delete Kluge 2009-01-12T00:59:57Z 2009-01-12T00:59:57Z <p>Setting items[5] to NULL doesn't delete the memory associated with the item, it simply sets the pointer to that item to NULL, therefore the memory is leaked.</p> <p>You can delete the item by calling:</p> <pre><code>delete items[5]; </code></pre> <p>Since C++ has not automatic garbage collection, you need to delete any memory you no longer need.</p> http://stackoverflow.com/questions/423335/what-can-c-do-that-is-too-hard-or-messy-in-any-other-language/423431#423431 9 Answer by Kluge for What can C++ do that is too hard or messy in any other language? Kluge 2009-01-08T06:23:17Z 2009-01-08T16:18:08Z <p>Shooting oneself in the foot.</p> <p>No other language offers such a creative array of tools. Pointers, multiple inheritance, templates, operator overloading and a preprocessor.</p> <p>A wonderfully powerful language that also provides abundant opportunities for foot shooting.</p> <p>Edit: I apologize if my lame attempt at humor has offended some. I consider C++ to be the most powerful language that I have ever used -- with abilities to code at the assembly language level when desired, and at a high level of abstraction when desired. C++ has been my primary language since the early '90s.</p> <p>My answer was based on years of experience of shooting myself in the foot. At least C++ allows me to do so elegantly.</p> http://stackoverflow.com/questions/378678/pivotal-suboptimal-decisions-in-the-history-of-software/379541#379541 3 Answer by Kluge for Pivotal Suboptimal Decisions in the History of Software Kluge 2008-12-18T22:26:35Z 2008-12-18T22:31:46Z <p>HTML as a browser display language.</p> <p>HTML was originally designed a content markup language, whose goal was to describe the contents of a document without making too many judgments about how that document should be displayed. Which was great except that appearance is very important for most web pages and especially important for web applications.</p> <p>So, we've been patching HTML ever since with CSS, XHTML, Javascript, Flash, Silverlight and Ajax all in order to provide consistent cross-browser display rendering, dynamic content and the client-side intelligence that web applications demand.</p> <p>How many times have you wished that browser control languages had been done right in the first place?</p> http://stackoverflow.com/questions/317777/synchronisable-crm-system/317831#317831 1 Answer by Kluge for Synchronisable CRM System Kluge 2008-11-25T15:59:58Z 2008-11-25T15:59:58Z <p>Having written just such a system myself, I'd recommend avoiding it if possible. The ways that users can mess up such a system are legion, particularly when the users are the sales team. A CRM system named Act! (you are probably familiar with) has offered such a sync option in the past, and maybe they still do. Whenever my company is selling to a company that has been using Act!'s sync system, the company always complains of corrupted and mis-synced databases.</p> <p>If you really need to do such a thing, then I'd recommend database-level replication (which wasn't available at the time we wrote our sync application). Many databases offer replication, including MS-SQL Server. You can eliminate many of the problems we experienced by tracking changes at the database level, and making the database responsible for transporting those changes to a remote database.</p> http://stackoverflow.com/questions/309825/what-is-the-best-way-today-to-maintain-clipper-5-3-code/310348#310348 0 Answer by Kluge for What is the best way today to maintain clipper 5.3 code? Kluge 2008-11-21T21:57:13Z 2008-11-21T21:57:13Z <p><a href="http://www.cavo.com/" rel="nofollow">CA Visual Objects</a> (VO) is the official successor, however don't expect to just recompile your Clipper 5.3 app into VO. All of the screen interface code will need to be rewritten for a new UI.</p> http://stackoverflow.com/questions/306171/help-evil-services-are-killing-my-objects/306306#306306 0 Answer by Kluge for Help! Evil services are killing my objects... Kluge 2008-11-20T18:18:00Z 2008-11-20T18:18:00Z <p>Clearly you haven't take your abstraction pills this morning. Now, take your nice medicine and you'll feel better in a little while...</p> http://stackoverflow.com/questions/303609/should-i-capitalize-my-constants/303618#303618 2 Answer by Kluge for Should I capitalize my constants? Kluge 2008-11-19T22:25:38Z 2008-11-19T22:25:38Z <p>In C++ at least, you should avoid capitalizing constants to avoid confusion with #defines, which are canonically capitalized.</p> http://stackoverflow.com/questions/302193/what-is-the-value-of-a-beta-release/302300#302300 0 Answer by Kluge for What is the value of a 'beta' release? Kluge 2008-11-19T15:38:56Z 2008-11-19T15:38:56Z <p>For our company, a Beta release is another way of saying that while we have tested the application extensively, it still has not been widely deployed among customers. There's a certain maturity and confidence that comes only with time, when an application has been used in a variety of sites and with a variety of data sets. So, even if we feel completely confident that a release is solid, we still label it Beta until we feel that it has had some time to be deployed and tested in a variety of circumstances.</p> <p>Many of our customers will avoid Beta software because the can't risk problems. Others are willing to risk potential problems in order to get the latest features, and therefore are willing to install and use Beta releases.</p> http://stackoverflow.com/questions/1643365/why-no-love-for-sql/1643440#1643440 Comment by Kluge on Why no love for SQL? Kluge 2009-10-29T13:46:54Z 2009-10-29T13:46:54Z Touch&#233;. Your answer perfectly describes my early frustrations with SQL. I wrote a lot of procedural code because I didn't trust SQL to generate an efficient execution plan. As I grew more conversant in SQL, I discovered that it is in fact quite good at optimizing and that properly written SQL usually runs faster than my procedural code. http://stackoverflow.com/questions/170103/what-rare-programming-tools-do-you-use/288681#288681 Comment by Kluge on What rare programming tools do you use? Kluge 2009-09-08T03:23:41Z 2009-09-08T03:23:41Z I found something very similar to my incremental copy program: Filesync (fileware.com), except they took it to the next level by adding file diffs and some other neat features. Thanks for all the comments. http://stackoverflow.com/questions/103118/incremental-file-copy-tool-and-nih Comment by Kluge on Incremental File Copy Tool and NIH Kluge 2009-07-29T20:14:11Z 2009-07-29T20:14:11Z Note: I just discovered FileSync (fileware.com) which is remarkably similar to what I wrote, except cooler in many ways. http://stackoverflow.com/questions/761023/get-thumbnail-of-background-window Comment by Kluge on Get Thumbnail of background window Kluge 2009-04-17T16:52:02Z 2009-04-17T16:52:02Z Have you tried calling InvalidateRect() in your code to force the background window to repaint itself? http://stackoverflow.com/questions/707117/sql-order-by-slowness/707129#707129 Comment by Kluge on SQL 'ORDER BY' slowness Kluge 2009-04-01T21:25:55Z 2009-04-01T21:25:55Z Fixed. Whew... The dangers of a quick response... http://stackoverflow.com/questions/459554/how-do-i-tell-if-one-instance-of-my-program-is-running/459568#459568 Comment by Kluge on How do i tell if one instance of my program is running? Kluge 2009-01-19T23:42:26Z 2009-01-19T23:42:26Z @Rob Kennedy, You're right. The code could fail of two instances of the program were started almost instantly. Your suggestion is correct. http://stackoverflow.com/questions/440615/best-way-to-check-that-a-list-of-items-exists-in-an-sql-database-column/440670#440670 Comment by Kluge on Best way to check that a list of items exists in an SQL database column? Kluge 2009-01-13T20:36:26Z 2009-01-13T20:36:26Z Thanks @Bill. I don't use VALUES much, should have checked my reference first. Fixed. http://stackoverflow.com/questions/423335/what-can-c-do-that-is-too-hard-or-messy-in-any-other-language/423431#423431 Comment by Kluge on What can C++ do that is too hard or messy in any other language? Kluge 2009-01-08T06:43:08Z 2009-01-08T06:43:08Z Downvotes...sigh. I guess I'm not as funny late at night as I think. http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/406804#406804 Comment by Kluge on What's your most controversial programming opinion? Kluge 2009-01-02T17:50:08Z 2009-01-02T17:50:08Z Hmmm... When I started writing basic on a dumb terminal back in 1979, we didn't have a debugger nor did I have a copy/paste, but that doesn't mean I wrote better code back then. http://stackoverflow.com/questions/306171/help-evil-services-are-killing-my-objects/306306#306306 Comment by Kluge on Help! Evil services are killing my objects... Kluge 2008-11-20T20:28:47Z 2008-11-20T20:28:47Z @badbadboy: Don't read too much into my answer. Your clever metaphors made me laugh, and I was just trying for a quick, funny response, which in retrospect, probably wasn't that funny... http://stackoverflow.com/questions/288894/update-multiple-values-in-a-single-statement/289119#289119 Comment by Kluge on Update multiple values in a single statement Kluge 2008-11-14T14:46:27Z 2008-11-14T14:46:27Z I tried both of your approaches and couldn't get them to work. My database only supports SQL-92 with a few extensions. What database are you using that supports the code you suggest? http://stackoverflow.com/questions/288894/update-multiple-values-in-a-single-statement/290019#290019 Comment by Kluge on Update multiple values in a single statement Kluge 2008-11-14T14:44:27Z 2008-11-14T14:44:27Z My database doesn't allow that, but it's nice to see the approach other database vendors have taken. http://stackoverflow.com/questions/288894/update-multiple-values-in-a-single-statement/289016#289016 Comment by Kluge on Update multiple values in a single statement Kluge 2008-11-14T02:21:52Z 2008-11-14T02:21:52Z @Milen, You are right, that would work. However, I assume that it would be no faster than the three statements in my example. I guess I should go try both ways and compare the timings. http://stackoverflow.com/questions/288894/update-multiple-values-in-a-single-statement/288910#288910 Comment by Kluge on Update multiple values in a single statement Kluge 2008-11-14T00:51:53Z 2008-11-14T00:51:53Z I have now clarified my original question to show that I've tried omitting the &quot;group by&quot; clause. Thanks! http://stackoverflow.com/questions/288894/update-multiple-values-in-a-single-statement/288910#288910 Comment by Kluge on Update multiple values in a single statement Kluge 2008-11-14T00:49:34Z 2008-11-14T00:49:34Z @Chris, that doesn't work for me either. If it works for you, then I'm probably bumping into a limitation of my particular database.