From a5fb597633c4b95cd37afe79d12b41a30f738def Mon Sep 17 00:00:00 2001 From: Umachandar Jayachandran Date: Thu, 29 Aug 2019 13:03:21 -0700 Subject: [PATCH] Modified nul device to NUL instead of /dev/null --- samples/features/sql-big-data-cluster/bootstrap-sample-db.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/features/sql-big-data-cluster/bootstrap-sample-db.sql b/samples/features/sql-big-data-cluster/bootstrap-sample-db.sql index 5aa651b0..f6811779 100644 --- a/samples/features/sql-big-data-cluster/bootstrap-sample-db.sql +++ b/samples/features/sql-big-data-cluster/bootstrap-sample-db.sql @@ -137,7 +137,7 @@ BEGIN -- Set recovery to full EXECUTE @proc N'ALTER DATABASE CURRENT SET RECOVERY FULL'; - SET @command = CONCAT(N'BACKUP DATABASE ', @db_name, ' TO DISK = ''/dev/null'';' ); + SET @command = CONCAT(N'BACKUP DATABASE ', @db_name, ' TO DISK = ''NUL'';' ); EXEC(@command); END;