Datapump , export query avec date
http://amit7oracledba.blogspot.com/2013/12/query-parameter-in-datapump-utility.html
En poursuivant votre navigation sur ce site, vous acceptez l'utilisation de cookies. Ces derniers assurent le bon fonctionnement de nos services. En savoir plus.
http://amit7oracledba.blogspot.com/2013/12/query-parameter-in-datapump-utility.html
https://www.oracle-dba-online.com/sql/oracle_table_partition.htm
https://nguyentichthanh.wordpress.com/how-to-determine-the-actual-size-of-the-lob-segments-and-how-to-free-the-deletedunused-space-abovebelow-the-hwm-doc-id-386341-1/
http://www.br8dba.com/upgrade-oracle-database-from-11-2-0-4-to-12-2-0-1-using-dbua/
http://www.br8dba.com/tag/upgrade-oracle-database-manually-from-11-2-0-4-to-12-2-0-1/
http://dbaclass.com/article/upgrade-database-from-12-1-0-2-to-12-2-0-1/
https://blog.devart.com/find-invalid-objects-in-your-databases.html
https://pgstef.github.io/2018/01/04/introduction_to_pgbackrest.html
https://fr.slideshare.net/slardiere/pgbackrest-pgdayfr
http://laetitia-avrot.blogspot.com/2017/02/faire-une-sauvegarde-avec-pgbackrest.html
http://laetitia-avrot.blogspot.com/2017/02/restaurer-avec-pgbackrest.html
calcul de l'are
https://droit-finances.commentcamarche.com/faq/3561-allocation-chomage-2019-calcul-de-l-indemnite-are-2019
calcul du salaire journalier de référence
https://droit-finances.commentcamarche.com/contents/1532-chomage-calcul-du-salaire-journalier-de-reference
-- ----------------------------------------------------------------------------------- -- File Name : https://oracle-base.com/dba/monitoring/identify_trace_file.sql -- Author : Tim Hall -- Description : Displays the name of the trace file associated with the current session. -- Requirements : Access to the V$ views. -- Call Syntax : @identify_trace_file -- Last Modified: 17-AUG-2005 -- ----------------------------------------------------------------------------------- SET LINESIZE 100 COLUMN trace_file FORMAT A60 SELECT s.sid, s.serial#, pa.value || '/' || LOWER(SYS_CONTEXT('userenv','instance_name')) || '_ora_' || p.spid || '.trc' AS trace_file FROM v$session s, v$process p, v$parameter pa WHERE pa.name = 'user_dump_dest' AND s.paddr = p.addr AND s.audsid = SYS_CONTEXT('USERENV', 'SESSIONID');