Skip to content

PostgreSQL platform specific notes

LHCGreg edited this page Sep 8, 2013 · 1 revision
  • Imports use a transaction on the source database so the import is guaranteed to be transactionally consistent.
  • Notices are displayed in the output of pgdbsc.
  • You can raise notices in your scripts by using inline pl/pgsql like so:
DO $$ BEGIN RAISE NOTICE 'Hello'; END $$;