Skip to content

Commit 7030db3

Browse files
authored
Update 1-creating-domain.sql
1 parent daa6b47 commit 7030db3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

data-platform/core-converged-db/database-23c/sql-domains/1-creating-domain.sql

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@ REM Script for 23c: 1-creating-domain.sql
22

33
-- optional drop the domain.
44
-- Using FORCE in contrast to PRESERVE disassociates the domain from all its dependent columns
5+
56
drop domain myemail_domain;
67

7-
--create a domain to describe an email
8+
-- create a domain to describe an email
89

910
create domain if not exists myemail_domain AS VARCHAR2(100)
1011
default on null 'XXXX' || '@missingmail.com'

0 commit comments

Comments
 (0)