We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b53f6fe commit b690e60Copy full SHA for b690e60
1 file changed
samples/manage/azure-sql-db-managed-instance/compare-environment-settings/compare-properties.sql
@@ -1,3 +1,5 @@
1
+declare @verbose int = 0; -- change to 1 to get more verbose comparison;
2
+
3
declare @source xml = '<place source XML result here>';
4
declare @target xml = '<place target XML result here>';
5
@@ -43,6 +45,6 @@ or src.value is not null and tgt.value is null)
43
45
)
44
46
select *
47
from diff
-where is_missing = 0 -- comment-out this line to compare missing properties.
48
+where is_missing = 0 or @verbose = 1 -- in the earlier versions you had to comment out this line. Now just set the value of the flag up
49
order by property
50
0 commit comments