오라클에 대량 데이터를 가져 오려면 여러 박쥐 파일을 실행해야합니다. 하나의 박쥐 파일 만 실행하고 싶습니다.
오라클은 bat 파일 내의 배치 파일을 가져옵니다.
g:\1\import.bat
g:\2\import.bat
...
g:\n\import.bat
그리고 그들은 다음과 같습니다 :
배치 파일는 다음과 같이, 분리하고 하위 폴더에있는
@echo off
REM Copyright (c) 1999-2004 by Intergraph Corporation. All Rights Reserved.
REM Use this script to create feature class tables via SQL and populate tables with SQL*Loader.
REM The GDOSYS schema is no longer created via this script. If you want metadata to be loaded,
REM GDOSYS needs to exist prior to running import. You may use Database Utilities to create GDOSYS.
REM If you are using a comma for a decimal separator, set the NLS_NUMERIC_CHARACTERS parameter:
REM SET NLS_NUMERIC_CHARACTERS=,.
if "%1"=="" goto usage
SQLPLUS %1> @"kat_ki_vectors_epulet_i_pre.sql"
SQLLDR %1 CONTROL='kat_ki_vectors_epulet_i'
SQLPLUS %1 @"kat_ki_vectors_epulet_i_post.sql"
goto end
: usage
echo SYNTAX: "Import username/[email protected]"
echo WHERE:
echo - username/password is the Oracle user account where the data will be loaded.
echo - ConnectString is the Oracle NET string used to connect to the Oracle server.
echo See the document "Working with GeoMedia Professional" for more
information.
echo EXAMPLES:
echo Import scott/[email protected]_orcl
: end
pause
내가이 방망이 그들 모두를 실행하려고 파일 (적절한 인증 포함) :
call g:\1\import.bat ###/###@###.##
call g:\2\import.bat ###/###@###.##
...
call g:\n\import.bat ###/###@###.##
는 그러나 이것은 내가 가진 것입니다 : 그러나
G:\>do_the_trick.bat
G:\>call g:\1\import.bat ###/###@###.##
SQL*Plus: Release 11.1.0.6.0 - Production on K. Jan. 24 15:35:08 2017
Copyright (c) 1982, 2007, Oracle. All rights reserved.
Kapcsolódási cél:
Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production With the Partitioning, OLAP, Data Mining and Real Application Testing options
SP2-0310: nem lehet megnyitni a(z) "kat_ki_vectors_epulet_i_pre.sql" fájlt
"Kapcsolódási cél" ---> "Connecting target"
"nem lehet megnyitni a(z) " ---> "Can not be opened"
내가 가져 오기가 시작 직접
G:\1>import.bat ###/###@###.##
최초의 박쥐 파일을 실행합니다.
시험해보기위한 팁을주세요.
차이점은 수동으로 하위 디렉토리에서 배치를 실행한다는 것입니다. – LotPings