oracle
huhu2007
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
oracle 按汉字拼音顺序排序
oracle中,利用nlssort函数,对汉字排序,按拼音顺序排序 [code="java"] order by nlssort(t1.NAME, 'NLS_SORT=SCHINESE_PINYIN_M') [/code]原创 2013-05-04 12:47:50 · 300 阅读 · 0 评论 -
oarcle使用ipc协议配置方法
使用ipc协议连接oracle,前提客户端与oracle server要在一台机器上。 When a process is on the same machine as the server, use the IPC protocol for connectivity instead of TCP. Inner Process Communication on the same mach...原创 2013-12-03 20:24:57 · 2052 阅读 · 1 评论 -
ORACLE正则
oracle中使用正则匹配一列都是数字,或不是数字 NOT REGEXP_LIKE(description,'[[:digit]]'): Matching for a non-digit [code="java"] SELECT * FROM dual WHERE regexp_like('1234', '^[[:digit:]]+$'); [/code] [code="java"...原创 2014-01-02 18:35:33 · 187 阅读 · 0 评论
分享