Oracle
 sql >> Base de Dados >  >> RDS >> Oracle

Existe um mecanismo de banco de dados que permita a restrição de campo desejável especificada pelo RegEx?


No Oracle, você pode especificar restrições personalizadas , em que você pode usar funções que avaliam regexp; por exemplo:
SQL> create table test_pattern ( txt varchar2(1000))
  2  /

Table created.

SQL> alter table test_pattern add constraint check_pattern check (regexp_instr(txt, '^START') != 0)
  2  /

Table altered.

SQL> insert into test_pattern values ('START a d f  g ')
  2  /

1 row created.

SQL> insert into test_pattern values ('_START a d f  g ')
  2  /
insert into test_pattern values ('_START a d f  g ')
*
ERROR at line 1:
ORA-02290: check constraint (SIUINTEGRA.CHECK_PATTERN) violated

Você pode obter informações sobre as restrições que você definiu com algo como:
select *
from dba_constraints       
where table_name = 'TEST_PATTERN'