Oracle
 sql >> Database >  >> RDS >> Oracle

Estrazione automatica dei dati - Oracle SQL Developer

Per prima cosa scrivi il tuo script parametrizzato:

define the_year=&1
define the_mon=&2

set lines etc
select * from the_table
where trunc(the_date , 'MM' ) = to_date ( '&the_year&the_mon', 'YYYYMM' )

spool extract_&the_year&the_mon.csv

/

spool off

Quindi uno script wrapper:

@the_script 2014 01
@the_script 2014 02
.
.
.
@the_script 2014 12

Puoi diventare intelligente (ish) e generare il wrapper:

sppol the_wrapper.sql
select '@the_script ' || to_char ( ADD_MONTHS ( trunc(sysdate,'YYYY' ), rn-1 ), 'YYYY MM' )
from ( select rownum rn from dual connect by level < 13 );
spool off

Non dimenticare le opzioni di impostazione per rendere eseguibile lo script generato (ad es. disattivare la verifica, disattivare il feedback, ecc.).