User Kev - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T06:57:16Zhttp://stackoverflow.com/feeds/user/16777http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1883128/what-is-the-best-database-to-use-for-a-particular-application/1883150#18831503Answer by Kev for What is the best database to use for a particular applicationKev2009-12-10T18:47:43Z2009-12-10T18:47:43Z<p>The best one is the one you know the most about.</p>
http://stackoverflow.com/questions/469496/chrome-or-firefox-or-browser-agnostic-for-an-intranet-app6Chrome or Firefox (or browser-agnostic) for an intranet app?Kev2009-01-22T15:10:32Z2009-12-10T08:11:43Z
<p>If you were designing a core business intranet app for a small business, and wanted it to be as responsive-feeling as possible, where the staff are indifferent to being stuck with a certain browser, would you design for Firefox, Chrome, or test more widely than you need to just to avoid lock-in? Are there other factors you'd consider before placing all your eggs in one browser basket or not?</p>
<p>For instance, does Chrome have any speed-related features that other browsers lack that would need Chrome to be targeted in a cross-browser-unfriendly way, and if it did, would it be worth designing around them?</p>
http://stackoverflow.com/questions/1849830/should-setting-checkbox-checked-false-not-clear-the-html-attribute-too-1Should setting `checkbox.checked = false` not clear the HTML attribute too?Kev2009-12-04T21:42:44Z2009-12-07T21:43:44Z
<p>Here's my HTML:</p>
<pre><code><input id="test" type="checkbox" checked="">
</code></pre>
<p>Here's a Firebug excerpt:</p>
<pre><code>>>> test
<input id="test" type="checkbox" checked="">
>>> test.checked = false
false
>>> test
<input id="test" type="checkbox" checked="">
</code></pre>
<p>Um...am I missing something, or should that last line not read the following?</p>
<pre><code><input id="test" type="checkbox">
</code></pre>
<p>UI-wise, the checkbox does indeed uncheck when I execute the <code>checked = false</code> line.</p>
<p>Anyway, if there's some legitimate explanation for this, then what's the proper way to uncheck a checkbox from JavaScript, if not <code>checked = false</code>?</p>
http://stackoverflow.com/questions/1840067/whats-wrong-with-this-simple-query-using-not-in3What's wrong with this simple query using NOT IN?Kev2009-12-03T14:08:47Z2009-12-03T14:42:53Z
<p>Schema:</p>
<pre><code>radio_bin.id
radio.id
radio.radio_bin -> radio_bin.id
</code></pre>
<p>Queries:</p>
<pre><code>select *
from radio_bin
</code></pre>
<p>72 rows.</p>
<pre><code>select *
from radio_bin
where id in (select radio_bin from radio)
</code></pre>
<p>50 rows.</p>
<p>(And FWIW:)</p>
<pre><code>select distinct radio_bin
from radio
</code></pre>
<p>51 rows, including a null.</p>
<p>That's all good. Now:</p>
<pre><code>select *
from radio_bin
where id not in (select radio_bin from radio)
</code></pre>
<p>0 rows.</p>
<p>Why? Shouldn't I get the 22 radio_bin.id numbers that <em>don't</em> have a radio pointing to them?</p>
http://stackoverflow.com/questions/1827276/command-line-syntax-checking-modperl-scripts0Command-line syntax-checking mod_perl scriptsKev2009-12-01T16:25:12Z2009-12-01T17:32:04Z
<p>I'd like to be able to <code>perl -wc</code> my mod_perl2 scripts. While they work fine in an Apache environment, that command gives me errors like this:</p>
<pre><code>Can't load 'C:/Perl/site/lib/auto/APR/APR.dll' for module APR: load_file:The specified module could not be found at C:/Perl/lib/DynaLoader.pm line 201.
at C:/Perl/site/lib/APR/Table.pm line 23
Compilation failed in require at C:/Perl/site/lib/APR/Table.pm line 23.
BEGIN failed--compilation aborted at C:/Perl/site/lib/APR/Table.pm line 23.
Compilation failed in require at C:/Perl/site/lib/Apache2/Cookie.pm line 2.
BEGIN failed--compilation aborted at C:/Perl/site/lib/Apache2/Cookie.pm line 2.
</code></pre>
<p>All I could find was <a href="http://perl.apache.org/docs/1.0/guide/debug.html" rel="nofollow">this mod_perl1 doc</a>, which says:</p>
<blockquote>
<p>The whole thing is quite different
with scripts that use Apache::*
modules which can be used only from
within the mod_perl server
environment. These scripts rely on
other code, and an environment which
isn't available when you attempt to
execute the script from the shell.
There is no Apache request object
available to the code when it is
executed from the shell.</p>
</blockquote>
<p>That's great, and seems to indicate why I'm having problems, but it doesn't really say how to actually do what I'm trying to do. It just says that it's "quite different."</p>
<p>Is there no way to trick perl into syntax checking scripts that use Apache::* modules?</p>
http://stackoverflow.com/questions/470310/where-can-i-find-code-profiling-and-or-code-coverage-modules-that-work-with-modp0Where can I find code profiling and/or code coverage modules that work with mod_perl2?Kev2009-01-22T18:28:53Z2009-11-19T23:11:53Z
<p>Is there a way to get this functionality under mod_perl2?</p>
<p>And can it be triggered via web requests as opposed to the command line? Or do I need to fake whatever $ENV variables and query strings and cookies that my script requires and use the command line somehow?</p>
<p>Google and CPAN searches all seem to point to things that either don't even support mod_perl to begin with, or do, but are old and don't mention mod_perl2.</p>
http://stackoverflow.com/questions/296667/overriding-a-javascript-function-while-referencing-the-original3 Overriding a JavaScript function while referencing the originalKev2008-11-17T19:53:13Z2009-11-16T06:58:35Z
<p>(The answer to this, if there is one, is probably out there already, but I lack the proper terminology.)</p>
<p>I have a function, a(), that I want to override, but also have the original a() be performed in an order depending on the context. For example, sometimes when I'm generating a page I'll want to override like this:</p>
<pre><code>function a()
{
new_code();
original_a();
}
</code></pre>
<p>and sometimes like this:</p>
<pre><code>function a()
{
original_a();
other_new_code();
}
</code></pre>
<p>How do I get that original_a() from within the over-riding a()? Is it even possible?</p>
<p>(Please don't suggest alternatives to over-riding in this way, I know of many. I'm asking about this way specifically.)</p>
http://stackoverflow.com/questions/1479985/apache2-2-apr-load-error0Apache2.2 APR load errorKev2009-09-25T23:36:56Z2009-11-11T15:04:55Z
<p>The server starts without complaint, but as soon as I hit a page that requires an Apache2 module, like Apache2::Cookie, it dies:</p>
<pre><code>Can't load 'C:/Perl5.10/site/lib/auto/APR/Request/Request.dll' for module APR::Request: load_file:The specified module could not be found at C:/Perl5.10/lib/DynaLoader.pm line 202... [etc all the way back to a line in my module]
</code></pre>
http://stackoverflow.com/questions/1690654/perl-equivalent-of-postgresql-between-operator0Perl equivalent of (Postgre)SQL BETWEEN operator?Kev2009-11-06T21:40:44Z2009-11-08T18:00:03Z
<p>Is there such a thing? The equivalent of <code>a <= expr <= b</code>, or in SQL parlance <code>expr BETWEEN a AND b</code>, where <code>expr</code> is evaluated only once? Or is asking for this just <a href="http://www.perl9.org/?site=Extended-Features/Megahyper-Operators" rel="nofollow">getting silly</a>?</p>
http://stackoverflow.com/questions/1650721/server-side-db-programming-why/1650743#16507430Answer by Kev for server side db programming: why?Kev2009-10-30T16:07:46Z2009-10-30T16:07:46Z<p>Triggers mean 3rd-party apps can modify the database without creating logical inconsistencies.</p>
http://stackoverflow.com/questions/1643653/closing-all-connections-to-a-particular-database-without-downing-the-whole-servic1Closing all connections to a particular database without downing the whole serviceKev2009-10-29T13:17:53Z2009-10-29T13:23:11Z
<p>We have some databases in a single SQL Server 2000 instance, one of them being a sandbox. My boss needs to be able to restore fresh data over the sandbox using a utility I don't have the source to. Such restores fail if anyone is connected to the sandbox.</p>
<p>Another app I have accessing it uses connection pooling, and also there might be people using other apps to access the sandbox that I can't control.</p>
<p>How can I boot everyone off the sandbox, including the pooled connections, without touching any of the other databases running on the same instance?</p>
<p>(I've seen solutions out there that use Management Studio 2008 (from 2008 Express), but a) I need to be able to do it from the command line or a script somehow so my boss can run it without installing Management Studio, and b) the context menu options they talked about didn't seem to be there anyway.)</p>
http://stackoverflow.com/questions/1635273/postgres-vs-firebird/1636867#16368670Answer by Kev for Postgres vs FirebirdKev2009-10-28T12:11:47Z2009-10-28T12:11:47Z<p>AFAIK the each No in the Postgres column of the page you cited is still a No, although read-only databases can be effectively had by granting only select permissions on all tables in a database. However, there are many new features since 8.2. Some <a href="http://www.postgresql.org/docs/8.4/static/release-8-4.html" rel="nofollow">from 8.4</a>:</p>
<ol>
<li>Windowing Functions</li>
<li>Common Table Expressions and Recursive Queries</li>
<li>Default and variadic parameters for functions</li>
<li>Parallel Restore</li>
<li>Column Permissions</li>
<li>Per-database locale settings</li>
</ol>
<p>...and <a href="http://www.postgresql.org/docs/8.3/static/release-8-3.html" rel="nofollow">some from 8.3</a>:</p>
<ol>
<li>Full text search is integrated into the core database system</li>
<li>Support for the SQL/XML standard, including new operators and an XML data type</li>
<li>Enumerated data types (ENUM)</li>
<li>Arrays of composite types</li>
<li>Universally Unique Identifier (UUID) data type</li>
<li>Add control over whether NULLs sort first or last</li>
<li>Updatable cursors</li>
<li>Server configuration parameters can now be set on a per-function basis</li>
<li>User-defined types can now have type modifiers </li>
</ol>
<p>...whether Firebird has these, I don't know.</p>
http://stackoverflow.com/questions/1634846/visitors-to-site-get-a-file-download-instead-of-web-page/1634859#16348590Answer by Kev for Visitors to site get a file download instead of web page?Kev2009-10-28T02:23:31Z2009-10-28T02:23:31Z<p>This usually means your web server is serving the page up as the wrong MIME type. You need to tell it which files should be served using which MIME types. Apache includes a standard file for this, but I'm not sure which web server or platform you're using.</p>
http://stackoverflow.com/questions/1526500/getting-jquery-uis-datepicker-to-always-open-in-a-certain-direction/1632813#16328131Answer by Kev for getting jQuery UI's datepicker to always open in a certain direction?Kev2009-10-27T18:36:47Z2009-10-27T18:36:47Z<p>You could change the lines:</p>
<pre><code>offset.left -= (offset.left + dpWidth > viewWidth && viewWidth > dpWidth) ? Math.abs(offset.left + dpWidth - viewWidth) : 0;
offset.top -= (offset.top + dpHeight > viewHeight && viewHeight > dpHeight) ? Math.abs(offset.top + dpHeight + inputHeight*2 - viewHeight) : 0;
</code></pre>
<p>...to read:</p>
<pre><code>offset.left = $(inst.input).position().left + dpWidth;
offset.top = $(inst.input).position().top - dpHeight;
</code></pre>
<p>This loses flexibility, though. If your input happens to be at the top of the page, you'll have the opposite problem from before.</p>
http://stackoverflow.com/questions/1539499/which-lesser-known-cpan-modules-have-you-found-to-be-real-gems10Which lesser-known CPAN modules have you found to be real gems?Kev2009-10-08T18:00:56Z2009-10-25T16:28:06Z
<p>Which lesser-known CPAN modules have you found to be real gems?</p>
<p><hr /></p>
<p>Please post links to the modules like this</p>
<pre>
[`Example::Module`][Example::Module]
[Example::Module]: http://search.cpan.org/perldoc/Example::Module
</pre>
<p>Or post a link to the version control repository.</p>
<p>A short description would be good to include, too.</p>
http://stackoverflow.com/questions/1616123/sql-query-to-get-all-values-a-enum-can-have/1616161#16161612Answer by Kev for SQL query to get all values a enum can haveKev2009-10-23T22:01:58Z2009-10-23T22:01:58Z<p>Try:</p>
<pre><code>SELECT e.enumlabel
FROM pg_enum e
JOIN pg_type t ON e.enumtypid = t.oid
WHERE t.typname = 'myenum'
</code></pre>
http://stackoverflow.com/questions/1616072/how-to-detect-when-a-canvas-is-ready-for-manipulation/1616083#16160830Answer by Kev for How to detect when a canvas is ready for manipulation?Kev2009-10-23T21:47:24Z2009-10-23T21:47:24Z<p>First, I'd see if there's a bug report in on this for either browser.</p>
<p>Meanwhile, you could use setInterval, or maybe just a loop, to just check whether .getContext (without brackets) is true, and only proceed after it is (with some sensible limit so you don't stall the browser with an infinite loop if something goes wrong or a user doesn't have that feature in their browser.)</p>
http://stackoverflow.com/questions/1613921/can-i-have-a-postgres-plpgsql-function-return-variable-column-records/1616042#16160421Answer by Kev for Can I have a postgres plpgsql function return variable-column records?Kev2009-10-23T21:36:18Z2009-10-23T21:42:52Z<p>Simon's answer might be better overall in the end, I'm just telling you how to do it without changing what you've got.</p>
<p>From <a href="http://www.postgresql.org/docs/8.4/interactive/sql-select.html" rel="nofollow">the docs</a>:</p>
<blockquote>
<p>from_item can be one of:</p>
</blockquote>
<pre><code>...
function_name ( [ argument [, ...] ] ) [ AS ] alias [ ( column_alias [, ...] | column_definition [, ...] ) ]
function_name ( [ argument [, ...] ] ) AS ( column_definition [, ...] )
</code></pre>
<p>In other words, later it says:</p>
<blockquote>
<p>If the function has been defined as
returning the record data type, then
an alias or the key word AS must be
present, followed by a column
definition list in the form (
column_name data_type [, ... ] ). The
column definition list must match the
actual number and types of columns
returned by the function.</p>
</blockquote>
<p>I think the alias thing is only an option if you've predefined a type somewhere (like if you're mimicing the output of a predefined table, or have actually used CREATE TYPE...don't quote me on that, though.)</p>
<p>So, I think you would need something like:</p>
<pre><code>SELECT *
FROM reports.get_agent_activity_breakdown('percentage', NULL, NULL)
AS (agent_id integer, portal_user_id integer, total something, ...)
</code></pre>
<p>The problem for you lies in the <em>...</em>. You'll need to know before you execute the query the names and types of all the columns--so you'll end up selecting on public.activity twice.</p>
http://stackoverflow.com/questions/1425159/algorithm-for-auto-appending-a-unique-id-to-duplicate-titles/1615921#16159210Answer by Kev for Algorithm for Auto-Appending a Unique ID to Duplicate TitlesKev2009-10-23T21:12:17Z2009-10-23T21:12:17Z<p>I just use a serial PK and show it to the user alongside the text.</p>
http://stackoverflow.com/questions/1597354/how-do-i-archive-a-set-of-files-using-perl-on-win32-while-retaining-file-paths/1597376#15973761Answer by Kev for How do I archive a set of files using Perl on Win32 while retaining file paths?Kev2009-10-20T21:18:52Z2009-10-20T21:18:52Z<p>I hear your frustration of simple things sometimes with perl on win32. If all else fails, just get a command-line version of 7-zip doing what you want, and then do a system() call to it.</p>
http://stackoverflow.com/questions/1479020/save-the-document-generated-by-javascript/1597203#15972031Answer by Kev for Save the document generated by javascript.Kev2009-10-20T20:46:20Z2009-10-20T20:46:20Z<p>If it's just a report, you could use server-side JavaScript to generate it, and then serve it up with whatever MIME type you need...</p>
http://stackoverflow.com/questions/1596922/quick-and-easy-way-to-open-a-url-as-a-subwindow-on-mouseover-in-javascript/1596941#15969410Answer by Kev for Quick and easy way to open a URL as a subwindow on mouseover in javascript?Kev2009-10-20T19:58:42Z2009-10-20T19:58:42Z<p>Use AJAX to fetch the data, then:</p>
<pre><code>var iframe = document.createElement('iframe');
iframe.innerHTML = ajax_response_html;
</code></pre>
<p>Then use your favourite JavaScript library to position the iframe to the coordinates available through the mouseover event object's properties, and style the iframe to be of a fixed, smaller size.</p>
http://stackoverflow.com/questions/1576050/network-efficient-difference-between-two-strings-in-javascript/1596441#15964410Answer by Kev for Network-efficient difference between two strings in JavascriptKev2009-10-20T18:23:22Z2009-10-20T18:23:22Z<p>Because there are so many ways to do edits--even within short periods of time like 500ms--including <strong>dragging and dropping, or cutting and pasting, large sections of text around within the document or from outside it</strong>--I don't know if there's going to be something that will cover all scenarios really well. This is certainly a non-answer to your question at face value, but I would consider carefully the trouble of developing and maintaining something like this compared to changing the interface to restrict the text size and breaking existing texts into smaller pieces.</p>
<p>Maybe that's not possible in your situation, but if it is, I would guess it would be much less trouble in the end to dodge the issue in this way and just send full documents after an edit.</p>
http://stackoverflow.com/questions/1590099/rewrite-urls-for-static-content/1591222#15912220Answer by Kev for Rewrite URLs for static contentKev2009-10-19T21:20:35Z2009-10-19T21:20:35Z<p>If the number of prefixes is limited, you could add another group to your regex:</p>
<pre><code>RewriteRule ^(css|js|images|etc)/.+\.(jpg|jpeg|gif|png|ico|css|js|swf)$ /public/$0 [L]
</code></pre>
http://stackoverflow.com/questions/1591178/two-left-joins-and-one-query-to-mysql-performance-problem/1591196#15911960Answer by Kev for Two left joins and one query to MySQL performance problemKev2009-10-19T21:16:12Z2009-10-19T21:16:12Z<p>What about an index on (USER_ID, QUIZZ_ID, QUIZZ_RESULT_ID), since they're all AND'd together?</p>
http://stackoverflow.com/questions/1590936/html-specify-print-pages/1590984#15909844Answer by Kev for HTML specify print pages?Kev2009-10-19T20:35:50Z2009-10-19T20:35:50Z<p>Make sure your table headers are in the section of the table, then use CSS to style it:</p>
<pre><code>thead { display: table-header-group; }
</code></pre>
http://stackoverflow.com/questions/1565264/pass-backspace-key-pressed-event-to-the-applet-and-stop-it-propagation/1588686#15886860Answer by Kev for Pass backspace key pressed event to the applet and stop it propagationKev2009-10-19T13:33:10Z2009-10-19T13:33:10Z<pre><code>// assumes IE8, but you could write detection code based on if (document.createEventObject)
if (event.keyCode === 8)
{
var newEvent = document.createEventObject();
newEvent.keyCode = 8;
document.getElementById('myjavaapplet').fireEvent('onkeypress',newEvent);
}
</code></pre>
http://stackoverflow.com/questions/1565264/pass-backspace-key-pressed-event-to-the-applet-and-stop-it-propagation/1580578#15805780Answer by Kev for Pass backspace key pressed event to the applet and stop it propagationKev2009-10-16T21:40:26Z2009-10-16T21:40:26Z<pre><code>if (event.keyCode === 8)
{
var newEvent = document.createEvent('UIEvents');
newEvent.initUIEvent( 'keypress', true, true, window, 1 );
newEvent.keyCode = 8;
document.getElementById('myjavaapplet').dispatchEvent(newEvent);
}
</code></pre>
http://stackoverflow.com/questions/1572711/where-does-the-perl-package-manager-get-its-areas-data-from-on-win321Where does the Perl Package Manager get its 'areas' data from on Win32?Kev2009-10-15T14:28:12Z2009-10-16T00:05:35Z
<p>I guess I didn't upgrade the right way, but for a while I was running two versions of Perl concurrently. Now I just have one, but every time I start PPM it recreates the Perl folder of one of the old locations. I've set the active one to be the current Perl folder, but because the old one is still present on the list (displayed when I go Edit->Preferences), it creates it every time. How do I get it to stop doing that? I looked through the Windows Registry but I don't think that's where the areas are tracked.</p>
<p>This is ActiveState Perl 5.10.1 build 1006 on Windows Server 2003.</p>
http://stackoverflow.com/questions/1572711/where-does-the-perl-package-manager-get-its-areas-data-from-on-win32/1574331#15743310Answer by Kev for Where does the Perl Package Manager get its 'areas' data from on Win32?Kev2009-10-15T18:56:55Z2009-10-15T19:21:51Z<p>Replace all references throughout .packlists (and possibly all other files under the Perl path as well), then delete the .db files in etc/ and site/etc, then run ppm to let it re-build the database based on the updated packlists.</p>
<p>So the answer is some combination of Config.pm, lib\Config_heavy.pl, lib\CORE\config.h, possibly other files, the .dbs, and the .packlists.</p>
<p>Although, who's to say if I had left the Windows Registry entries there too it wouldn't've found them?</p>
http://stackoverflow.com/questions/1849830/should-setting-checkbox-checked-false-not-clear-the-html-attribute-too/1849983#1849983Comment by Kev on Should setting `checkbox.checked = false` not clear the HTML attribute too?Kev2009-12-07T14:45:05Z2009-12-07T14:45:05ZEdited, thanks again.http://stackoverflow.com/questions/1849830/should-setting-checkbox-checked-false-not-clear-the-html-attribute-too/1849983#1849983Comment by Kev on Should setting `checkbox.checked = false` not clear the HTML attribute too?Kev2009-12-07T14:43:51Z2009-12-07T14:43:51ZI never mentioned the <code>value</code> attribute. My test checkbox doesn't even have one. So I'm not sure how your first paragraph applies, but the defaultChecked property was key. Thanks!http://stackoverflow.com/questions/1849830/should-setting-checkbox-checked-false-not-clear-the-html-attribute-too/1850511#1850511Comment by Kev on Should setting `checkbox.checked = false` not clear the HTML attribute too?Kev2009-12-07T14:40:11Z2009-12-07T14:40:11ZThis just isn't true. Try it yourself with an HTML element <code>a</code> with no value attribute--run the lines <code>a</code>, <code>a.value=7</code>, and <code>a</code> again.http://stackoverflow.com/questions/1849830/should-setting-checkbox-checked-false-not-clear-the-html-attribute-tooComment by Kev on Should setting `checkbox.checked = false` not clear the HTML attribute too?Kev2009-12-07T14:30:01Z2009-12-07T14:30:01ZThis is just to demonstrate what I'm talking about. The real problem is that I have CSS that I want to have an effect based on whether the checkbox is checked or not, and it only does its job when I click the checkbox, not when I set <code>.checked</code>.http://stackoverflow.com/questions/1849830/should-setting-checkbox-checked-false-not-clear-the-html-attribute-too/1849899#1849899Comment by Kev on Should setting `checkbox.checked = false` not clear the HTML attribute too?Kev2009-12-04T22:06:59Z2009-12-04T22:06:59ZSorry, I had tried to express that in the question. I expect setting the <code>.checked</code> property to have an effect on the HTML attribute (especially since it has an effect on the UI.) But the HTML attribute does not change, no matter what it's initially set to. This seems pretty inconsistent.http://stackoverflow.com/questions/1849830/should-setting-checkbox-checked-false-not-clear-the-html-attribute-too/1849899#1849899Comment by Kev on Should setting `checkbox.checked = false` not clear the HTML attribute too?Kev2009-12-04T21:56:44Z2009-12-04T21:56:44ZTried it. Doesn't seem to change the outcome. Also according to <a href="https://developer.mozilla.org/en/XUL/checkbox" rel="nofollow">developer.mozilla.org/en/XUL/checkbox</a> , the checked property is a boolean type.http://stackoverflow.com/questions/1840067/whats-wrong-with-this-simple-query-using-not-in/1840096#1840096Comment by Kev on What's wrong with this simple query using NOT IN?Kev2009-12-03T14:20:20Z2009-12-03T14:20:20Z+1 for the doc link. Thanks.http://stackoverflow.com/questions/1840067/whats-wrong-with-this-simple-query-using-not-in/1840084#1840084Comment by Kev on What's wrong with this simple query using NOT IN?Kev2009-12-03T14:19:48Z2009-12-03T14:19:48Z+1 for the alternate idea.http://stackoverflow.com/questions/1840067/whats-wrong-with-this-simple-query-using-not-in/1840084#1840084Comment by Kev on What's wrong with this simple query using NOT IN?Kev2009-12-03T14:19:12Z2009-12-03T14:19:12ZNot directly, it'd have to be <code>where not exists (select radio_bin from radio where radio.radio_bin = radio_bin.id)</code>.http://stackoverflow.com/questions/1840067/whats-wrong-with-this-simple-query-using-not-in/1840093#1840093Comment by Kev on What's wrong with this simple query using NOT IN?Kev2009-12-03T14:17:49Z2009-12-03T14:17:49ZI do have one, as indicated in the question, but this does fix it.http://stackoverflow.com/questions/1840067/whats-wrong-with-this-simple-query-using-not-in/1840096#1840096Comment by Kev on What's wrong with this simple query using NOT IN?Kev2009-12-03T14:16:50Z2009-12-03T14:16:50ZBut if you mean radio.radio_bin this is correct.http://stackoverflow.com/questions/1840067/whats-wrong-with-this-simple-query-using-not-in/1840096#1840096Comment by Kev on What's wrong with this simple query using NOT IN?Kev2009-12-03T14:14:35Z2009-12-03T14:14:35ZThere are no null `radio_bin.id`s. It's a serial PK.http://stackoverflow.com/questions/1772649/year-end-budget-what-development-software-should-be-considered/1772691#1772691Comment by Kev on Year end budget - what development software should be considered?Kev2009-11-20T19:49:33Z2009-11-20T19:49:33ZYou didn't by chance have a hand in the Candian health care system recently, did you?http://stackoverflow.com/questions/470310/where-can-i-find-code-profiling-and-or-code-coverage-modules-that-work-with-modp/1767243#1767243Comment by Kev on Where can I find code profiling and/or code coverage modules that work with mod_perl2?Kev2009-11-20T13:33:56Z2009-11-20T13:33:56ZAlthough it says it supports win32 and modperl2, I don't think it supports both at the same time. It crashes Apache immediately after starting, every time.http://stackoverflow.com/questions/1742452/what-is-the-proper-syntax-for-storing-an-array-into-a-perl-hash/1742497#1742497Comment by Kev on What is the proper syntax for storing an array into a Perl hash?Kev2009-11-16T14:30:38Z2009-11-16T14:30:38ZAlso beware that this will be modifying the original array, not a copy of it.