User Grant Johnson - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T10:44:15Zhttp://stackoverflow.com/feeds/user/12518http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1689396/looking-for-an-sql-statement-which-groups-by-type/1689487#16894870Answer by Grant Johnson for Looking for an SQL statement which groups by typeGrant Johnson2009-11-06T18:41:39Z2009-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(*) > 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#16706700Answer by Grant Johnson for Degraded performance of a query after adding IndexGrant Johnson2009-11-03T22:51:28Z2009-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#13435380Answer by Grant Johnson for Is there a postgres fuzzy match faster than pg_trgm?Grant Johnson2009-08-27T20:19:01Z2009-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#13431520Answer by Grant Johnson for unable to run postgres as windows serviceGrant Johnson2009-08-27T18:59:32Z2009-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#5077981Answer by Grant Johnson for Select unlocked row in PostgresqlGrant Johnson2009-02-03T16:17:57Z2009-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-rec1Are PeopleSoft Integration Broker asynchronous messages fired serially on the receiving end?Grant Johnson2008-09-19T14:28:41Z2009-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#1166761Answer by Grant Johnson for Converting PostgreSQL database to MySQLGrant Johnson2008-09-22T18:39:11Z2008-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#1786623Answer by Grant Johnson for Indexed Views in OLTPs?Grant Johnson2008-10-07T14:20:04Z2008-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#1786141Answer by Grant Johnson for Tool: ETL from an ODBC to SQL 05?Grant Johnson2008-10-07T14:06:42Z2008-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#1553960Answer by Grant Johnson for Cascading deletes in PostgreSQLGrant Johnson2008-09-30T22:34:48Z2008-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#1539020Answer by Grant Johnson for Trip time calculation in relational databases?Grant Johnson2008-09-30T16:36:54Z2008-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 < 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#1496750Answer by Grant Johnson for SQL clone record with a unique indexGrant Johnson2008-09-29T17:05:07Z2008-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#1422590Answer by Grant Johnson for How do you teach the stuff that good programming is made of?Grant Johnson2008-09-26T22:02:30Z2008-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#1406180Answer by Grant Johnson for Are PeopleSoft Integration Broker asynchronous messages fired serially on the receiving end?Grant Johnson2008-09-26T16:43:33Z2008-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#1355741Answer by Grant Johnson for CASCADE DELETE just onceGrant Johnson2008-09-25T19:49:55Z2008-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#1338320Answer by Grant Johnson for Does this kind of organizer program exist?Grant Johnson2008-09-25T14:58:57Z2008-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#1295270Answer by Grant Johnson for postgreSQL - psql \i : how to execute script in a given pathGrant Johnson2008-09-24T20:03:23Z2008-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#1225271Answer by Grant Johnson for What is PostgreSQL explain telling me exactly?Grant Johnson2008-09-23T17:39:43Z2008-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-1Answer by Grant Johnson for Sql query to determine status?Grant Johnson2008-09-23T16:31:47Z2008-09-23T16:31:47Z<pre><code>select count(*) from process_monitor
where timestamp > yesterday and timestamp < 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<next_day);
</code></pre>
http://stackoverflow.com/questions/112249/update-very-large-postgresql-database-table-efficiently/116712#1167122Answer by Grant Johnson for Update VERY LARGE PostgresQL database table efficientlyGrant Johnson2008-09-22T18:46:14Z2008-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#1058510Answer by Grant Johnson for What single URL should every web developer have bookmarked?Grant Johnson2008-09-19T21:38:31Z2008-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#1058431Answer by Grant Johnson for What is the ultimate program to make a drawing of a database model?Grant Johnson2008-09-19T21:37:14Z2008-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#1036521Answer by Grant Johnson for How do you continue to improve your SQL skills?Grant Johnson2008-09-19T16:52:56Z2008-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#1030561Answer by Grant Johnson for SQL Question - Possibly Cursor/Join related?Grant Johnson2008-09-19T15:43:29Z2008-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#1029181Answer by Grant Johnson for How can I get Datetime to display in military time in oracle?Grant Johnson2008-09-19T15:32:05Z2008-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#973341Answer by Grant Johnson for What are some references, lessons and or best practices for SQL optimization training.Grant Johnson2008-09-18T21:46:04Z2008-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#777100Answer by Grant Johnson for Commodore C64 Emulator?Grant Johnson2008-09-16T22:04:16Z2008-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#7639637Answer by Grant Johnson for What is the single most effective thing you did to improve your programming skills?Grant Johnson2008-09-16T20:10:02Z2008-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#749316Answer by Grant Johnson for Migrating from MySQL to PostgreSQLGrant Johnson2008-09-16T17:40:37Z2008-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#732750Answer by Grant Johnson for PostgreSQL DbLink Compilation on Solaris 10 Grant Johnson2008-09-16T14:59:07Z2008-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#420052Comment by Grant Johnson on PostgreSQL performance issueGrant Johnson2009-11-19T22:43:27Z2009-11-19T22:43:27ZBuy 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#1215499Comment by Grant Johnson on How do I get the primary key(s) of a table from Postgres via plpgsql?Grant Johnson2009-08-27T20:16:33Z2009-08-27T20:16:33ZAdditionally, 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#20254Comment by Grant Johnson on SQL - What are your favorite performance tricks?Grant Johnson2008-10-27T18:12:57Z2008-10-27T18:12:57ZYes, but this can lead to weird bugs which are VERY hard to find.http://stackoverflow.com/questions/57406/indexed-views-in-oltps/57456#57456Comment by Grant Johnson on Indexed Views in OLTPs?Grant Johnson2008-10-13T16:26:19Z2008-10-13T16:26:19ZThey 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-joinComment by Grant Johnson on Left Join outperforming Inner Join?Grant Johnson2008-10-10T14:54:56Z2008-10-10T14:54:56ZPost 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#149669Comment by Grant Johnson on Best Format for a Software Engineer's ResumeGrant Johnson2008-09-29T17:08:20Z2008-09-29T17:08:20ZHe only had one real job, though...http://stackoverflow.com/questions/19/fastest-way-to-get-value-of-pi/85798#85798Comment by Grant Johnson on Fastest way to get value of piGrant Johnson2008-09-26T14:42:05Z2008-09-26T14:42:05ZUnfortunately, 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#121783Comment by Grant Johnson on What is the one programming skill you have always wanted to master but haven't had time?Grant Johnson2008-09-26T03:23:44Z2008-09-26T03:23:44ZCheck 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#115641Comment by Grant Johnson on Are PeopleSoft Integration Broker asynchronous messages fired serially on the receiving end?Grant Johnson2008-09-22T21:21:11Z2008-09-22T21:21:11ZThere 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#115641Comment by Grant Johnson on Are PeopleSoft Integration Broker asynchronous messages fired serially on the receiving end?Grant Johnson2008-09-22T18:25:55Z2008-09-22T18:25:55ZThey 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#63548Comment by Grant Johnson on What is the strangest programming language you have used?Grant Johnson2008-09-19T21:32:57Z2008-09-19T21:32:57ZWeird, 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#103217Comment by Grant Johnson on What was your first home computer?Grant Johnson2008-09-19T20:10:36Z2008-09-19T20:10:36ZMine 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#101459Comment by Grant Johnson on How do you continue to improve your SQL skills?Grant Johnson2008-09-19T16:49:38Z2008-09-19T16:49:38ZImproving 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#78444Comment by Grant Johnson on PostgreSQL DbLink Compilation on Solaris 10 Grant Johnson2008-09-17T20:14:34Z2008-09-17T20:14:34ZOk, 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#53746Comment by Grant Johnson on Mouse for programmerGrant Johnson2008-09-17T03:01:08Z2008-09-17T03:01:08ZI have to agree. The Logitech basic optical mouse is great. I really like the symmetrical ones like this.