Fixed typos

This commit is contained in:
Umachandar Jayachandran
2019-08-12 08:27:35 -07:00
parent 26801b9661
commit c8bc392c60
2 changed files with 3 additions and 3 deletions
@@ -8,7 +8,7 @@ SQL Server 2019 introduces new ODBC connectors to data sources like SQL Server,
In this example, you are going to create an external table in a SQL Server instance over the inventory table that sits on an Oracle server. If you are using a SQL Server 2019 big data cluster then the scripts can be executed on the SQL Server Master instance.
**Before you begin**, you need to have an Oracle instance and credentials. Follow the instruction in the [setup\README.md](setup\README.md).
**Before you begin**, you need to have an Oracle instance and credentials. Follow the instruction in the [setup\README.md](setup/README.md).
### Instructions
@@ -9,14 +9,14 @@ if NOT DEFINED ORACLE_SERVER goto :usage
if NOT DEFINED ORACLE_USER goto :usage
if NOT DEFINED ORACLE_PASSWORD goto :usage
for %F in (sqlplus.exe sqlldr.exe) do (
for %%F in (sqlplus.exe sqlldr.exe) do (
echo Verifying %%F is in path & CALL WHERE /Q %%F || GOTO exit
)
for %%F in (sales-user.sql inventory.sql customer.sql) do (
echo Executing [%%F]...
echo exit | sqlplus -S %ORACLE_USER%/%ORACLE_PASSWORD%@%ORACLE_SERVER% @sales-user.sql || GOTO exit
echo exit | sqlplus -S %ORACLE_USER%/%ORACLE_PASSWORD%@%ORACLE_SERVER% @%%F || GOTO exit
)
for %%F in (inventory.ctl customer.ctl) do (