23 lines
937 B
Markdown
23 lines
937 B
Markdown
@echo ============ erpman Export Start============
|
|
@echo off
|
|
SET ORACLE_SID=typs
|
|
for %%a in (%date%) do SET day=%%a
|
|
md D:\oracle_backup\exp_new\erpman_%day%
|
|
EXP erpman/erpman file=D:\oracle_backup\exp_new\erpman_%day%\erpman_%day%.dmp log=D:\oracle_backup\exp_new\erpman_%day%\erpman_%day%.log owner=ERPMAN STATISTICS=NONE
|
|
|
|
|
|
|
|
@echo ============ wmes Export Start============
|
|
@echo off
|
|
SET ORACLE_SID=typs
|
|
for %%a in (%date%) do SET day=%%a
|
|
md D:\oracle_backup\exp_new\wmes_%day%
|
|
EXP wmes/wmes file=D:\oracle_backup\exp_new\wmes_%day%\wmes_%day%.dmp log=D:\oracle_backup\exp_new\wmes_%day%\wmes_%day%.log owner=wmes STATISTICS=NONE
|
|
|
|
|
|
@echo ============ wout Export Start============
|
|
@echo off
|
|
SET ORACLE_SID=typs
|
|
for %%a in (%date%) do SET day=%%a
|
|
md D:\oracle_backup\exp_new\wout_%day%
|
|
EXP wout/wout file=D:\oracle_backup\exp_new\wout_%day%\wout_%day%.dmp log=D:\oracle_backup\exp_new\wout_%day%\wout_%day%.log owner=wout STATISTICS=NONE |