User Grant Johnson - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T10:44:15Z http://stackoverflow.com/feeds/user/12518 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1689396/looking-for-an-sql-statement-which-groups-by-type/1689487#1689487 0 Answer by Grant Johnson for Looking for an SQL statement which groups by type Grant Johnson 2009-11-06T18:41:39Z 2009-11-06T18:41:39Z <p>The answer here is to normalize the data.</p> <pre><code>Table 1: System ID - key Description Table 2: Port Type ID - key Description Table 3: System ID - Key Port ID - Key Port Type Select count(*), port_type from table_1 a, table_3 c where a.system_id=c.system_id group by port_type having count(*) &gt; 2 </code></pre> <p>I hope that gets you close.</p> http://stackoverflow.com/questions/1571691/degraded-performance-of-a-query-after-adding-index/1670670#1670670 0 Answer by Grant Johnson for Degraded performance of a query after adding Index Grant Johnson 2009-11-03T22:51:28Z 2009-11-03T22:51:28Z <p>A few things:</p> <p>First, if you are accessing over half of the data blocks, full scan will be faster because reading the index block is another IO call, so the read of an indexed row is generally twice as expensive time wise as reading a sequential row.</p> <p>Second, you need to look at your plans with and without the index. There will be information here that will let you know what changed. If you see a "Merge Join Cartesian" the planner has made an error. That plan is NEVER good. Inner loops of full scans have the same IO cost, but take less memory and temp space.</p> <p>Third, you built stats with ANALYZE TABLE. Don't. Even Oracle says it is bad and broken. Use the dbms_stats package to build your stats, and you will get more accurate stats. If it is still odd, change your sample size, or do full stats instead of estimated.</p> http://stackoverflow.com/questions/978793/is-there-a-postgres-fuzzy-match-faster-than-pgtrgm/1343538#1343538 0 Answer by Grant Johnson for Is there a postgres fuzzy match faster than pg_trgm? Grant Johnson 2009-08-27T20:19:01Z 2009-08-27T20:19:01Z <p>Depending on what you are looking for, Postgres can also do matches on regular expressions, instead of the standard "like" syntax. It may be a better fit for you.</p> http://stackoverflow.com/questions/1251233/unable-to-run-postgres-as-windows-service/1343152#1343152 0 Answer by Grant Johnson for unable to run postgres as windows service Grant Johnson 2009-08-27T18:59:32Z 2009-08-27T18:59:32Z <p>I have had this issue in the past, and it was that the installer did not set up the permissions correctly for the user that the service was to run as.</p> http://stackoverflow.com/questions/389541/select-unlocked-row-in-postgresql/507798#507798 1 Answer by Grant Johnson for Select unlocked row in Postgresql Grant Johnson 2009-02-03T16:17:57Z 2009-02-03T16:17:57Z <p>It appears that you are trying to do something like grab the highest priority item in a queue that is not already being taken care of by another process.</p> <p>A likely solution is to add a where clause limiting it to unhandled requests:</p> <pre><code>select * from queue where flag=0 order by id desc for update; update queue set flag=1 where id=:id; --if you really want the lock: select * from queue where id=:id for update; ... </code></pre> <p>Hopefully, the second transaction will block while the update to the flag happens, then it will be able to continue, but the flag will limit it to the next in line.</p> <p>It is also likely that using the serializable isolation level, you can get the result you want without all of this insanity.</p> <p>Depending on the nature of your application, there may be better ways of implementing this than in the database, such as a FIFO or LIFO pipe. Additionally, it may be possible to reverse the order that you need them in, and use a sequence to ensure that they are processed sequentially.</p> http://stackoverflow.com/questions/102265/are-peoplesoft-integration-broker-asynchronous-messages-fired-serially-on-the-rec 1 Are PeopleSoft Integration Broker asynchronous messages fired serially on the receiving end? Grant Johnson 2008-09-19T14:28:41Z 2009-01-12T11:18:44Z <p>I have a strange problem on a PeopleSoft application. It appears that integration broker messages are being processed out of order. There is another possibility, and that is that the commit is being fired asynchronously, allowing the transactions to complete out of order.</p> <p>There are many inserts of detail records, followed by a trailer record which performs an update on the rows just inserted. Some of the rows are not receiving the update. This problem is sporadic, about once every 6 months, but it causes statistically significant financial reporting errors.</p> <p>I am hoping that someone has had enough dealings with the internals of PeopleTools to know what it is up to, so that perhaps I can find a work around to the problem.</p> http://stackoverflow.com/questions/109861/converting-postgresql-database-to-mysql/116676#116676 1 Answer by Grant Johnson for Converting PostgreSQL database to MySQL Grant Johnson 2008-09-22T18:39:11Z 2008-10-15T02:28:51Z <p>pg_dump can do the dump as insert statements and create table statements. That should get you close. The bigger question, though, is why do you want to switch. You may do a lot of work and not get any real gain from it.</p> http://stackoverflow.com/questions/57406/indexed-views-in-oltps/178662#178662 3 Answer by Grant Johnson for Indexed Views in OLTPs? Grant Johnson 2008-10-07T14:20:04Z 2008-10-07T14:20:04Z <p>Materialized views can be useful for reporting against OLTP, especially is large numbers of rows are aggregated to get the results. The space requirements are completely dependent on how much data you are saving. Think of it as a cache.</p> <p>The tricky balance is between how recent the data needs to be for the reports, and how much of a hit you can take on OLTP performance. If somewhat stale data is OK, you may be able to schedule the updates to the views during a time when system activity is low. </p> <p>The one time I could not, and need very current data, I ended up using some custom development. Each update to the base table fired a trigger which wrote a record to a transaction table. The view looked at a cached aggregate, plus the delta stored in the transaction table. As system resources allowed, the transactions were applied to the aggregate table as delta transactions. This allowed me up to the second data, good performance on reporting (the only aggregation happening was recent transactions) and fairly little load on the database (only doubling the size of every write, not re-calculating a huge aggregate every time). </p> <p>Unfortunately, it was complex to maintain, and did not use simple built in tools. If you can wait on your reporting data, it is often best to use the built in materialized views and defer the refresh.</p> http://stackoverflow.com/questions/172599/tool-etl-from-an-odbc-to-sql-05/178614#178614 1 Answer by Grant Johnson for Tool: ETL from an ODBC to SQL 05? Grant Johnson 2008-10-07T14:06:42Z 2008-10-07T14:06:42Z <p>At least with the older versions of SQL Server, they shipped with DTS. Not the simplest, but it does work with ODBC and SQL Server, and you may already have it.</p> http://stackoverflow.com/questions/45611/cascading-deletes-in-postgresql/155396#155396 0 Answer by Grant Johnson for Cascading deletes in PostgreSQL Grant Johnson 2008-09-30T22:34:48Z 2008-09-30T22:34:48Z <p>You do not need to dump and restore. You should be able to just drop the constraint, rebuild it with cascade, do your deletes, drop it again, and the rebuild it with restrict.</p> <pre><code>CREATE TABLE "header" ( header_id serial NOT NULL, CONSTRAINT header_pkey PRIMARY KEY (header_id) ); CREATE TABLE detail ( header_id integer, stuff text, CONSTRAINT detail_header_id_fkey FOREIGN KEY (header_id) REFERENCES "header" (header_id) MATCH SIMPLE ON UPDATE NO ACTION ON DELETE NO ACTION ); insert into header values(1); insert into detail values(1,'stuff'); delete from header where header_id=1; alter table detail drop constraint detail_header_id_fkey; alter table detail add constraint detail_header_id_fkey FOREIGN KEY (header_id) REFERENCES "header" (header_id) on delete cascade; delete from header where header_id=1; alter table detail add constraint detail_header_id_fkey FOREIGN KEY (header_id) REFERENCES "header" (header_id) on delete restrict; </code></pre> http://stackoverflow.com/questions/83050/trip-time-calculation-in-relational-databases/153902#153902 0 Answer by Grant Johnson for Trip time calculation in relational databases? Grant Johnson 2008-09-30T16:36:54Z 2008-09-30T16:36:54Z <p>Ok, this is a bit beyond geeky, but I built a web application to track my wife's contractions just before we had a baby so that I could see from work when it was getting close to time to go to the hospital. Anyway, I built this basic thing fairly easily as two views.</p> <pre><code>create table contractions time_date timestamp primary key; create view contraction_time as SELECT a.time_date, max(b.prev_time) AS prev_time FROM contractions a, ( SELECT contractions.time_date AS prev_time FROM contractions) b WHERE b.prev_time &lt; a.time_date GROUP BY a.time_date; create view time_between as SELECT contraction_time.time_date, contraction_time.prev_time, contraction_time.time_date - contraction_time.prev_time FROM contraction_time; </code></pre> <p>This could be done as a subselect obviously as well, but I used the intermediate views for other things as well, and so this worked out well.</p> http://stackoverflow.com/questions/149627/sql-clone-record-with-a-unique-index/149675#149675 0 Answer by Grant Johnson for SQL clone record with a unique index Grant Johnson 2008-09-29T17:05:07Z 2008-09-29T17:05:07Z <p>You could create an insert trigger to do this, however, you would lose the ability to do an insert with an explicit ID. It would, instead, always use the value from the sequence.</p> http://stackoverflow.com/questions/142201/how-do-you-teach-the-stuff-that-good-programming-is-made-of/142259#142259 0 Answer by Grant Johnson for How do you teach the stuff that good programming is made of? Grant Johnson 2008-09-26T22:02:30Z 2008-09-26T22:02:30Z <p>Make everyone start with maintenance. Only by learning how painful maintenance is on bad code is can you learn not only how to write good code, but also have the incentive to actually do so.</p> http://stackoverflow.com/questions/102265/are-peoplesoft-integration-broker-asynchronous-messages-fired-serially-on-the-rec/140618#140618 0 Answer by Grant Johnson for Are PeopleSoft Integration Broker asynchronous messages fired serially on the receiving end? Grant Johnson 2008-09-26T16:43:33Z 2008-09-26T16:43:33Z <p>I heard from GSC. We had two domains on the sending end as well as two domains on the receiving end. All were active. According to them, it is possible when you have multiple domains for each of the servers to pick up some of the messages in the group, and therefore, process them asynchronously, rather than truly serially.</p> <p>We are going to reduce the active servers to one, and see it it happens again, but it is so sporadic that we may never know for sure.</p> http://stackoverflow.com/questions/129265/cascade-delete-just-once/135574#135574 1 Answer by Grant Johnson for CASCADE DELETE just once Grant Johnson 2008-09-25T19:49:55Z 2008-09-25T19:49:55Z <p>The delete with the cascade option only applied to tables with foreign keys defined. If you do a delete, and it says you cannot because it would violate the foreign key constraint, the cascade will cause it to delete the offending rows.</p> <p>If you want to delete associated rows in this way, you will need to define the foreign keys first. Also, remember that unless you explicitly instruct it to begin a transaction, or you change the defaults, it will do an auto-commit, which could be very time consuming to clean up.</p> http://stackoverflow.com/questions/133766/does-this-kind-of-organizer-program-exist/133832#133832 0 Answer by Grant Johnson for Does this kind of organizer program exist? Grant Johnson 2008-09-25T14:58:57Z 2008-09-25T14:58:57Z <p>Trac is very close. It has most of this built in, and has a good plug-in architecture. Many of these plug-ins probably already exist, and you could probably add the few that do not.</p> http://stackoverflow.com/questions/129445/postgresql-psql-i-how-to-execute-script-in-a-given-path/129527#129527 0 Answer by Grant Johnson for postgreSQL - psql \i : how to execute script in a given path Grant Johnson 2008-09-24T20:03:23Z 2008-09-24T20:03:23Z <p>Have you tried using Unix style slashes (/ instead of \)?</p> <p>\ is often an escape or command character, and may be the source of confusion. I have never had issues with this, but I also do not have Windows, so I cannot test it.</p> <p>Additionally, the permissions may be based on the user running psql, or maybe the user executing the postmaster service, check that both have read to that file in that directory.</p> http://stackoverflow.com/questions/117262/what-is-postgresql-explain-telling-me-exactly/122527#122527 1 Answer by Grant Johnson for What is PostgreSQL explain telling me exactly? Grant Johnson 2008-09-23T17:39:43Z 2008-09-23T17:39:43Z <p>PgAdmin3 will show you a graphical representation of the explain plan. Switching back and forth between the two can really help you understand what the text representation means. However, if you just want to know what it is going todo, you may be able to just always use the GUI.</p> http://stackoverflow.com/questions/122088/sql-query-to-determine-status/122151#122151 -1 Answer by Grant Johnson for Sql query to determine status? Grant Johnson 2008-09-23T16:31:47Z 2008-09-23T16:31:47Z <pre><code>select count(*) from process_monitor where timestamp &gt; yesterday and timestamp &lt; tomorrow. </code></pre> <p>Alternately, you could use a self join with a max to show the newest message for a particular day:</p> <pre><code>select * from process_monitor where timestamp=(select max(timestamp) where timestamp&lt;next_day); </code></pre> http://stackoverflow.com/questions/112249/update-very-large-postgresql-database-table-efficiently/116712#116712 2 Answer by Grant Johnson for Update VERY LARGE PostgresQL database table efficiently Grant Johnson 2008-09-22T18:46:14Z 2008-09-22T18:46:14Z <p>While you cannot likely fix the problem of space usage (it is temporary, just until a vacuum) you can probably really speed up the process in terms of clock time. The fact that PostgreSQL uses MVCC means that you should be able to do this without any issues related to newly inserted rows. The create table as select will get around some of the performance issues, but will not allow for continued use of the table, and takes just as much space. Just ditch the index, and rebuild it, then do a vacuum.</p> <pre><code>drop index replication_flag; update big_table set replicated=0; create index replication_flag on big_table btree(ID) WHERE replicated=0; vacuum full analyze big_table; </code></pre> http://stackoverflow.com/questions/102785/what-single-url-should-every-web-developer-have-bookmarked/105851#105851 0 Answer by Grant Johnson for What single URL should every web developer have bookmarked? Grant Johnson 2008-09-19T21:38:31Z 2008-09-19T21:38:31Z <p><a href="http://www.ss64.com" rel="nofollow">http://www.ss64.com</a> It has references for Windows, Linux, Oracle, SQL Server, and more.</p> http://stackoverflow.com/questions/105778/what-is-the-ultimate-program-to-make-a-drawing-of-a-database-model/105843#105843 1 Answer by Grant Johnson for What is the ultimate program to make a drawing of a database model? Grant Johnson 2008-09-19T21:37:14Z 2008-09-19T21:37:14Z <p>DIA is not bad, and there are tools to actually generate some code from some types of models. If you are using PostgreSQL, there is even a tool for going the other way, pg-autodoc.</p> <p>DIA is available for Unix, and I believe Windows as well.</p> http://stackoverflow.com/questions/101423/how-do-you-continue-to-improve-your-sql-skills/103652#103652 1 Answer by Grant Johnson for How do you continue to improve your SQL skills? Grant Johnson 2008-09-19T16:52:56Z 2008-09-19T16:52:56Z <p>Most "current" stuff is not SQL itself, but how the database stores the information, and how to retrieve it more quickly. Check out this other thread: <a href="http://stackoverflow.com/questions/23927/what-are-some-references-lessons-and-or-best-practices-for-sql-optimization-tra">http://stackoverflow.com/questions/23927/what-are-some-references-lessons-and-or-best-practices-for-sql-optimization-tra</a></p> <p>The only real bleeding edge is in query planning, index structures, sort algorithms, things like that, not the SQL itself.</p> http://stackoverflow.com/questions/103005/sql-question-possibly-cursor-join-related/103056#103056 1 Answer by Grant Johnson for SQL Question - Possibly Cursor/Join related? Grant Johnson 2008-09-19T15:43:29Z 2008-09-19T15:43:29Z <p>You may be best off to use a reporting tool like Crystal or Jasper, or even XSL-FO if you are feeling bold. They have things built in to handle specifically this. This is not something the would work well in raw SQL.</p> <p>If the format of all of the rows (the headers as well as all of the details) is the same, it would also be pretty easy to do it as a stored procedure.</p> <p>What I would do: Do it as a join, so you will have the header data on every row, then use a reporting tool to do the grouping.</p> http://stackoverflow.com/questions/102881/how-can-i-get-datetime-to-display-in-military-time-in-oracle/102918#102918 1 Answer by Grant Johnson for How can I get Datetime to display in military time in oracle? Grant Johnson 2008-09-19T15:32:05Z 2008-09-19T15:32:05Z <p>Use a to_char(field,'YYYYMMDD HH24MISS').</p> <p>A good list of date formats is available at <a href="http://www.ss64.com/orasyntax/fmt.html" rel="nofollow">http://www.ss64.com/orasyntax/fmt.html</a></p> http://stackoverflow.com/questions/23927/what-are-some-references-lessons-and-or-best-practices-for-sql-optimization-trai/97334#97334 1 Answer by Grant Johnson for What are some references, lessons and or best practices for SQL optimization training. Grant Johnson 2008-09-18T21:46:04Z 2008-09-18T21:46:04Z <p>You need to learn to read the query plan. You need to know how to pseudo-code the inner workings of an inner loop, merge join, and a hash join, amongst others.</p> <p>Query planning is a black art, but reading the plans is not so bad. Look at the plans for everything you are going to run (make sure that you have a representative size sample of data and current stats.) You might be able to make sense of what the black art is producing. Looking at the query plans quickly lets you know more about how the database works, and when it is going to do something less than efficient.</p> <p>Take those inefficient points, and look at them. Look at the method it chose. An index may or may not change the plan (if it doesn't help, you can always drop it.) Learn the differences between B-Tree, R-Tree, and bit mask indexes, not just when they are recommended, but also how they are structured and how they work, so you will know WHY they are recommended.</p> <p>The only real way I have found to learn it is to do it.</p> <p>The only exception to the rule is Oracle 9 and newer sometimes chooses Merge Join Cartesian for no apparent reason. Once again, black art.</p> http://stackoverflow.com/questions/77646/commodore-c64-emulator/77710#77710 0 Answer by Grant Johnson for Commodore C64 Emulator? Grant Johnson 2008-09-16T22:04:16Z 2008-09-16T22:04:16Z <p>There is a thing callec the VersatIle Commodore Emulator (VICE) that will emulate the hardware, but you will have to find ROM images, and have a legal real ROM to use it.</p> <p>But why? Just buy a real one. They don't cost too much.</p> http://stackoverflow.com/questions/76364/what-is-the-single-most-effective-thing-you-did-to-improve-your-programming-skill/76396#76396 37 Answer by Grant Johnson for What is the single most effective thing you did to improve your programming skills? Grant Johnson 2008-09-16T20:10:02Z 2008-09-16T20:10:02Z <p>Looking back at old things I wrote and realizing just how bad they were.</p> http://stackoverflow.com/questions/17717/migrating-from-mysql-to-postgresql/74931#74931 6 Answer by Grant Johnson for Migrating from MySQL to PostgreSQL Grant Johnson 2008-09-16T17:40:37Z 2008-09-16T17:40:37Z <p>I have done a similar conversion, but for different reasons. It was because we needed better ACID support, and the ability to have web users see the same data they could via other DB tools (one ID for both).</p> <p>Here are the things that bit us:</p> <ol> <li>MySQL does not enforce constraints as strictly as PostgreSQL. </li> <li>There are different date handling routines. These will need to be manually converted. </li> <li>Any code that does not expect ACID compliance may be an issue.</li> </ol> <p>That said, once it was in place and tested, it was much nicer. With correct locking for safety reasons and heavy concurrent use, PostgreSQL performed better than MySQL. On the things where locking was not needed (read only) the performance was not quite as good, but it was still faster than the network card, so it was not an issue.</p> <p>Tips:</p> <ul> <li>The automated scripts in the contrib directory are a good starting point for your conversion, but will need to be touched a little usually.</li> <li>I would highly recommend that you use the serializable isolation level as a default.</li> <li>The pg_autodoc tool is good to really see your data structures and help find any relationships you forgot to define and enforce.</li> </ul> http://stackoverflow.com/questions/69959/postgresql-dblink-compilation-on-solaris-10/73275#73275 0 Answer by Grant Johnson for PostgreSQL DbLink Compilation on Solaris 10 Grant Johnson 2008-09-16T14:59:07Z 2008-09-16T14:59:07Z <p>Does the file it is looking for actually exist? Is it in that location?</p> <p>It may be one of a few things I can think of: 1) The thing did not compile, and therefore does not exist. 2) It exists, but somewhere else, and the environment variable that tells it where to find it is set wrong. 3) The permissions are such that the ID that the postmaster is running as cannot traverse to that directory.</p> <p>To check if it is somewhere else:</p> <pre><code>find / -type f|grep dblink.so </code></pre> <p>To check the permissions:</p> <pre><code>su - su - postgres less /apps/postgresql/ lib/dblink.so </code></pre> http://stackoverflow.com/questions/399559/postgresql-performance-issue/420052#420052 Comment by Grant Johnson on PostgreSQL performance issue Grant Johnson 2009-11-19T22:43:27Z 2009-11-19T22:43:27Z Buy RAM or reduce the number of processes other than DB on the machine. http://stackoverflow.com/questions/1214576/how-do-i-get-the-primary-keys-of-a-table-from-postgres-via-plpgsql/1215499#1215499 Comment by Grant Johnson on How do I get the primary key(s) of a table from Postgres via plpgsql? Grant Johnson 2009-08-27T20:16:33Z 2009-08-27T20:16:33Z Additionally, combine this with the data from pg_indexes, and you should be pretty good. Really a primary key is just a unique index with not null on all of the fields. http://stackoverflow.com/questions/18783/sql-what-are-your-favorite-performance-tricks/20254#20254 Comment by Grant Johnson on SQL - What are your favorite performance tricks? Grant Johnson 2008-10-27T18:12:57Z 2008-10-27T18:12:57Z Yes, but this can lead to weird bugs which are VERY hard to find. http://stackoverflow.com/questions/57406/indexed-views-in-oltps/57456#57456 Comment by Grant Johnson on Indexed Views in OLTPs? Grant Johnson 2008-10-13T16:26:19Z 2008-10-13T16:26:19Z They were in the OLTP. Mostly because shoving everything across the network on a DBLink was even worse than the hit on having them on the OLTP. The usage was getting ugly, and that is why we built them. It got much better after they were in place. http://stackoverflow.com/questions/186071/left-join-outperforming-inner-join Comment by Grant Johnson on Left Join outperforming Inner Join? Grant Johnson 2008-10-10T14:54:56Z 2008-10-10T14:54:56Z Post the explain plans, I expect that we will see the difference there. http://stackoverflow.com/questions/149553/best-format-for-a-software-engineers-resume/149669#149669 Comment by Grant Johnson on Best Format for a Software Engineer's Resume Grant Johnson 2008-09-29T17:08:20Z 2008-09-29T17:08:20Z He only had one real job, though... http://stackoverflow.com/questions/19/fastest-way-to-get-value-of-pi/85798#85798 Comment by Grant Johnson on Fastest way to get value of pi Grant Johnson 2008-09-26T14:42:05Z 2008-09-26T14:42:05Z Unfortunately, tangents are arctangents are based on pi, somewhat invalidating this calculation. http://stackoverflow.com/questions/121351/what-is-the-one-programming-skill-you-have-always-wanted-to-master-but-havent-ha/121783#121783 Comment by Grant Johnson on What is the one programming skill you have always wanted to master but haven't had time? Grant Johnson 2008-09-26T03:23:44Z 2008-09-26T03:23:44Z Check out Audacity. It is open source so you can go dig in and see how it works. http://stackoverflow.com/questions/102265/are-peoplesoft-integration-broker-asynchronous-messages-fired-serially-on-the-rec/115641#115641 Comment by Grant Johnson on Are PeopleSoft Integration Broker asynchronous messages fired serially on the receiving end? Grant Johnson 2008-09-22T21:21:11Z 2008-09-22T21:21:11Z There are some analysts looking at it, but this could (and often does ) take months. I was hoping to beat them to the punch. http://stackoverflow.com/questions/102265/are-peoplesoft-integration-broker-asynchronous-messages-fired-serially-on-the-rec/115641#115641 Comment by Grant Johnson on Are PeopleSoft Integration Broker asynchronous messages fired serially on the receiving end? Grant Johnson 2008-09-22T18:25:55Z 2008-09-22T18:25:55Z They don't know how it works. I have a case in with them, but they have no idea. I figure maybe I can fix it, and then it will be officially supported in the next bundle after they co-opt my fix. http://stackoverflow.com/questions/63241/what-is-the-strangest-programming-language-you-have-used/63548#63548 Comment by Grant Johnson on What is the strangest programming language you have used? Grant Johnson 2008-09-19T21:32:57Z 2008-09-19T21:32:57Z Weird, maybe. Painful, definitely. I am using it now. Just today had to delete a set of records. Oh, the pain... http://stackoverflow.com/questions/102714/what-was-your-first-home-computer/103217#103217 Comment by Grant Johnson on What was your first home computer? Grant Johnson 2008-09-19T20:10:36Z 2008-09-19T20:10:36Z Mine too. I still have it. It is a wonderful machine. http://stackoverflow.com/questions/101423/how-do-you-continue-to-improve-your-sql-skills/101459#101459 Comment by Grant Johnson on How do you continue to improve your SQL skills? Grant Johnson 2008-09-19T16:49:38Z 2008-09-19T16:49:38Z Improving SQL skills can help you keep the sorting and filtering closer to the data and out of the application. This can greatly improve performance. Also, sometimes queries do not produce what is expected, or are too slow. Learn to read plans for this. http://stackoverflow.com/questions/69959/postgresql-dblink-compilation-on-solaris-10/78444#78444 Comment by Grant Johnson on PostgreSQL DbLink Compilation on Solaris 10 Grant Johnson 2008-09-17T20:14:34Z 2008-09-17T20:14:34Z Ok, but which of the issues (file not there at all, file in wrong place, permissions) really caused the server to not find it? http://stackoverflow.com/questions/53132/mouse-for-programmer/53746#53746 Comment by Grant Johnson on Mouse for programmer Grant Johnson 2008-09-17T03:01:08Z 2008-09-17T03:01:08Z I have to agree. The Logitech basic optical mouse is great. I really like the symmetrical ones like this.