first commit

This commit is contained in:
2026-06-13 08:23:21 -03:00
commit 89c23fb0ed
439 changed files with 32801 additions and 0 deletions

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