first commit

This commit is contained in:
2026-08-21 08:37:51 -03:00
commit 881a99b0a8
214 changed files with 61407 additions and 0 deletions

13
sh/run_export.sh Normal file
View File

@@ -0,0 +1,13 @@
#!/bin/bash
ORACLE_HOME=/opt/oracle/instantclient_21_9
export PATH=$ORACLE_HOME:$PATH LD_LIBRARY_PATH=$ORACLE_HOME
sqlplus -s admin/<sua_senha>@<SEU_ADW_SERVICE> @export_data_pump.sql
if [ $? -ne 0 ]; then
echo "Export falhou em $(date)"
exit 1
else
echo "Export concluído com sucesso em $(date)"
fi