Vous n'êtes pas identifié(e).
- Contributions : Récentes | Sans réponse
Pages : 1
#1 Général » Requête » 29/03/2012 15:28:20
- mollux78
- Réponses : 1
J'ai une requête sous postgres :
select distinct a.application,j.job, j.cycle, j.cyclique, j.utilisateur, j.machine, h.date_debut, 24*3600*(to_date(h.date_fin,'DD-MM-YYYY HH24:MI:SS')-to_date(h.date_debut,'DD-MM-YYYY HH24:MI:SS')) as duree, h.statut from t_application a, t_job j, t_histo_stat h where to_date(h.date_fin,'DD-MM-YYYY HH24:MI:SS') between LOCALTIMESTAMP - interval '2 day' and LOCALTIMESTAMP + interval '0 day' and h.environnement ='SIE-VALO-FACTU' and a.application = h.appli and j.job = h.job and j.id_domaine = 1 and a.id_environnement_ora = j.id_environnement_ora and a.id_application_ora = j.id_application_ora and h.statut != 'NON-PLANIFIE' and h.date_fin != h.date_debut order by a.application, j.job, h.date_debut;
le champ durée me donne une valeur entière 0 ou 1. Alors qu'en oracle, j 'avais le champ durée avec des 0,03... ETC
COmment est il possible de formater dans ma requête le champ durée pour avoir des chiffres à la virgule ?
#2 Re : Général » pg_dump et pg_restore » 29/03/2012 15:24:20
merci cela répond bien à ma question
#3 Général » pg_dump et pg_restore » 28/03/2012 15:34:47
- mollux78
- Réponses : 2
D'un serveur je fais un pg_dump :
pg_dump ESDA01 > ESDA01.dmp
De l'autre j'essaie de restaurer :
pg_restore -c -C -d esdapp ESDA01.dmp
et j'ai ce message d'erreur alors que le fichier n'a pas varié de taille et est le même que sur le premier serveur :
pg_restore: [archiver] input file does not appear to be a valid archive
avez vous une idéee
Pages : 1