wangting
2024-04-15 6cbf81bf91ddb09b87c1756c4c7d4aa42bb22f4b
1
2
3
4
5
6
7
8
9
10
11
12
@echo off
 
set /p oracle_user="input oracle username: "
 
set /p oracle_pwd="input password: "
 
set /p oracle_dumpfile="input dumpfile name: "
 
set /p flag="execute Y|N: "
 
 
if  %flag%==Y (expdp %oracle_user%/%oracle_pwd%  directory=dmpdir dumpfile=%oracle_dumpfile%)