We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a18e689 commit 6da89a9Copy full SHA for 6da89a9
SQL/Samples/LdwSample/SampleDB.sql
@@ -1,6 +1,9 @@
1
if db_name() = 'master'
2
throw 50001, 'This script cannot be executed in master database. Create new database and run the script there.', 1;
3
4
+if SERVERPROPERTY('EngineEdition') <> 11
5
+ throw 50001, 'This script must be executed on Azure Synapse - SQL serverless endpoint.', 1;
6
+
7
------------------------------------------------------------------------------------------
8
-- Part 1 - Cleanup script
9
-- This part removes objects from sample database
0 commit comments