Query con ordinamento naturale
Posted March 22nd, 2013 by scottyVediamo in questa breve tip come realizzare un ordinamento naturale in postgresql 9.x
Supponiamo di avere una tabella testtable fatta nel modo seguente :
CREATE TABLE testtable
(
id serial NOT NULL,
valore text,
CONSTRAINT testtable_pkey PRIMARY KEY (id )
)
WITH (
OIDS=FALSE
);
ALTER TABLE testtable
OWNER TO postgres;
con i seguenti valori:
Database di template template1 con encoding utf8
Posted March 12th, 2013 by scottyQui sotto una piccola tip per far si che il template1 abbia l'encoding uft8
PostgreSQL 9.2 Feature Matrix
Posted September 10th, 2012 by scotty in
Ecco la feature matrix comprensiva della versione 9.2. link
PostgreSQL 9.2 is out !!!
Posted September 10th, 2012 by scottyUscita la versione 9.2 di Postgresql.. link a 9.2 Press Kit
PostgreSQL Magazine
Posted May 9th, 2012 by scotty in
E' uscitp il primo numero del PostgreSQL Magazine.Buona Lettura!!!
