User Matt Rogish - Stack Overflowmost recent 30 from stackoverflow.com2009-12-05T12:34:33Zhttp://stackoverflow.com/feeds/user/2590http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1664208/encode-quotes-in-html-body0Encode quotes in HTML body?Matt Rogish2009-11-02T22:43:33Z2009-11-03T00:51:42Z
<p>Should I encode quotes (such as " and ' -> <code>&rdquo;</code> and <code>&rsquo;</code>) in my HTML body (e.g. convert <code><p>Matt's Stuff</p></code> to <code><p>Matt&rsquo;s Stuff</p></code>)? I was under the impression I should, but a co-worker said that it was no big deal. I'm dubious but I can't find anything that says it is verboten. Am I mistaken? Is it a best-practice to encode? Or is it simply useless?</p>
http://stackoverflow.com/questions/1630117/sybase-enhancment/1634594#16345940Answer by Matt Rogish for sybase enhancmentMatt Rogish2009-10-28T00:51:52Z2009-10-28T00:51:52Z<p>Depending on how you've written your stored procs they may need modified but I highly doubt it unless you're using esoteric things or querying system tables directly (they changed a bunch of sys* tables so if you are using them, you might get bad data).</p>
<p>Sybase generally keeps backward compatibility and I'm not aware of any major T-SQL deprecations in 15 (rowcnt() and some traceflags). ASE 15 has a greatly enhanced query processor but if it screws up your queries you can back it out to ASE 12.5 mode.</p>
<p>Anyway, as always you should test out your upgrade beforehand, but I doubt you'll see many issues.</p>
http://stackoverflow.com/questions/1603472/indexing-performance-bigint-vs-varchar/1603609#16036092Answer by Matt Rogish for Indexing Performance BigInt vs VarCharMatt Rogish2009-10-21T21:02:21Z2009-10-21T21:02:21Z<p>Two things that can affect index (and overall DB) performance:</p>
<p>1) Size of index page
2) Comparison speed</p>
<p>So for the first one, in general the smaller your index/data page is, the more pages you can hold in memory, and the greater the likelihood that a given query will be able to find the page in cache vs. slow disk. Thus, you'd want to use the smallest datatype that can comfortably fit your existing and proposed future needs.</p>
<p>BigInt is 8 bytes; the VARCHAR's can be smaller if the size of the data is small, so it really depends on your data. However, 10 character long numbers may be able to fit in SQL Server's INT datatype (<a href="http://msdn.microsoft.com/en-us/library/ms187745.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms187745.aspx</a>) depending on the size, so int vs. bigint depends on your domain. </p>
<p>Also, if your entire row is of a fixed length there are some certain optimizations SQL Server can do in scans since it knows exactly where on disk the next row will be (assuming the rows are contiguous). An edge case, to be sure, but it can help.</p>
<p>For the second one, it is faster to compare integers than unicode strings. So, if you are only storing number data, you definitely should switch to an appropriately sized numeric datatype.</p>
<p>Finally, Marc is correct that this becomes a very convoluted primary key. However, if your data warrants it -- such as these being your ONLY columns and you are never doing add'l queries -- you may be perfectly fine making the optimized version (with Bigints etc.) your primary key. Kind of a code smell, though, so I will echo his advise to really take a look at your data model and see if this is correct.</p>
http://stackoverflow.com/questions/1597442/subquery-using-exists-1-or-exists/1597487#15974879Answer by Matt Rogish for Subquery using Exists 1 or Exists *Matt Rogish2009-10-20T21:37:36Z2009-10-21T18:33:48Z<p>No. This has been covered a bazillion times. SQL Server is smart and knows it is being used for an EXISTS, and returns NO DATA to the system. </p>
<p>Quoth Microsoft:
<a href="http://technet.microsoft.com/en-us/library/ms189259.aspx?ppud=4" rel="nofollow">http://technet.microsoft.com/en-us/library/ms189259.aspx?ppud=4</a></p>
<blockquote>
<p>The select list of a subquery
introduced by EXISTS almost always
consists of an asterisk (*). There is
no reason to list column names because
you are just testing whether rows that
meet the conditions specified in the
subquery exist.</p>
</blockquote>
<p>Also, don't believe me? Try running the following:</p>
<pre><code>SELECT whatever
FROM yourtable
WHERE EXISTS( SELECT 1/0
FROM someothertable
WHERE a_valid_clause )
</code></pre>
<p>If it was actually doing something with the SELECT list, it would throw a div by zero error. It doesn't.</p>
<p>EDIT: Note, the SQL Standard actually talks about this.</p>
<p>ANSI SQL 1992 Standard, pg 191 <a href="http://www.contrib.andrew.cmu.edu/~shadow/sql/sql1992.txt" rel="nofollow">http://www.contrib.andrew.cmu.edu/~shadow/sql/sql1992.txt</a></p>
<blockquote>
<pre><code> 3) Case:
a) If the <select list> "*" is simply contained in a <subquery> that is immediately contained in an <exists predicate>, then the <select list> is equivalent to a <value expression> that is an arbitrary <literal>.
</code></pre>
</blockquote>
http://stackoverflow.com/questions/98096/sql-server-is-selecting-a-literal-value-faster-than-selecting-a-field/1602714#16027140Answer by Matt Rogish for SQL Server: Is SELECTing a literal value faster than SELECTing a field?Matt Rogish2009-10-21T18:33:08Z2009-10-21T18:33:08Z<p>For google's sake, I'll update this question with the same answer as this one (<a href="http://stackoverflow.com/questions/1597442/subquery-using-exists-1-or-exists/">http://stackoverflow.com/questions/1597442/subquery-using-exists-1-or-exists/</a>) since (currently) an incorrect answer is marked as accepted. Note the SQL standard actually says that EXISTS via * is identical to a constant. </p>
<p>No. This has been covered a bazillion times. SQL Server is smart and knows it is being used for an EXISTS, and returns NO DATA to the system. </p>
<p>Quoth Microsoft:
<a href="http://technet.microsoft.com/en-us/library/ms189259.aspx?ppud=4" rel="nofollow">http://technet.microsoft.com/en-us/library/ms189259.aspx?ppud=4</a></p>
<blockquote>
<p>The select list of a subquery
introduced by EXISTS almost always
consists of an asterisk (*). There is
no reason to list column names because
you are just testing whether rows that
meet the conditions specified in the
subquery exist.</p>
</blockquote>
<p>Also, don't believe me? Try running the following:</p>
<pre><code>SELECT whatever
FROM yourtable
WHERE EXISTS( SELECT 1/0
FROM someothertable
WHERE a_valid_clause )
</code></pre>
<p>If it was actually doing something with the SELECT list, it would throw a div by zero error. It doesn't.</p>
<p>EDIT: Note, the SQL Standard actually talks about this.</p>
<p>ANSI SQL 1992 Standard, pg 191 <a href="http://www.contrib.andrew.cmu.edu/~shadow/sql/sql1992.txt" rel="nofollow">http://www.contrib.andrew.cmu.edu/~shadow/sql/sql1992.txt</a></p>
<blockquote>
<pre><code> 3) Case:
a) If the <select list> "*" is simply contained in a <subquery> that is immediately contained in an <exists predicate>, then the <select list> is equivalent to a <value expression> that is an arbitrary <literal>.
</code></pre>
</blockquote>
http://stackoverflow.com/questions/1499388/rails-validates-uniqueness-of-scoped-by-date0Rails: Validates uniqueness of scoped by dateMatt Rogish2009-09-30T16:53:20Z2009-09-30T20:10:24Z
<p>I have a Rails model that should only allow saving/updating of a model once per day per user. I have a callback to do the Find by user and date then add to errors but this is ugly and feels un-rails-like. I have the typical created_at / updated_at columns (and the time portion is significant/I need to keep it).</p>
<p>So I figure I could either:</p>
<p>1) Create another model attribute which is just the date of creation and scope by that (bleh)</p>
<p>2) Use the :scope attribute but somehow get just the date part of created_at, e.g. validates_uniqueness_of :user, :scope => :created_at.to_date (doesn't work, obviously)</p>
<p>3) Validate unless => Proc.new{ |o| Finder that matches my existing callback } (gross)</p>
<p><a href="http://ar.rubyonrails.org/classes/ActiveRecord/Validations/ClassMethods.html#M000086" rel="nofollow">http://ar.rubyonrails.org/classes/ActiveRecord/Validations/ClassMethods.html#M000086</a></p>
<p>There will not be an overwhelming number of these, but I'd rather that it is done in SQL instead of Ruby (for obvious scalability reasons).</p>
<p>Any thoughts? Is there a better way?</p>
http://stackoverflow.com/questions/1474459/is-it-considered-bad-taste-to-put-your-gpa-in-your-resume-when-applying-for-a-pro/1474479#147447919Answer by Matt Rogish for Is it considered bad taste to put your GPA in your resume when applying for a programming job?Matt Rogish2009-09-24T22:17:28Z2009-09-24T22:17:28Z<p>If you have a good GPA and you're fresh out of college, put it there. After you've had a job or two, take it off (and move the Edu part after the job history).</p>
http://stackoverflow.com/questions/1472651/use-select-avg-with-parameters-select-avgparameter-sql/1472680#14726804Answer by Matt Rogish for Use SELECT AVG with parameters "SELECT AVG(@parameter)" SQL!!Matt Rogish2009-09-24T16:07:14Z2009-09-24T16:07:14Z<p>You have to use dynamic SQL</p>
<p>e.g.</p>
<pre><code>EXEC( 'SELECT AVG( [' + @var + '] ) AS Aver FROM ListVal' )
</code></pre>
http://stackoverflow.com/questions/79853/network-map-algorithm-that-detects-unmanaged-layer-2-switches4Network Map Algorithm that Detects Unmanaged Layer 2 Switches?Matt Rogish2008-09-17T04:03:17Z2009-09-11T01:48:10Z
<p>I've inherited a network spread out over a warehouse/front office consisting of approximately 50 desktop PCs, various servers, network printers, and routers/switches.</p>
<p>The "intelligent" routers live in the server room. As the company has grown, we've annexed additional space and not very elegantly run various lengths of CAT5 thru the ceilings etc. I've been finding various hubs and switches in the ceilings -- none of which is labeled or documented in any way. </p>
<p>Of course, das blinken-lights tell me that <em>someone</em> is connected to these devices, I just have no way of finding out <em>who</em>.</p>
<p>I can run traditional network map tools (there are tons of these things) and it shows me the IP-based things in the network. That's nice, but information I already have. What I need to know is the network topology -- how the switches (bridges) are interconnected etc.. And since they are off-the-shelf linksys unmanaged-types, they don't respond to SNMP so I can't use that...</p>
<p>What's the best/cheapest tool out there that I can use to analyze and detect things like hubs and switches in the network that don't respond to SNMP? </p>
<p>If there's no tool that you're aware of -- what generalized algorithm would you suggest to find this out? My guess would be that I could look at the MAC forward tables for the devices (switches, desktops, etc.) and build a chain that way, but I don't know if it's possible to get that from an unmanaged switch (let alone a hub).</p>
<p>(This patent has some neat ideas but I can't find any software built with it: <a href="http://www.freepatentsonline.com/6628623.html" rel="nofollow">http://www.freepatentsonline.com/6628623.html</a>)</p>
<p>Thanks!!</p>
http://stackoverflow.com/questions/1329478/increase-so-font-size-via-javascript-doesnt-work-on-my-iphone0Increase SO font size via Javascript doesn’t work on my iPhoneMatt Rogish2009-08-25T16:41:15Z2009-08-25T20:01:57Z
<p>So, I've been using this little bit of Javascript (as a bookmark) to increase the font size of various websites I visit on my iPhone's Safari browser (zooming in leads to too much scrolling from side to side).</p>
<p><a href="http://www.everythingicafe.com/forum/iphone-software/increase-font-size-in-safari-without-zooming-9511.html" rel="nofollow">http://www.everythingicafe.com/forum/iphone-software/increase-font-size-in-safari-without-zooming-9511.html</a></p>
<pre><code>javascript:for(i=0;i<document.getElementsByTagName ('*')
.length;i++)void(document.getElementsByTagName('*' )
[i].style.fontSize='18pt');
</code></pre>
<p>However, this doesn't work on any of the StackOverflow sites. Any suggestions on how to fix it?</p>
<p>Poking thru the CSS in FireBug doesn't give me many clues except for a font-size: 100% that is in the p tag.</p>
<p>I tried changing fontSize='115%'); and it changed some of the text but not the question/answer body (the most important stuff!)</p>
http://stackoverflow.com/questions/1325506/validating-date-formats-in-rails/1330051#13300511Answer by Matt Rogish for Validating date formats in railsMatt Rogish2009-08-25T18:19:52Z2009-08-25T18:19:52Z<p>Ahhh! Forcing date formats on the end-user when Rails implicitly converts them is a bad thing for usability, along with being more work for you (as you've seen).</p>
<p>If you've got a date/time attribute in your model, Rails will do its best to convert via Date.Parse (<a href="http://www.ruby-doc.org/core/classes/Date.html#M000644" rel="nofollow">http://www.ruby-doc.org/core/classes/Date.html#M000644</a>), e.g.</p>
<pre><code>u = Somemodel.find :first
u.created_at
=> Tue Nov 20 15:44:18 -0500 2007
u.created_at = '2008/07/03'
=> "2008/07/03"
u.created_at
=> Thu Jul 03 00:00:00 -0400 2008
u.created_at = '05/10/1980'
=> "05/10/1980"
u.created_at
=> Sat May 10 00:00:00 -0400 1980
</code></pre>
http://stackoverflow.com/questions/1303874/why-is-activerecord-not-smart-enough-to-know-that-the-objectid-of-the-father-sho/1303923#13039231Answer by Matt Rogish for Why is ActiveRecord not smart enough to know that the object_id of the father should be equal to the object_id of the parent of each of the father's children?Matt Rogish2009-08-20T04:17:48Z2009-08-20T04:17:48Z<p>Object ID is the pointer (sort of) to the object. The loading of rails objects doesn't "share" memory space, so you're getting a copy of the parent object when you do child.parent. To understand this -- you can do parent.something = foo, and subsequently compare child.parent.something and you'll see they are different. You'd have to re-load the child from the database before it will reflect the changes to the parent object.</p>
<p>However, odds are you're using the wrong ID value. If you want the ActiveRecord ID (e.g. the value of the ID column in your SQL DBMS), use @father.id == child.parent.id</p>
http://stackoverflow.com/questions/1289890/is-sql-server-naming-trailing-space-insensitive/1289911#12899114Answer by Matt Rogish for Is SQL Server Naming trailing space insensitive?Matt Rogish2009-08-17T19:29:33Z2009-08-17T19:29:33Z<blockquote>
<p>If delimited identifiers are used when
naming an object and the object name
contains trailing spaces, SQL Server
stores the name without the trailing
spaces.</p>
</blockquote>
<p><a href="http://msdn.microsoft.com/en-us/library/ms176027%28SQL.90%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms176027%28SQL.90%29.aspx</a></p>
<p>p.s. Delimited identifiers everywhere is a code smell -- they should be used SPARINGLY, not for every identifier.</p>
http://stackoverflow.com/questions/72406/what-development-book-made-the-most-impact-on-you-as-a-developer/72644#7264465Answer by Matt Rogish for What development book made the most impact on you as a developer?Matt Rogish2008-09-16T14:06:00Z2009-08-13T11:32:21Z<p><a href="http://en.wikipedia.org/wiki/The%5FMythical%5FMan-Month" rel="nofollow" title="The Mythical Man-Month">The Mythical Man-Month</a> is a great book; "no silver bullet", "second-system effect", "surgical teams", etc. all helped my development on a meta level. Sure, I couldn't code quick sort any better after reading, but I definitely made better programs.</p>
<p><img src="http://upload.wikimedia.org/wikipedia/en/f/fd/Mythical%5Fman-month%5F%28book%5Fcover%29.jpg" alt="cover image" /></p>
<p><hr /></p>
<p><em>Comments by <a href="http://stackoverflow.com/users/50272/david-berger">David Berger</a></em>:<br />
Having started programming in the era of online tutorials, there weren't so many books per se that I would consider indispensable. But I also dropped into software development from the middle of nowhere in a company where all the developers were experienced and minded their own business, so I kind of missed a lot of the acculturation that people get with an academic program or a cohort of junior developers at a first job learning about team projects. The book is aimed rather abstractly at answering the questions "Why is large-scale software development so hard?" and "What can we do to make it more efficient?" I say rather abstractly, but truth be told there's a lot of history involved: it was a bit challenging for me to imagine what development was like in the '70s and '80s when the essays in this book were written.</p>
http://stackoverflow.com/questions/1267619/is-this-code-on-or-o1/1267749#12677490Answer by Matt Rogish for Is this code O(N) or O(1)Matt Rogish2009-08-12T18:02:22Z2009-08-12T18:02:22Z<p>My guess is you're asking about p.begin() + 2; (most people care about searches more than, say, insertion).</p>
<p>It's simple pointer arithmetic so yes, it's constant-time O(1). If this was a linked-list traversal, then it would be O(n). Of course, this assumes that the implementation of the integer vector list is akin to an array -- namely they're all in contiguous blocks of memory.</p>
<p>See: <a href="http://www.cprogramming.com/tutorial/stl/iterators.html" rel="nofollow">http://www.cprogramming.com/tutorial/stl/iterators.html</a></p>
<blockquote>
<p>Iterators are often handy for
specifying a particular range of
things to operate on. For instance,
the range item.begin(), item.end() is
the entire container, but smaller
slices can be used. This is
particularly easy with one other,
extremely general class of iterator,
the random access iterator, which is
functionally equivalent to a pointer
in C or C++ in the sense that you can
not only increment or decrement but
also move an <strong>arbitrary distance in
constant time</strong> (for instance, jump
multiple elements down a vector).</p>
</blockquote>
http://stackoverflow.com/questions/1229051/rails-passenger-apache-simple-one-off-url-redirect-to-catch-stale-dns-after-serv0Rails/Passenger/Apache: Simple one-off URL redirect to catch stale DNS after server moveMatt Rogish2009-08-04T18:05:36Z2009-08-04T19:47:38Z
<p>One of my rails apps (using passenger and apache) is changing server hosts. I've got the app running on both servers (the new one in testing) and the DNS TTL to 5 minutes. I've been told (and experienced something like this myself) by a colleague that sometimes DNS resolvers slightly ignore the TTL and may have the old IP cached for some time after I update DNS to the new server.</p>
<p>So, after I've thrown the switch on DNS, what I'd like to do is hack the old server to issue a forced redirect to the IP address of the new server for all visitors. Obviously I can do a number of redirects (301, 302) in either Apache or the app itself. I'd like to avoid the app method since I don't want to do a checkin and deploy of code just for this one instance so I was thinking a basic http url redirect would work. Buuttt, there are SEO implications should google visit the old site etc. etc.</p>
<p>How best to achieve the re-direct whilst maintaining search engine niceness?</p>
http://stackoverflow.com/questions/1160512/add-results-from-several-count-queries/1160538#11605388Answer by Matt Rogish for Add results from several COUNT queriesMatt Rogish2009-07-21T17:20:55Z2009-07-21T17:20:55Z<pre><code>SELECT ( SELECT COUNT(*) FROM comments )
+ ( SELECT COUNT(*) FROM tags )
+ ( SELECT COUNT(*) FROM search )
</code></pre>
http://stackoverflow.com/questions/1145006/how-does-google-do-maps-street-view-cursor-following5How does Google do Maps' Street View Cursor "Following"Matt Rogish2009-07-17T18:42:17Z2009-07-17T19:06:35Z
<p>In Google Maps Street View your cursor turns into a rectangular/oval shape as you mouse over different parts of the scene. For example:</p>
<p><a href="http://maps.google.com/?q=loc:+Maryland+Ave+at+e.+26th+st+Baltimore+MD+US&ie=UTF8&z=16&iwloc=A&layer=c&cbll=39.319313,-76.618426&panoid=6W2XgkHoGuf6_SKv0LIL9Q&cbp=12,307.06,,0,3.16" rel="nofollow">http://maps.google.com/?q=loc:+Maryland+Ave+at+e.+26th+st+Baltimore+MD+US&ie=UTF8&z=16&iwloc=A&layer=c&cbll=39.319313,-76.618426&panoid=6W2XgkHoGuf6_SKv0LIL9Q&cbp=12,307.06,,0,3.16</a></p>
<p>As you move the cursor over the building it "hugs" the walls. It's not just as simple as following the intersection because if you continue on to the left you can see the angle change as it hits different faces of the buildings.</p>
<p>Do they do some sort of image analysis to identify faces of the buildings or do they, as they take the picture, do some sort of laser range finder and then later combine it with the picture?</p>
http://stackoverflow.com/questions/1126466/slow-update-primary-key/1126788#11267881Answer by Matt Rogish for slow update (primary key)Matt Rogish2009-07-14T17:19:21Z2009-07-14T17:24:43Z<p>There are a couple things at play here.</p>
<p>First, the SQL statement looks broken. The "FROM" clause in an update is designed to be used as a JOIN'd update. Since you're updating rows with hard-coded values, there's no need to do that.</p>
<p>Secondly, and more esoterically, if the indexes are all correct as you say they are, then perhaps you're dealing with a slow disk I/O for either the initial writes OR the transaction log area (undo in Oracle, logs in SQL Server, etc.).</p>
<p>As a sanity check I'd do two things. One, only update rows that do not already have the conditions set. Many DBMS products will happily perform physical disk I/O for a row that doesn't change (although many don't). Try it with the limit.</p>
<p>Two, apply the update in smaller batches. This can really help with log contention and with slower disks.</p>
<p>So, something like the following to initially try:</p>
<pre><code>UPDATE auditdata
SET TATCallType = '12'
, TATCallUnit = '1'
FROM auditdata
WHERE TATCallType <> '12'
AND TATCallUnit <> '1'
AND EXISTS( SELECT *
FROM Auditdata_sms_12 a_sns
WHERE a_sns.id = auditdata.ID )
</code></pre>
<p>If you want to do batches, in SQL Server it's pretty easy:</p>
<pre><code>SET ROWCOUNT 2000
UPDATE ...
(run continually in a loop via T-SQL or by hand until @@ROWCOUNT = 0)
SET ROWCOUNT 0
</code></pre>
http://stackoverflow.com/questions/1105260/sanity-check-floats-as-primary-keys/1105284#11052842Answer by Matt Rogish for Sanity Check: Floats as primary keys?Matt Rogish2009-07-09T17:17:07Z2009-07-09T18:18:27Z<p>Is it a NUMERIC( x, y) format and an IDENTITY? If so, it might be an upgrade from an older version of SQL Server. Back-in-the-day IDENTITY could only be a NUMERIC format, not the common INT we use today.</p>
<p>Otherwise, there's no way to tell if a float is suitable as a primary key -- it depends upon your domain. It's a bit harder to compare (IEEE INT is more efficient than float) and most people use monotonically increasing numbers (IDENTITY), so integers are often what people really want. </p>
<p>Since it looks like you're storing ints:</p>
<p><strong>To answer the original question more directly: If you're storing ints, use the integer datatype. It's more efficient to store and compare.</strong></p>
http://stackoverflow.com/questions/1058765/mysql-which-key-is-more-optimized/1058915#10589154Answer by Matt Rogish for MySQL - which key is more optimized Matt Rogish2009-06-29T15:25:19Z2009-06-29T15:30:45Z<p>The performance of a SQL DBMS query depends GREATLY on a large number of factors - how fragmented the table (or index) is, the freshness and amount of data/index statistics, the size of your data caches/how much CPU/memory, how many rows are in the table, the query construction, etc. etc. etc.</p>
<p>Although profiling queries is a necessary part of performance tuning it alone is not sufficient -- it must be part of a larger query optimization strategy. Saying "test it and see" is not very helpful (and in my opinion sometimes dangerous!) in the general case because of the non-deterministic nature of the query optimization process. One day running it can be just fine, the next slow (or vice versa). </p>
<p><strong>Without an understanding of the fundamentals of MySQL index construction, what queries will be used, and how queries will use indexes any ad hoc tests are in the best case lucky guesses and in the worst case ticking time bombs.</strong></p>
<p>In this case there IS a rule of thumb due to the nature of how MySQL B-Trees are constructed. From the MySQL internals page: <a href="http://forge.mysql.com/wiki/MySQL_Internals_MyISAM#The_.MYI_file" rel="nofollow">http://forge.mysql.com/wiki/MySQL_Internals_MyISAM#The_.MYI_file</a> you can see that in the case of a non-unique BTREE index on two columns MySQL will store the concatenated values in the order that <strong>you</strong> specify. In that specific example they stored ASCII (or UNICODE) but in the case of integer values it will do something similar (open a hex editor and decode the actual values if you are intrepid enough!) ( also ref'd here <a href="http://dev.mysql.com/doc/refman/5.0/en/multiple-column-indexes.html" rel="nofollow">http://dev.mysql.com/doc/refman/5.0/en/multiple-column-indexes.html</a> ).</p>
<p>So, the rule of thumb is to put the most <em>selective</em> ( ref <a href="http://www.akadia.com/services/ora_index_selectivity.html" rel="nofollow">http://www.akadia.com/services/ora_index_selectivity.html</a> ) value first because that gives the query processor the most information to narrow down the # of rows to be processed. Placing a less selective key FIRST will force the optimizer to consider more rows and, unless that is what you EXACTLY want, will be suboptimal <em>by design</em>.</p>
<p>Also to piggy back on what Eric said: MySQL (or other DBMS') can use any/all keys in increasing fashion to help narrow down the search -- e.g. if you place an index on( A, B, C ) then queries that have WHERE A = .. B = can use it (depending), queries that use WHERE A = can use it, but queries that ask for WHERE C = cannot (usually).</p>
<p>So, it also depends on the nature of your queries -- if you always ask for WHERE pid = AND sid = then the most selective one should go first (product ID) but if you often ask for WHERE sid = XXXX by itself, then the sid should go first (OR just create another index for that situation if there's varying amounts). The trade-off here is for time/space -- having an additional index will satisfy a different class of queries at the expense of additional disk space and increased write I/O.</p>
<p>Finally, if you are using INNODB you can specify a "clustered" index that actually sorts rows on disk (MyISAM tables are basically heaps). If you cluster the rows on disk by sid, pid then it will actually group them together so you can fetch entire BLOCKS (or pages) of products at a time which will use vastly less I/O than BTREEs alone (ref <a href="http://www.xaprb.com/blog/2006/07/04/how-to-exploit-mysql-index-optimizations/" rel="nofollow">http://www.xaprb.com/blog/2006/07/04/how-to-exploit-mysql-index-optimizations/</a> )</p>
<p><strong>So, you can see why "test it and see" is useful but without an understanding of MySQL index fundamentals you miss out on a whole class of optimizations.</strong></p>
http://stackoverflow.com/questions/1038950/what-is-be-the-most-appropriate-data-type-for-storing-an-ip-address-in-sql-server/1039020#10390200Answer by Matt Rogish for What is be the most appropriate data type for storing an IP address in SQL server?Matt Rogish2009-06-24T15:15:56Z2009-06-24T15:15:56Z<p>I've had some success with making four smallint (or whatever smallish integer datatype you prefer) columns -- one for each octet. Then, you can make a view which smashes them together as a char string (for display) or then you can write simple operators to determine who all is in what subnet etc.</p>
<p>It is quite fast (provided you do proper indexing) and also allows for really easy querying (no string manipulation!). </p>
http://stackoverflow.com/questions/997363/database-concurrency-needed-when-adding-rows-best-practice/997407#997407-1Answer by Matt Rogish for Database Concurrency Needed when ADDING rows - Best Practice?Matt Rogish2009-06-15T17:46:09Z2009-06-15T17:59:16Z<pre><code>UPDATE yourtable
SET location = 'B3'
WHERE primary-key = 1231421
AND location = 'B2'
</code></pre>
<p>If someone's already moved it out of B2, then nothing will happen. This seems better than simply blindly incrementing the location; the user wanted it to go from B2 to B3, not push it one forward.</p>
<p>Alright, given the new row requirement:</p>
<pre><code>INSERT INTO yourtable ( item, location ) VALUES( 123, 'B3' )
WHERE NOT EXISTS( SELECT * FROM yourtable WHERE item = 123 AND location = B3 )
</code></pre>
<p>let the database do the work for you.</p>
http://stackoverflow.com/questions/685102/foreign-key-issues-in-rails/953466#9534661Answer by Matt Rogish for Foreign Key Issues in RailsMatt Rogish2009-06-04T22:35:07Z2009-06-04T22:35:07Z<p>To drop the ID column, simply don't create it to begin with.</p>
<pre><code> create_table :cards_rules, :id => false do ...
</code></pre>
http://stackoverflow.com/questions/951285/db-design-1st-normal-form-and-repeating-groups/951369#9513692Answer by Matt Rogish for DB Design: 1st Normal Form and Repeating GroupsMatt Rogish2009-06-04T15:42:54Z2009-06-04T15:42:54Z<p>Design 2 and Design 4 are the best ways to go provided the results will not always be present (aka NULLs in Desigin 1). If they always are taken, then the first design is fine. </p>
<p>I believe repeating groups in SQL would actually be if you have a column stuffed with add'l values e.g. Phone_Number contains "123-444-4444,123-333-3334" etc.</p>
<p>Anyway, the later designs are suboptimal -- you continue to take that to the final level and have the "One True Lookup Table" <a href="http://www.dbazine.com/ofinterest/oi-articles/celko22" rel="nofollow">http://www.dbazine.com/ofinterest/oi-articles/celko22</a> or Entity Attribute Value <a href="http://tonyandrews.blogspot.com/2004/10/otlt-and-eav-two-big-design-mistakes.html" rel="nofollow">http://tonyandrews.blogspot.com/2004/10/otlt-and-eav-two-big-design-mistakes.html</a></p>
<p><a href="http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:10678084117056" rel="nofollow">http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:10678084117056</a></p>
<p>Either way, it's almost always a bad thing. Although they may share a common datatype/domain, the <em>meaning</em> differs -- thus they should remain individual attributes (maxtemp, mintemp, etc.)</p>
http://stackoverflow.com/questions/928130/how-to-interview-dev-hosting-shops1How to interview dev / hosting shops?Matt Rogish2009-05-29T20:59:33Z2009-05-31T21:15:35Z
<p>We're looking at starting a new, specialized (customer facing) web app; there are a few paths we can take -- we can code and host in house, we can code in-house and host externally, we can have someone else do the coding and hosting, COTS, etc.</p>
<p>Let's assume I've reasonable ways of estimating quality of COTS and in-house development efforts.</p>
<p>The part I have difficulty is determining how "good" a dev / hosting shop is. What sorts of questions should I be asking them? What about a Joel Test for dev shops? I assume some of the Joel Test questions apply (since if a dev shop is good to work for, hopefully they will produce good code) but it also needs to involve things like:</p>
<p>1) Server architecture (assuming 99.99% uptime)</p>
<p>2) Customer service / QA</p>
<p>3) Responsiveness to service outages, etc.</p>
<p>4) Contract items</p>
<p>Some questions I can think of:</p>
<p>Do you have a bug database?</p>
<p>How do you handle new change requests / bugs? </p>
<p>Do you guarantee turnaround times?</p>
<p>Are new requests billed differently than bugs?</p>
<p>How do you define bugs?</p>
<p>Do you have testers? How many?</p>
<p>Do you have your own data center? Do you lease rackspace / co-loc? Dedicated NOC staff?</p>
<p>What is the size of your development staff? In-house or outsourced?</p>
<p>How many customers do you have? Can I talk with some of them?</p>
<p>What is your warranty period?</p>
http://stackoverflow.com/questions/926076/how-did-you-estimate-the-time-you-will-spent-before-starting-a-web-development-pr/926113#9261133Answer by Matt Rogish for How did you estimate the time you will spent before starting a web development project?Matt Rogish2009-05-29T13:57:41Z2009-05-29T13:57:41Z<p>You cannot estimate without knowing what you are going to do; you need to break the task up into chunks that you can reasonably estimate -- down to the HOUR (nothing less than 1 hour, round up)</p>
<p>e.g. "Make me a login page"</p>
<p>HTML login form - 1 hour
Database table for users - 2 hours
etc. etc.</p>
<p>Then, pull up a calendar and try and fill in the hours -- okay on Monday I can work about 5 hours, so that takes care of one task. Can you reasonably multitask? Probably, but don't say you can do 3 x 4 hour tasks in one day, even if you do have 12 hours to "spare" (that's too much).</p>
<p>Look at weekends; will you work them? Probably not, so include that. Gotta get your oil changed? Wedding coming up? Make sure to factor that in. Include some fudge time in case you can't work some days (kids get sick, power goes out)</p>
http://stackoverflow.com/questions/880524/why-is-it-not-good-to-have-a-primary-key-on-a-join-table/880648#88064813Answer by Matt Rogish for Why is it not good to have a primary key on a join table?Matt Rogish2009-05-19T01:54:09Z2009-05-19T20:16:37Z<p>Some notes:</p>
<ol>
<li>The combination of category_id and post_id is unique in of itself, so an additional ID column is redundant and wasteful</li>
<li>The phrase "not good to have a primary key" is incorrect in the screencast. You still have a Primary Key -- it is just made up of the two columns (e.g. CREATE TABLE foo( cid, pid, PRIMARY KEY( cid, pid ) ). For people who are used to tacking on ID values everywhere this may seem odd but in relational theory it is quite correct and natural; the screencast author would better have said it is "not good to have an implicit integer attribute called 'ID' as the primary key".</li>
<li>It is redundant to have the extra column because you will place a unique index on the combination of category_id and post_id anyway to ensure no duplicate rows are inserted</li>
<li>Finally, although common nomenclature is to call it a "composite key" this is also redundant. The term "key" in relational theory is actually the set of zero or more attributes that uniquely identify the row, so it is fine to say that the primary key is category_id, post_id</li>
<li>Place the MOST SELECTIVE column FIRST in the primary key declaration. A discussion of the construction of b(+/*) trees is out of the scope of this answer ( for some lower-level discussion see: <a href="http://www.akadia.com/services/ora_index_selectivity.html" rel="nofollow">http://www.akadia.com/services/ora_index_selectivity.html</a> ) but in your case, you'd probably want it on post_id, category_id since post_id will show up less often in the table and thus make the index more useful. Of course, since the table is so small and the index will be, essentially, the data rows, this is not very important. It would be in broader cases where the table is wider.</li>
</ol>
http://stackoverflow.com/questions/853495/table-join-efficiency-question/853623#8536233Answer by Matt Rogish for Table Join Efficiency QuestionMatt Rogish2009-05-12T16:15:14Z2009-05-12T16:15:14Z<p>It doesn't matter. It may actually be WORSE since you are taking control away from the optimizer which generally knows best.</p>
<p>However, remember if you are doing a JOIN and only including a column from one of the tables that it is QUITE OFTEN better to re-write it as a series of EXISTS statements -- because that's what you really mean. JOINs (with some exceptions) will join matching rows which is a lot more work for the optimizer to do. </p>
<p>e.g.</p>
<pre><code>SELECT t1.id1
FROM table1 t1
INNER JOIN table2 ON something = something
</code></pre>
<p>should almost always be</p>
<pre><code>SELECT id1
FROM table1 t1
WHERE EXISTS( SELECT *
FROM table2
WHERE something = something )
</code></pre>
<p>For simple queries the optimizer may reduce the query plans into identical ones. Check it out on your DBMS.</p>
<p>Also this is a code smell and probably should be changed:</p>
<p>JOIN (SELECT request_id
FROM request_tbl
WHERE request_status='A')</p>
<p>to</p>
<pre><code>SELECT result
FROM request
WHERE EXISTS(...)
AND request_status = 'A'
</code></pre>
http://stackoverflow.com/questions/820300/how-long-to-get-used-to-coding-with-a-dvorak-keyboard/820321#8203212Answer by Matt Rogish for How long to get used to coding with a Dvorak keyboard?Matt Rogish2009-05-04T14:20:47Z2009-05-04T14:20:47Z<p>Regular typing took me a few weeks. Programming took MUCH longer because braces, parens, etc. are all somewhere else -- and my hands are hard wired to do shift-[ and shift-9. You can always re-map them, though, which is what I ended up doing (same with ctrl-c, ctrl-v).</p>
<p>I would definitely recommend remapping the common keystrokes, otherwise you'll be an absolute useless person if you ever temporarily use another person's computer :D</p>
http://stackoverflow.com/questions/1686023/the-ultimate-fffffuuuuuuuuu-programming-moment/1689092#1689092Comment by Matt Rogish on The ultimate "FFFFFUUUUUUUUU" programming moment ?Matt Rogish2009-11-06T17:50:28Z2009-11-06T17:50:28ZOMG++ (15 chars)http://stackoverflow.com/questions/1664208/encode-quotes-in-html-bodyComment by Matt Rogish on Encode quotes in HTML body?Matt Rogish2009-11-03T00:52:52Z2009-11-03T00:52:52ZPeter, edited a bit. Thanks to Greg as wellhttp://stackoverflow.com/questions/1643365/why-no-love-for-sql/1643440#1643440Comment by Matt Rogish on Why no love for SQL?Matt Rogish2009-10-29T13:55:51Z2009-10-29T13:55:51ZMost SQL DBMS products allow you to specify execution plans via either query hints or abstract query planshttp://stackoverflow.com/questions/98096/sql-server-is-selecting-a-literal-value-faster-than-selecting-a-field/98103#98103Comment by Matt Rogish on SQL Server: Is SELECTing a literal value faster than SELECTing a field?Matt Rogish2009-10-21T18:24:23Z2009-10-21T18:24:23ZThis is wrong, see: <a href="http://stackoverflow.com/questions/1597442/subquery-using-exists-1-or-exists/" rel="nofollow" title="subquery using exists 1 or exists">stackoverflow.com/questions/1597442/…</a>http://stackoverflow.com/questions/1597442/subquery-using-exists-1-or-existsComment by Matt Rogish on Subquery using Exists 1 or Exists *Matt Rogish2009-10-20T21:54:16Z2009-10-20T21:54:16Zp.s. get a new DBA. Superstition has no place in IT, especially in database management (from a former DBA!!!)http://stackoverflow.com/questions/1472651/use-select-avg-with-parameters-select-avgparameter-sqlComment by Matt Rogish on Use SELECT AVG with parameters "SELECT AVG(@parameter)" SQL!!Matt Rogish2009-09-24T16:08:37Z2009-09-24T16:08:37ZIs this SQL Server?http://stackoverflow.com/questions/1332217/backticking-mysql-entitiesComment by Matt Rogish on Backticking MySQL EntitiesMatt Rogish2009-09-01T20:33:53Z2009-09-01T20:33:53ZWhy are you doing this? Backticking is to alleviate reserved-word identifiers (and special chars etc.). Backticking everything is a waste of timehttp://stackoverflow.com/questions/1329478/increase-so-font-size-via-javascript-doesnt-work-on-my-iphoneComment by Matt Rogish on Increase SO font size via Javascript doesn’t work on my iPhoneMatt Rogish2009-08-25T17:07:43Z2009-08-25T17:07:43Zbalpha: Doesn't work on Safari :D Is FireFox even available on the iPhone??http://stackoverflow.com/questions/1289995/what-is-the-best-way-to-move-20-databases-to-a-new-database-server-sql-2005Comment by Matt Rogish on What is the best way to move 20+ databases to a new database server? SQL 2005Matt Rogish2009-08-17T19:58:13Z2009-08-17T19:58:13Zbelongs-on-server-faulthttp://stackoverflow.com/questions/1289890/is-sql-server-naming-trailing-space-insensitive/1289911#1289911Comment by Matt Rogish on Is SQL Server Naming trailing space insensitive?Matt Rogish2009-08-17T19:49:40Z2009-08-17T19:49:40ZIndeed, inside syscolumns it includes the trailing space (do select 'start' + name + 'end' from sysobjects where name like 'LocationCode%') however the interpreter must strip out the trailing spaces. So, it stores the space but ignores it upon query (as it probably ought to). Sounds like we found a documentation bug :Dhttp://stackoverflow.com/questions/1289890/is-sql-server-naming-trailing-space-insensitive/1289911#1289911Comment by Matt Rogish on Is SQL Server Naming trailing space insensitive?Matt Rogish2009-08-17T19:34:08Z2009-08-17T19:34:08Z(It's probably a bug in SSMS)http://stackoverflow.com/questions/1289890/is-sql-server-naming-trailing-space-insensitive/1289911#1289911Comment by Matt Rogish on Is SQL Server Naming trailing space insensitive?Matt Rogish2009-08-17T19:33:31Z2009-08-17T19:33:31ZFeel free to remove the delimiters then if they're being auto-generated for identifiers that follow standard naming rules. Otherwise, it just adds noise :Dhttp://stackoverflow.com/questions/1267619/is-this-code-on-or-o1/1267749#1267749Comment by Matt Rogish on Is this code O(N) or O(1)Matt Rogish2009-08-12T18:39:33Z2009-08-12T18:39:33ZYep, just covering my bases because someone will say "No, because FooBarBaz iterators are actually Binary Trees!" :Dhttp://stackoverflow.com/questions/1229051/rails-passenger-apache-simple-one-off-url-redirect-to-catch-stale-dns-after-serv/1229077#1229077Comment by Matt Rogish on Rails/Passenger/Apache: Simple one-off URL redirect to catch stale DNS after server moveMatt Rogish2009-08-04T18:13:24Z2009-08-04T18:13:24ZRedirect to IP address of new serverhttp://stackoverflow.com/questions/1160512/add-results-from-several-count-queries/1160567#1160567Comment by Matt Rogish on Add results from several COUNT queriesMatt Rogish2009-07-21T17:47:56Z2009-07-21T17:47:56ZThey should be the same; I like mine because it's far less typing. :D