You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Checking if the connected instance is SQL Azure via the following code, which returns 1 if the instance is Azure SQL Database, should exit the module with advice that SQL Azure is not supported:
SELECT CASE WHEN CONVERT(nvarchar(128), SERVERPROPERTY(N'Edition')) LIKE N'%Azure%' THEN 1 ELSE 0 END