User JohnFx - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T21:24:34Zhttp://stackoverflow.com/feeds/user/30018http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1908454/using-0-1-versus-y-n-versus-t-f-in-a-logical-boolean-database-field/1908503#19085032Answer by JohnFx for Using [0,1] versus ["Y","N"] versus ["T","F"] in a logical/boolean database field?JohnFx2009-12-15T16:09:38Z2009-12-15T16:09:38Z<p>The differences in performance are going to be trivial. Go with the more intuitive one for humans M/F.</p>
http://stackoverflow.com/questions/1908312/how-do-i-concatenate-html-as-a-string-in-vba/1908416#19084162Answer by JohnFx for How do I concatenate html as a string in VBA?JohnFx2009-12-15T15:58:10Z2009-12-15T15:58:10Z<p>The line continuation syntax requires a space before the underscore. Try adding a space at the end of the first line:</p>
<pre><code>src=""http://cabfinancial.com/images/logoEmail.png"">"_
</code></pre>
<p><strong>becomes</strong> </p>
<pre><code>src=""http://cabfinancial.com/images/logoEmail.png"">" _
</code></pre>
http://stackoverflow.com/questions/1904448/what-is-the-largest-program-ever-written/1904500#19045006Answer by JohnFx for What is the largest program ever written?JohnFx2009-12-15T00:29:22Z2009-12-15T00:29:22Z<p>Here are some of the major contenders based on Lines of code. It isn't the best metric, but should give you a relative idea of the size of these projects.</p>
<pre>
Project SLOC
------------------ -----
Lucent 5ESS Switch 100m
Windows Vista 50m
Red Hat Linux 7.1 30m
Windows XP 40m
Visual Studio 40m
MS Office 30m
</pre>
<p><a href="http://brianmackay.name/post/2009/01/14/The-Worlds-Largest-Software-Project.aspx" rel="nofollow">Source: "World's Largest Software Project"</a></p>
http://stackoverflow.com/questions/166138/learning-vb6/1901613#19016130Answer by JohnFx for Learning VB6JohnFx2009-12-14T15:35:32Z2009-12-14T15:35:32Z<p>There are tons of books and you can probably get them dirt cheap since the technology is so old. For example, I just picked up some extra copies of a 3" thick hardback books that I did some writing for back in 1998 for under $3 on Amazon.</p>
<p>Also, given its longevity there is a ton of reference material out on the Net for it that has accumulated over time.</p>
<p>Don't let people scare you about VB6, it is a bit primitive compared to modern development platforms, but it wouldn't be so widely used if it didn't get the job done. That said, go with a more modern development tool unless you don't have a choice for the reasons given by the others on this post.</p>
http://stackoverflow.com/questions/1858470/technology-choice-for-redesigning-an-old-visualbasic-application/1898995#18989950Answer by JohnFx for Technology choice for redesigning an old VisualBasic-ApplicationJohnFx2009-12-14T04:55:33Z2009-12-14T04:55:33Z<p>I was in a very similar situation when we moved a large legacy application from VB6/ASP Classic to the .NET platform. I agonized over it quite a bit. </p>
<p>Ultimately we went with Vb.NET instead of C#. I wrote a retrospective about how that turned out including the good and bad from the viewpoint of 6 years after the decision. It might be of some of use to you: <a href="http://improvingsoftware.com/2009/04/19/a-managers-retrospective-on-the-c-versus-vbnet-decision/" rel="nofollow">"A Manager's Retrospective on the C# versus VB.NET Decision"</a></p>
http://stackoverflow.com/questions/1860838/compare-two-record-sets-in-vb6/1898972#18989720Answer by JohnFx for compare two record sets in vb6JohnFx2009-12-14T04:43:08Z2009-12-14T04:43:08Z<p>A much better solution would be to do the comparison in the Query/SQL instead of the code such that each mismatched row is returned from a single query.</p>
<p>For example</p>
<pre><code>SELECT T1.*,T2.*
FROM T1,T2
WHERE (T1.ID=T2.ID) AND
((T1.Field1<>T2.Field1) OR (T1.Field2<>T2.Field2) ...)
</code></pre>
http://stackoverflow.com/questions/1896325/advantages-of-vb-net-over-vb6-for-crud-application-development/1898963#18989630Answer by JohnFx for Advantages of vb.net over vb6 for CRUD application developmentJohnFx2009-12-14T04:39:48Z2009-12-14T04:39:48Z<p>The ability to use the farking scroll wheel on my mouse in the IDE!</p>
<p>Sorry, had to vent on that one since I've recently been stuck in VB6 for maintenance on a legacy app.</p>
http://stackoverflow.com/questions/1898780/optimize-sql-select-for-4000-searches-into-excel-by-vba/1898934#18989340Answer by JohnFx for Optimize SQL SELECT for 4000 searches, into Excel by VBAJohnFx2009-12-14T04:33:58Z2009-12-14T04:33:58Z<p>The optimization tips that seem most obvious based on your code sample are these:</p>
<p>1) Make sure you have an index on MasterTable.PN. This will be absolutely necessary to maximize performance and minimize table scans.</p>
<p>2) Experiment with combining the parameters and running them in a single query instead of 4000 separate queries. Perhaps with an IN statement that concatenates all the values you are interested in. This isn't 100% guaranteed to be faster, but in my experience there tends to be a ton of overhead running multiple queries in a loop like this.</p>
<p>Important: Don't take these a certain optimizations, test run each version several times to confirm that they really are faster in your specific situation. Your mileage may vary.</p>
http://stackoverflow.com/questions/1864435/fogbugz-database-schema-management/1864456#18644561Answer by JohnFx for Fogbugz database schema managementJohnFx2009-12-08T03:53:28Z2009-12-08T03:53:28Z<p>You might have more luck asking this on <a href="http://fogbugz.stackexchange.com/questions?sort=newest" rel="nofollow">http://fogbugz.stackexchange.com/</a></p>
http://stackoverflow.com/questions/1863533/session-expiring-and-throwing-exception/1863543#18635437Answer by JohnFx for session expiring and throwing exceptionJohnFx2009-12-07T23:05:27Z2009-12-07T23:05:27Z<p>The problem is here:</p>
<pre><code>if (Session["userName"].ToString() == null)
</code></pre>
<p>When Session["UserName"] is a null object reference, you can't rightly call .ToString() on it.</p>
<p>Try this instead...</p>
<pre><code>if (Session["userName"] == null)...
</code></pre>
http://stackoverflow.com/questions/1863376/check-user-is-logged-in-using-jquery/1863467#18634671Answer by JohnFx for Check user is logged in using JqueryJohnFx2009-12-07T22:48:21Z2009-12-07T22:54:55Z<p>Since you already have a few good answers, let me throw a fair warning into the discussion: </p>
<p>1) It would make a lot more sense to manipulate what the user sees before you send the page down to the client eliminating a lot of complexity from your approach. </p>
<p>2) Don't rely on the client side script as the sole means of securing a feature from users who are not logged in. Client side security code like this can be circumvented by simply turning off scripting or editing the content of the page to comment out the security check.</p>
<p>3) If you absolutely must do it this way, have the server re-check the credentials/login state when an action is initiated, even if the client code already did..</p>
<p>4) The redundant check I suggested in item #3 is another good reason to just do this with server side scripts instead of client side JS/JQUERY.</p>
http://stackoverflow.com/questions/1863381/how-to-get-column-name-in-classic-asp-using-recordset/1863425#18634251Answer by JohnFx for How to get Column name in Classic Asp using RecordSet?JohnFx2009-12-07T22:40:39Z2009-12-07T22:40:39Z<p>Are you certain that the recordset is actually returning anything in the case of more than 5K records?</p>
<p>response.write Recordset.state </p>
<p>Here are the possible values for state.
0 Object is closed<br>
1 Object is open<br>
2 Object is connecting<br>
4 Object is executing<br>
8 Object is fetching </p>
<p>Also, make sure you don't have the page silently swallowing errors. My gut says there is an error in the query that returns 5K rows and that it has nothing to do with the rowcount. A good way to check this is to run the 5K query directly in the back-end DB and rule that out first.</p>
http://stackoverflow.com/questions/309160/what-programming-language-should-be-taught-in-computer-science-10117What programming language should be taught in Computer Science 101?JohnFx2008-11-21T15:46:24Z2009-12-07T18:31:11Z
<p>If you did the CS (or equivalent) track in college, what was the first computer language they taught you in the intro course at the start of the degree plan? </p>
<p>Also, what computer language do you think SHOULD be the first one you teach college students as an introduction to allow them to get their feet wet without overwhelming them, but also prepare them properly to handle more advanced concepts to come later in their education/careers? Finally, what is it about the language you suggest that makes it ideal in this environment?</p>
http://stackoverflow.com/questions/1839196/sql-query-to-replace-all-occurrences-of-space-in-a-table-with-underscore/1850585#1850585-1Answer by JohnFx for SQL query to replace all occurrences of space in a table with underscoreJohnFx2009-12-05T00:33:45Z2009-12-05T01:13:36Z<p>Sometimes you don't need a hammer (code) even if the problem looks like a nail.</p>
<p>If this is a one-off task and the table isn't more than a few million rows you can just open the table and do a find and replace from the Edit menu (or ctrl-h) in Access. </p>
<p><img src="http://img686.imageshack.us/img686/2527/snap3.png" alt="alt text"></p>
<p>This is one of those handy data manipulation capabilities of Access that make it so darn useful for ad-hoc database work.</p>
<p><strong>Caveats:</strong><br>
(1) Performance won't be great on large tables, but works well for one-off data cleanup tasks in moderate sized tables (or when you are willing to wait a few minutes for it to finish on large tables.<br>
(2) The locks this technique will create are a bit oppressive, so this isn't advised for a DB that is in active use by a large number of users.</p>
http://stackoverflow.com/questions/1850594/mysql-how-to-reorder-a-table/1850613#18506135Answer by JohnFx for MYSQL: how to "reorder" a tableJohnFx2009-12-05T00:42:27Z2009-12-05T00:52:10Z<p>Can I ask why you would want to do this?</p>
<p>If anyone modifies any of the name values or inserts new rows it will mess up your ordering scheme. Trying to store some meaning in the ordering of the PK that is already available elsewhere in the table (the name column) seems redundant and consequently a bad idea.</p>
<p>A much better solution is not to worry about the value of the ID column and just sort on the name column when you use the data in your app.</p>
<p><strong>PS:</strong> Sorry for the non-answer type response. Normally I'd assume you had a good reason and just give an answer that directly addresses what you are trying to do, but I noticed from your other questions that you are still in the early learning stages about database design, so I wanted to help point you in the right direction instead of helping further your progress towards an ill-advised approach.</p>
http://stackoverflow.com/questions/1840847/can-someone-copyright-a-sql-query/1841019#18410195Answer by JohnFx for Can someone copyright a SQL query?JohnFx2009-12-03T16:18:04Z2009-12-03T16:18:04Z<p>The fact that it is a SQL query is a red herring. It is source code and intellectual property just like if it was compiled into an executable. As others have already said, any limitations on your use of the software depends mostly on the terms of your agreement.</p>
<p>I will observe that his comment says:</p>
<pre><code>// This code MAY NOT BE USED without the expressed written consent of
</code></pre>
<p>Which says nothing of modifying it, plus if you modify it then you could also argue that you aren't using his code.</p>
http://stackoverflow.com/questions/1823772/what-is-the-difference-between-a-web-developer-and-web-application-developer/1823801#18238010Answer by JohnFx for What is the difference between a Web Developer and Web Application DeveloperJohnFx2009-12-01T03:24:27Z2009-12-01T03:24:27Z<p>There is no official distinction, it is just two different ways to word the title for what is effectively the same job. </p>
<p>In the case where there is some difference, it will be specific to the company posting the job. Use the job description instead of the title to figure out what is expected at a given job. </p>
http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/1813065#18130650Answer by JohnFx for What "already invented" algorithm did you invent?JohnFx2009-11-28T17:03:59Z2009-11-28T17:03:59Z<p>Not exactly an algorithm, but I "invented" AJAX back in the late 90's to support dynamically loading branches of a navigation tree without a full page refresh. It was some pretty hack-y code that used JS to load data into a hidden I-Frame then read it out into the parent page and manipulate the DOM. </p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/520817#5208170Answer by JohnFx for Good excuses NOT to use version controlJohnFx2009-02-06T15:51:38Z2009-11-27T19:22:48Z<p>How about this?</p>
<p>"Source Control systems keep a permanent record of every mistake/bug I have ever made and then later fixed. I am a poor programmer that frequently needs to clean up the crime scene."</p>
http://stackoverflow.com/questions/1792891/mysql-large-query-vs-short-query-with-multiple-ifs/1792933#17929331Answer by JohnFx for MySQL - large query vs Short query with multiple if'sJohnFx2009-11-24T21:09:26Z2009-11-24T21:09:26Z<p>Option 1 by a long shot. Let SQL do what it is designed to do best, and better than procedural code. That is, filtering and sorting data. </p>
<p>Also, it is a much more efficient use of resources (bandwidth, DB utilization, etc) to pull down only the data you need from the server.</p>
http://stackoverflow.com/questions/1792656/should-nulls-be-handled-in-code-or-in-the-database-advantages-and-disadvantages/1792901#17929012Answer by JohnFx for Should NULLS be handled in code or in the database? Advantages and Disadvantages?JohnFx2009-11-24T21:02:35Z2009-11-24T21:02:35Z<p>You are intermixing an implementation concern with a logical data architecture concern. </p>
<p>You should decide whether or not to allow nulls in a field purely based on whether it accurately models the data you expect to store in the database. Part of the confusion, as a few others have pointed out, is that null and empty strings are not just two ways of storing the same information. </p>
<p>Null means either there is no value or the value is unkown.<br>
Empty string means there is a value and it is an empty string.</p>
<p>Let me demonstrate with an example. Say for example you have a middle name field and need to differentiate between situations where the middle name hasn't been populated and when the person doesn't have a middle name. Use the empty string to indicate that there is no middle name and null to indicate it hasn't been entered.</p>
<p>In almost all cases where a null makes sense in terms of the data it they should be handled in the application code, not the database under the assumption that the DB needs to differentiate between two different states.</p>
<p><strong>The Short Version:</strong> Don't pick null vs empty string based on performance/storage concerns in the DB, pick the one that best models the information you are trying to store.</p>
http://stackoverflow.com/questions/1609707/how-to-backup-your-data-with-hosted-issue-tracking/1786632#17866320Answer by JohnFx for How to backup your data with hosted issue tracking?JohnFx2009-11-23T22:52:14Z2009-11-23T22:52:14Z<p>You can do this with <a href="http://www.fogcreek.com/FogBugz/IntrotoOnDemand.html" rel="nofollow">FogBugz on Demand</a>. Here is a scrape right off the "Your account" screen: </p>
<blockquote>
<p><strong>Download Your Database:</strong><br>
You can download your FogBugz database in
three different formats. The FogBugz
database format (schema) is documented
<a href="http://www.fogcreek.com/FogBugz/KB/dbsetup/FogBugzSchema.html" rel="nofollow">here</a>.</p>
<ol>
<li>SQL Server 2000</li>
<li>Access – This format is temporarily unavailable</li>
<li>MySQL</li>
</ol>
</blockquote>
http://stackoverflow.com/questions/1770410/how-to-do-unit-testing-in-visual-studio-2005/1770432#17704320Answer by JohnFx for How to do unit testing in Visual Studio 2005?JohnFx2009-11-20T13:29:57Z2009-11-20T13:36:01Z<p>If you upgrade to VS 2008, they changed their stance and included unit testing in the non Team suite level versions of the IDE.</p>
http://stackoverflow.com/questions/1753345/align-a-div-using-css/1753364#17533641Answer by JohnFx for Align a div using CSSJohnFx2009-11-18T02:58:19Z2009-11-18T02:58:19Z<p>You tried this yet? </p>
<pre><code>#container{
width: 780px ;
margin-left: auto ;
margin-right: auto ;
}
</code></pre>
<p>You shouldn't need the nested div with this approach. According to the <a href="http://www.thesitewizard.com/css/center-div-block.shtml" rel="nofollow">source</a> ...</p>
<blockquote>
<p>"The code above has been tested with
IE 6, 7, Firefox, Opera and Safari."</p>
</blockquote>
http://stackoverflow.com/questions/1752964/how-do-i-make-sure-a-file-path-is-safe-in-c/1752995#17529950Answer by JohnFx for How do I make sure a file path is safe in C#?JohnFx2009-11-18T01:15:38Z2009-11-18T01:15:38Z<p>The safest way, if it is an option (you are using windows auth), is to make it a non-issue by using Active Directory rights on the folders so it doesn't matter if the user attempts to access a directory that is not valid.</p>
<p>Absent that, store the files so that the path is abstracted from the user. That is, use whatever name the user provides as a lookup in a table that has the REAL path to the file.</p>
<p>Cannolocalization protection is tricky business and it is dangerous to try and outthink a potential attacker. </p>
http://stackoverflow.com/questions/1713114/net-random-number-or-number-of-free-bytes-in-memory/1713154#17131541Answer by JohnFx for .NET: Random number or number of free bytes in memory?JohnFx2009-11-11T05:10:54Z2009-11-11T05:10:54Z<p>Why re-invent the wheel when there is a very nice one available here: <a href="http://www.random.org/" rel="nofollow">Random.org</a> ?</p>
<blockquote>
<p>RANDOM.ORG offers true random numbers
to anyone on the Internet. The
randomness comes from atmospheric
noise, which for many purposes is
better than the pseudo-random number
algorithms typically used in computer
programs. People use RANDOM.ORG for
holding drawings, lotteries and
sweepstakes, to drive games and
gambling sites, for scientific
applications and for art and music.</p>
</blockquote>
<p><strong>Disclaimer:</strong> I am not affiliated in any way with this site, nor can I vouch for the quality of what they offer. I just personally think it is a pretty cool idea.</p>
http://stackoverflow.com/questions/997342/why-does-asp-net-radiobutton-and-checkbox-render-inside-a-span/1711516#17115161Answer by JohnFx for Why does ASP.Net RadioButton and CheckBox render inside a Span?JohnFx2009-11-10T21:56:20Z2009-11-10T21:56:20Z<p>This was driving me crazy too until I found the inputAttributes property.</p>
<p>For example, here is how to add a class directly on the checkbox control without the span nonsense: </p>
<pre><code>myCheckBoxControl.InputAttributes.Add("class", "myCheckBoxClass")
</code></pre>
http://stackoverflow.com/questions/1710812/elegant-syntax-for-assigning-value-from-possibly-null-db-value/1710917#17109170Answer by JohnFx for Elegant syntax for assigning value from possibly null db valueJohnFx2009-11-10T20:20:53Z2009-11-10T20:20:53Z<p>To me, the cleanest solution is to remove it from the business logic tier altogether and just make the query return a non-null value to the reader in the first place</p>
<p>For example if using SQL Server..</p>
<pre><code>SELECT IsNull(SalesAmount,0) ...
</code></pre>
http://stackoverflow.com/questions/1671432/how-to-add-a-custom-field-to-the-project-administration-page-using-the-fogbugz-pl/1701931#17019311Answer by JohnFx for How to add a custom field to the Project administration page using the FogBugz plugin API?JohnFx2009-11-09T15:53:11Z2009-11-09T18:47:16Z<p>It is definitely possible. Check out these interfaces in the documentation to get started:</p>
<ul>
<li>IPluginProjectDisplay </li>
<li>IPluginProjectCommit</li>
</ul>
<p>BTW: You might have more luck with questions on FogBugz and plugin development on the <a href="http://fogbugz.stackexchange.com/" rel="nofollow">FogBugz StackExchange site</a>.</p>
http://stackoverflow.com/questions/1695170/jquery-how-can-i-replace-a-tag-without-disturbing-the-content1JQuery: How can I replace a tag without disturbing the content?JohnFx2009-11-08T02:38:55Z2009-11-08T17:59:08Z
<p>I'm looking for a technique using JQuery to remove an html tag (both opening and closing) without disturbing the content.</p>
<p><strong>For example, given this markup...</strong> </p>
<pre><code><div id="myDiv">
Leave My Content alone!
</div>
</code></pre>
<p>I want to get to this...</p>
<pre><code><span id="#mySpan">
Leave My Content Alone!
</span>
</code></pre>
<p><strong>What I've tried:</strong><br>
I thought about $("#myDiv").remove or $("#myDiv").replaceWith, but both of them destroy the contents of the tag.</p>
<p>As always, your assistance is appreciated!</p>
http://stackoverflow.com/questions/1910433/asp-net-impersonation-setup/1910458#1910458Comment by JohnFx on asp.net impersonation setupJohnFx2009-12-15T21:18:49Z2009-12-15T21:18:49Z...unless you are using Kerberos.http://stackoverflow.com/questions/1908454/using-0-1-versus-y-n-versus-t-f-in-a-logical-boolean-database-field/1908470#1908470Comment by JohnFx on Using [0,1] versus ["Y","N"] versus ["T","F"] in a logical/boolean database field?JohnFx2009-12-15T16:08:18Z2009-12-15T16:08:18ZNot if they are sending the data in some kind of text format like CSV.http://stackoverflow.com/questions/1908454/using-0-1-versus-y-n-versus-t-f-in-a-logical-boolean-database-field/1908471#1908471Comment by JohnFx on Using [0,1] versus ["Y","N"] versus ["T","F"] in a logical/boolean database field?JohnFx2009-12-15T16:07:03Z2009-12-15T16:07:03Z+1 for delicious sarcasm.http://stackoverflow.com/questions/1908312/how-do-i-concatenate-html-as-a-string-in-vba/1908416#1908416Comment by JohnFx on How do I concatenate html as a string in VBA?JohnFx2009-12-15T16:05:52Z2009-12-15T16:05:52ZNo worries. I've had to retract my share of answers too. Personally I hate that syntax for embedding quotes, but it does work. =)http://stackoverflow.com/questions/1908312/how-do-i-concatenate-html-as-a-string-in-vba/1908339#1908339Comment by JohnFx on How do I concatenate html as a string in VBA?JohnFx2009-12-15T15:55:47Z2009-12-15T15:55:47Z-1: Doubling quotes in VBA definitely works. I just reconfirmed it.http://stackoverflow.com/questions/1908312/how-do-i-concatenate-html-as-a-string-in-vbaComment by JohnFx on How do I concatenate html as a string in VBA?JohnFx2009-12-15T15:53:10Z2009-12-15T15:53:10ZSo what is the problem you are experiencing exactly? The only obvious problem I see with your code is that you don't have a space before the underscore at the end of the first line.http://stackoverflow.com/questions/1896325/advantages-of-vb-net-over-vb6-for-crud-application-development/1898963#1898963Comment by JohnFx on Advantages of vb.net over vb6 for CRUD application developmentJohnFx2009-12-14T04:59:29Z2009-12-14T04:59:29ZKris: You are my hero for this week. I just wish I could upvote you some rep for that comment!http://stackoverflow.com/questions/1858470/technology-choice-for-redesigning-an-old-visualbasic-application/1858486#1858486Comment by JohnFx on Technology choice for redesigning an old VisualBasic-ApplicationJohnFx2009-12-14T04:49:10Z2009-12-14T04:49:10ZI disagree on the VB6-VB.NET being a rewrite. The conversion tools in Visual studio are pretty good. They don't get you 100% of the way there, but I've used it to port a fairly large VB6 codebase to VB.NET in a relatively short amount of time (a few days).http://stackoverflow.com/questions/1870305/mysql-accounts-aging-reportComment by JohnFx on MySQL Accounts Aging ReportJohnFx2009-12-08T22:32:00Z2009-12-08T22:32:00ZI'd love to help! Where should I send my proposal for consulting services?http://stackoverflow.com/questions/1863376/check-user-is-logged-in-using-jquery/1863467#1863467Comment by JohnFx on Check user is logged in using JqueryJohnFx2009-12-08T18:36:48Z2009-12-08T18:36:48ZA few suggestions 1) instead o using JQuery to turn on the voting link, add the function to the link when you generate the page on the server and send it down with the link activated or deactivated as needed. 2) When the vote is submitted to the server, have the server re-check that the user is allowed to vote, even if through client-side code you wouldn't have expected them to have an active link.http://stackoverflow.com/questions/1863533/session-expiring-and-throwing-exception/1863543#1863543Comment by JohnFx on session expiring and throwing exceptionJohnFx2009-12-08T00:20:49Z2009-12-08T00:20:49ZTry Server.Transfer() instead of Response.Redirect() and see if you have better luck with that.http://stackoverflow.com/questions/1839196/sql-query-to-replace-all-occurrences-of-space-in-a-table-with-underscore/1850585#1850585Comment by JohnFx on SQL query to replace all occurrences of space in a table with underscoreJohnFx2009-12-05T01:09:53Z2009-12-05T01:09:53ZAlso, if it is a one off (as I also mentioned) then the performance is probably not a major concern. I've done this on tables with millions of rows. I will add one additional caveat though, the locking this does on the table is pretty brutal, so I'd avoid it in situations where there are a lot of other users. It works like a charm in data analysis type projects though.http://stackoverflow.com/questions/1839196/sql-query-to-replace-all-occurrences-of-space-in-a-table-with-underscore/1850585#1850585Comment by JohnFx on SQL query to replace all occurrences of space in a table with underscoreJohnFx2009-12-05T01:08:12Z2009-12-05T01:08:12ZThe OP specifically states that he only has a few thousand rows AND my answer specifically includes the disclaimer that it is only to be used for smaller tables. What more do you want, David?http://stackoverflow.com/questions/1850594/mysql-how-to-reorder-a-table/1850613#1850613Comment by JohnFx on MYSQL: how to "reorder" a tableJohnFx2009-12-05T00:48:46Z2009-12-05T00:48:46Z The only time I'd suggest adding an extra column for sorting would be when the sort can't be determined by other columns in the table. For example, if the application allowed users to re-order the items arbitrarily. http://stackoverflow.com/questions/1850424/asp-net-inline-code-myboolvalComment by JohnFx on asp.net inline code <%# MyboolVal %>JohnFx2009-12-05T00:23:03Z2009-12-05T00:23:03ZCan you include the line that the compile error is thrown on?