Skip to content

Commit d05c6cd

Browse files
authored
Create 4-monitor-domains.sql
1 parent 8b06852 commit d05c6cd

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)