全部博文(136)
分类: Oracle
2009-03-30 22:28:24
SQL> select *
2 from (select rownum rn from dba_objects where rownum < 6)
3 where rn between 2 and 4;
RN
----------
2
3
4 |
[dwapp@dbrac1 ~]$ oerr ora 30004
30004, 00000, "when using SYS_CONNECT_BY_PATH function, cannot have seperator as part of column value"
// *Cause:
// *Action: Use another seperator which does not occur in any column value,
// then retry. |