Ver Mensaje Individual
  #6 (permalink)  
Antiguo 13/02/2009, 05:05
seyko
 
Fecha de Ingreso: febrero-2007
Mensajes: 1.292
Antigüedad: 17 años, 3 meses
Puntos: 13
Respuesta: Fechas con hora y minutos.

Un ejemplo:
Código:
pruebas=# create table fechas (dat date, tims timestamp, timw timestamp without time zone);
CREATE TABLE
pruebas=# insert into fechas values (now(), now(), now());
INSERT 0 1
pruebas=# select * from fechas;
    dat     |           tims            |           timw
------------+---------------------------+---------------------------
 2009-02-13 | 2009-02-13 11:59:03.49635 | 2009-02-13 11:59:03.49635
Tipos de datos de fechas
http://www.postgresql.org/docs/8.3/i...-datetime.html
Funciones de fechas
http://www.postgresql.org/docs/8.3/i...-datetime.html

Como veras con sus ejemplos y demas.

Una busqueda a google para ver como se hace un backup
http://www.google.com/search?q=backu...ient=firefox-a

....

En fin, cuentame con detalle que te pasa que lo arreglemos

Salu2