Let’s start with the product management. I’ll try to keep it simple for the time being. My weapon of choice, when designing the database schema is the almost great WWW SQL Designer.
Right now the schema looks like this:
And the XML file is located here.
To move table to different schema in PostgreSQL use:
ALTER TABLE table_name SET SCHEMA schema_name;
¶
Posted 26 August 2009
† AquilaX §
‡
To enable PL/SQL in PostgreSQL use:
CREATE LANGUAGE ‘plpgsql’ HANDLER plpgsql_call_handler
LANCOMPILER ‘PL/pgSQL’;
¶
Posted 19 November 2008
† AquilaX §
‡
Some workarounds to alter columns position in Postgres
¶
Posted 14 November 2008
† AquilaX §
‡
When I switched from MySQL to PostgreSQL, one of the things I missed the most was the ease of paging using SQL_CALC_FOUND_ROWS and SELECT FOUND_ROWS() afterwards. One of the places I use it heavily is in my Table class, which generates, sortable, filterable and paged HTML table based on an SQL Query. The tough spot [...]
¶
Posted 06 October 2008
† AquilaX §
‡