From c8bc392c60311bfb416c0164fe90d34851babd7e Mon Sep 17 00:00:00 2001 From: Umachandar Jayachandran Date: Mon, 12 Aug 2019 08:27:35 -0700 Subject: [PATCH] Fixed typos --- .../sql-big-data-cluster/data-virtualization/oracle/README.md | 2 +- .../data-virtualization/oracle/setup/bootstrap-oracle.cmd | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/samples/features/sql-big-data-cluster/data-virtualization/oracle/README.md b/samples/features/sql-big-data-cluster/data-virtualization/oracle/README.md index 0a473bb7..bbd568cf 100644 --- a/samples/features/sql-big-data-cluster/data-virtualization/oracle/README.md +++ b/samples/features/sql-big-data-cluster/data-virtualization/oracle/README.md @@ -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 diff --git a/samples/features/sql-big-data-cluster/data-virtualization/oracle/setup/bootstrap-oracle.cmd b/samples/features/sql-big-data-cluster/data-virtualization/oracle/setup/bootstrap-oracle.cmd index f3231982..6c13bebd 100644 --- a/samples/features/sql-big-data-cluster/data-virtualization/oracle/setup/bootstrap-oracle.cmd +++ b/samples/features/sql-big-data-cluster/data-virtualization/oracle/setup/bootstrap-oracle.cmd @@ -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 (