Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
SQL> create table scohan1 (id number primary key);
Table created.
SQL> insert into scohan1 values (1);
1 row created.
SQL> create table scohan2 (id number primary key);
Table created.
SQL> insert into scohan2 values (1);
1 row created.
SQL> commit;
Commit complete.
SQL> select * from scohan1;
ID
----------
1
1 row selected.
SQL> select * from scohan2;
ID
----------
1
1 row selected.
SQL> begin
2 insert into scohan1 values(2);
3 insert into scohan2 values(1);
4 end;
5 /
begin
*
ERROR at line 1:
ORA-00001: unique constraint (TEST.SYS_C008958) violated
ORA-06512: at line 3
SQL> commit;
Commit complete.
SQL> select * from scohan1;
ID
----------
1
1 row selected.
SQL> select * from scohan2;
ID
----------
1
1 row selected.
SQL>