Oracle
 sql >> Database >  >> RDS >> Oracle

Esiste un motore di database che consente il vincolo di campo interrogabile specificato da RegEx?

In Oracle puoi specificare vincoli personalizzati , in cui puoi utilizzare funzioni che valutano regexp; ad esempio:

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

Puoi ottenere informazioni sui vincoli che hai impostato con qualcosa come:

select *
from dba_constraints       
where table_name = 'TEST_PATTERN'