Skip to content

Commit c8bc392

Browse files
committed
Fixed typos
1 parent 26801b9 commit c8bc392

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

samples/features/sql-big-data-cluster/data-virtualization/oracle/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ SQL Server 2019 introduces new ODBC connectors to data sources like SQL Server,
88

99
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.
1010

11-
**Before you begin**, you need to have an Oracle instance and credentials. Follow the instruction in the [setup\README.md](setup\README.md).
11+
**Before you begin**, you need to have an Oracle instance and credentials. Follow the instruction in the [setup\README.md](setup/README.md).
1212

1313
### Instructions
1414

samples/features/sql-big-data-cluster/data-virtualization/oracle/setup/bootstrap-oracle.cmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ if NOT DEFINED ORACLE_SERVER goto :usage
99
if NOT DEFINED ORACLE_USER goto :usage
1010
if NOT DEFINED ORACLE_PASSWORD goto :usage
1111

12-
for %F in (sqlplus.exe sqlldr.exe) do (
12+
for %%F in (sqlplus.exe sqlldr.exe) do (
1313
echo Verifying %%F is in path & CALL WHERE /Q %%F || GOTO exit
1414
)
1515

1616

1717
for %%F in (sales-user.sql inventory.sql customer.sql) do (
1818
echo Executing [%%F]...
19-
echo exit | sqlplus -S %ORACLE_USER%/%ORACLE_PASSWORD%@%ORACLE_SERVER% @sales-user.sql || GOTO exit
19+
echo exit | sqlplus -S %ORACLE_USER%/%ORACLE_PASSWORD%@%ORACLE_SERVER% @%%F || GOTO exit
2020
)
2121

2222
for %%F in (inventory.ctl customer.ctl) do (

0 commit comments

Comments
 (0)