We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b06852 commit d05c6cdCopy full SHA for d05c6cd
data-platform/core-converged-db/database-23c/sql-domains/4-monitor-domains.sql
@@ -0,0 +1,13 @@
1
+REM script for 23c: 4-monitor-domains.sql
2
+
3
+-- use USER_DOMAINS and USER_DOMAIN_CONSTRAINTS to get information about domains
4
5
+col owner format a15
6
+col name format a15
7
+select owner, name, data_display
8
+from user_domains;
9
10
+col domain_owner format a15
11
+col domain_name format a15
12
+select * from user_domain_constraints
13
+where domain_name='MYEMAIL_DOMAIN';
0 commit comments