Skip to content

Commit f14be6e

Browse files
committed
Removed -o in Linux since some version of bcp doesn't support it
1 parent a6768e8 commit f14be6e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

samples/features/sql-big-data-cluster/bootstrap-sample-db.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ for table in web_clickstreams inventory
3939
do
4040
echo Exporting $table data...
4141
# WSL ex: "/mnt/c/Program Files/Microsoft SQL Server/Client SDK/ODBC/130/Tools/Binn/bcp.exe"
42-
$DEBUG bcp sales.dbo.$table out "$table.csv" -S $SQL_MASTER_INSTANCE -Usa -P$SQL_MASTER_SA_PASSWORD -c -t, -o "$table.out" -e "$table.err" || (echo $ERROR_MESSAGE && exit 3)
42+
$DEBUG bcp sales.dbo.$table out "$table.csv" -S $SQL_MASTER_INSTANCE -Usa -P$SQL_MASTER_SA_PASSWORD -c -t, -e "$table.err" || (echo $ERROR_MESSAGE && exit 3)
4343
done
4444

4545
# Copy the data file to HDFS

0 commit comments

Comments
 (0)