hmm
Code:
SQL> create table xyz (x varchar2(40));
Table created.
SQL> insert into xyz values ('abc,def');
1 row created.
SQL> commit;
Commit complete.
SQL> insert into xyz (x) values ('ghi,jkl');
1 row created.
SQL> commit;
Commit complete.