Hidden Features of PostgreSQL - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T22:03:51Z http://stackoverflow.com/feeds/question/761327 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/761327/hidden-features-of-postgresql 15 Hidden Features of PostgreSQL ramanujan 2009-04-17T17:16:28Z 2009-06-22T00:20:38Z <p>I'm surprised this hasn't been posted yet. Any interesting tricks that you know about in Postgres? Obscure config options and scaling/perf tricks are particularly welcome. </p> <p>I'm sure we can beat the 9 comments on the corresponding <a href="http://stackoverflow.com/questions/368858/hidden-features-of-mysql/600830#600830">MySQL thread</a> :)</p> http://stackoverflow.com/questions/761327/hidden-features-of-postgresql/761345#761345 5 Answer by ramanujan for Hidden Features of PostgreSQL ramanujan 2009-04-17T17:20:22Z 2009-04-17T17:20:22Z <p><strong>COPY</strong></p> <p>I'll start. Whenever I switch to Postgres from SQLite, I usually have some really big datasets. The key is to load your tables with COPY FROM rather than doing INSERTS. See documentation: </p> <p><a href="http://www.postgresql.org/docs/8.1/static/sql-copy.html" rel="nofollow">http://www.postgresql.org/docs/8.1/static/sql-copy.html</a></p> <p>The following example copies a table to the client using the vertical bar (|) as the field delimiter:</p> <pre><code>COPY country TO STDOUT WITH DELIMITER '|'; </code></pre> <p>To copy data from a file into the country table:</p> <pre><code>COPY country FROM '/usr1/proj/bray/sql/country_data'; </code></pre> <p>See also here: <a href="http://stackoverflow.com/questions/364017/faster-bulk-inserts-in-sqlite3/759866#759866">http://stackoverflow.com/questions/364017/faster-bulk-inserts-in-sqlite3/759866#759866</a></p> http://stackoverflow.com/questions/761327/hidden-features-of-postgresql/761359#761359 2 Answer by Quassnoi for Hidden Features of PostgreSQL Quassnoi 2009-04-17T17:21:54Z 2009-04-18T20:07:49Z <ul> <li>My by far favorite is <code>generate_series</code>: at last a clean way to generate dummy rowsets.</li> <li><p>Ability to use a correlated value in a <code>LIMIT</code> clause of a subquery:</p> <pre><code>SELECT ( SELECT exp_word FROM mytable OFFSET id LIMIT 1 ) FROM othertable </code></pre></li> <li>Abitlity to use multiple parameters in custom aggregates (not covered by the documentation): see <a href="http://explainextended.com/2009/03/04/aggregate-concatenation/" rel="nofollow"><strong>the article in my blog</strong></a> for an example.</li> </ul> http://stackoverflow.com/questions/761327/hidden-features-of-postgresql/761456#761456 9 Answer by ChristopheD for Hidden Features of PostgreSQL ChristopheD 2009-04-17T17:41:43Z 2009-04-17T17:41:43Z <p>The <em>easiest</em> trick to let postgresql perform a lot better (apart from setting and using proper indexes of course) is just to give it more RAM to work with (if you have not done so already). On most default installations the value for <strong>shared_buffers</strong> is way too low (in my opinion). You can set </p> <blockquote> <p>shared_buffers</p> </blockquote> <p>in postgresql.conf. Divide this number by 128 to get an approximation of the amount of memory (in MB) postgres can claim. If you up it enough this will make postgresql fly. Don't forget to restart postgresql.</p> <p>On Linux systems, when postgresql won't start again you will probably have hit the kernel.shmmax limit. Set it higher with</p> <pre><code>sysctl -w kernel.shmmax=xxxx </code></pre> <p>To make this persist between boots, add a kernel.shmmax entry to /etc/sysctl.conf.</p> <p><strong>A whole bunch of Postgresql tricks can be found here</strong>:</p> <ul> <li><a href="http://www.postgres.cz/index.php/PostgreSQL%5FSQL%5FTricks" rel="nofollow">http://www.postgres.cz/index.php/PostgreSQL_SQL_Tricks</a></li> </ul> http://stackoverflow.com/questions/761327/hidden-features-of-postgresql/761581#761581 13 Answer by etlerant for Hidden Features of PostgreSQL etlerant 2009-04-17T18:14:09Z 2009-04-18T11:06:47Z <p>Since postgres is a lot more sane than MySQL, so there are not that many "tricks" to report on ;-)</p> <p>The <a href="http://www.postgresql.org/docs/8.3/interactive/" rel="nofollow">manual</a> has some nice <a href="http://www.postgresql.org/docs/8.3/interactive/performance-tips.html" rel="nofollow">performance</a> tips.</p> <p>A few other performance related things to keep in mind:</p> <ul> <li>Make sure autovacuum is turned on</li> <li>Make sure you've gone through your postgres.conf (effective cache size, shared buffers, work mem ... lots of options there to tune).</li> <li>Use pgpool or <a href="http://pgfoundry.org/projects/pgbouncer/" rel="nofollow">pgbouncer</a> to keep your "real" database connections to a minimum</li> <li>Learn how <a href="http://www.postgresql.org/docs/8.3/static/sql-explain.html" rel="nofollow">EXPLAIN</a> and EXPLAIN ANALYZE works. Learn to read the output.</li> <li><a href="http://www.postgresql.org/docs/8.3/static/sql-cluster.html" rel="nofollow">CLUSTER</a> sorts data on disk according to an index. Can dramatically improve performance of large (mostly) read-only tables. Clustering is a one-time operation: when the table is subsequently updated, the changes are not clustered. </li> </ul> <p>Here's a few things I've found useful that aren't config or performance related per say.</p> <p>To see what's currently happening:</p> <pre><code>select * from pg_stat_activity; </code></pre> <p>Search misc functions:</p> <pre><code>select * from pg_proc WHERE proname ~* '^pg_.*' </code></pre> <p>Find size of database:</p> <pre><code>select pg_database_size('postgres'); select pg_size_pretty(pg_database_size('postgres')); </code></pre> <p>Find size of all databases:</p> <pre><code>select datname, pg_size_pretty(pg_database_size(datname)) as size from pg_database; </code></pre> <p>Find size of tables and indexes:</p> <pre><code>select pg_size_pretty(pg_relation_size('public.customer')); </code></pre> <p>Or, to list all tables and indexes (probably easier to make a view of this):</p> <pre><code>select schemaname, relname, pg_size_pretty(pg_relation_size(schemaname || '.' || relname)) as size from (select schemaname, relname, 'table' as type from pg_stat_user_tables union all select schemaname, relname, 'index' as type from pg_stat_user_indexes )x; </code></pre> <p>Oh, and you can nest transactions, rollback partial transactions++</p> <pre><code>test=# begin; BEGIN test=# select count(*) from customer where name='test'; count ------- 0 (1 row) test=# insert into customer (name) values ('test'); INSERT 0 1 test=# savepoint foo; SAVEPOINT test=# update customer set name='john'; UPDATE 3 test=# rollback to savepoint foo; ROLLBACK test=# commit; COMMIT test=# select count(*) from customer where name='test'; count ------- 1 (1 row) </code></pre> http://stackoverflow.com/questions/761327/hidden-features-of-postgresql/761607#761607 4 Answer by Chad Birch for Hidden Features of PostgreSQL Chad Birch 2009-04-17T18:21:33Z 2009-04-17T18:21:33Z <p>One of the things I really like about postgre is some of the data types supported in columns. For example, there are column types made for storing <a href="http://www.postgresql.org/docs/8.3/interactive/datatype-net-types.html" rel="nofollow">Network Addresses</a> and <a href="http://www.postgresql.org/docs/8.3/interactive/arrays.html" rel="nofollow">Arrays</a>. The corresponding functions (<a href="http://www.postgresql.org/docs/8.3/interactive/functions-net.html" rel="nofollow">Network Addresses</a> / <a href="http://www.postgresql.org/docs/8.3/interactive/functions-array.html" rel="nofollow">Arrays</a>) for these column types let you do a lot of complex operations inside queries that you'd have to do by processing results through code in MySQL or other database engines.</p> http://stackoverflow.com/questions/761327/hidden-features-of-postgresql/762712#762712 2 Answer by kquinn for Hidden Features of PostgreSQL kquinn 2009-04-18T01:31:48Z 2009-04-18T01:31:48Z <p><a href="http://www.postgresql.org/docs/8.3/interactive/pgcrypto.html" rel="nofollow">pgcrypto</a>: more cryptographic functions than many programming languages' crypto modules provide, all accessible direct from the database. It makes cryptographic stuff incredibly easy to Just Get Right.</p> http://stackoverflow.com/questions/761327/hidden-features-of-postgresql/762717#762717 7 Answer by theatrus for Hidden Features of PostgreSQL theatrus 2009-04-18T01:38:52Z 2009-04-18T01:38:52Z <p>Postgres has a very powerful datetime handling facility thanks to its INTERVAL support.</p> <p>For example:</p> <pre><code>select NOW(), NOW() + '1 hour'; now | ?column? -------------------------------+------------------------------- 2009-04-18 01:37:49.116614+00 | 2009-04-18 02:37:49.116614+00 (1 row) </code></pre> <p>You can cast many strings to an INTERVAL type.</p> http://stackoverflow.com/questions/761327/hidden-features-of-postgresql/766600#766600 3 Answer by Michael Buen for Hidden Features of PostgreSQL Michael Buen 2009-04-20T02:04:46Z 2009-04-20T02:04:46Z <pre><code>select pg_size_pretty(200 * 1024) </code></pre> http://stackoverflow.com/questions/761327/hidden-features-of-postgresql/1025107#1025107 2 Answer by Cameron for Hidden Features of PostgreSQL Cameron 2009-06-22T00:15:01Z 2009-06-22T00:20:38Z <p>Materialized Views are pretty easy to setup:</p> <pre><code>CREATE VIEW my_view AS SELECT id, AVG(my_col) FROM my_table GROUP BY id; CREATE TABLE my_matview AS SELECT * FROM my_view; </code></pre> <p>That creates a new table, my_matview, with the columns and values of my_view. Triggers or a cron script can then be setup to keep the data up to date, or if you're lazy:</p> <pre><code>TRUNCATE my_matview; INSERT INTO my_matview SELECT * FROM my_view; </code></pre>