Added new directory to hold useful utilities

git-svn-id: http://locode01.ad.dom/svn/WEBMIP/trunk@2920 248e525c-4dfb-0310-94bc-949c084e9493
This commit is contained in:
hardya
2007-11-30 11:28:10 +00:00
parent 1e792a7dac
commit c4194fe762
4 changed files with 24 additions and 0 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,24 @@
@echo off
if "%1" == "" goto :usage
if "%2" == "" goto :usage
if "%3" == "" goto :usage
@echo Delete the existing export of %3...
if exist f%3 rd /s /q f%3
@echo Export application %3...
set CLASSPATH=%CLASSPATH%;classes\classes12.jar;classes\apex.jar
java oracle.apex.APEXExport -db loordv01:1521:dev10g -user %1 -password %2 -applicationid %3
@echo Split application %3...
java oracle.apex.APEXExportSplitter f%3.sql
@echo Export of application %3 into directory f%3 complete...
goto :done
:usage
echo exp_apex db_username db_password applicationid
:done