
Oralcle
dblion
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
LPAD 和 RPAD 例子
SELECT LPAD('coperator', 10, '@') "LPAD" FROM DUAL; SELECT RPAD('coperator', 10, '@') "RPAD" FROM DUAL; 输出结果:原创 2013-04-16 14:38:37 · 626 阅读 · 0 评论 -
Oracle: ORA-错误
ORA-00198: column ambiguously defined ORA-00198: 未明确定义列的错误 解决办法: 寻找不同表中可能相同的字段,加上别名。 ORA-12170: TNS: Connect timeout occurred ORA-12170: TNS: 连接超时 解决办法: 检查网络是否通畅。 1.cmd ping ip地址(要连接的服务器) 2.原创 2013-04-03 10:25:28 · 1352 阅读 · 0 评论 -
查看当前Oracle默认日期格式
SQL> select * from nls_session_parameters;原创 2014-05-11 06:56:42 · 4921 阅读 · 0 评论 -
将某个用户的所有表的查询权限授权给另一个用户
详细操作步骤: 1.原创 2014-05-12 06:29:41 · 7976 阅读 · 0 评论 -
Oracle_NVL函数
NVL Syntax Description of the illustration nvl.gif Purpose NVL lets you replace null (returned as a blank) with a string in the results of a query. If expr1 is null, then NVL returns expr转载 2014-05-14 06:43:53 · 839 阅读 · 0 评论 -
Oracle_COALESCE函数
file:///P:/Oracle官方文档/11.2官方文档/server.112/e26088/functions030.htm#SQLRF00617转载 2014-05-28 00:00:13 · 924 阅读 · 0 评论 -
Oracle_Count函数
COUNT Syntax Description of the illustration count.gif See Also: "Analytic Functions" for information on syntax, semantics, and restrictions Purpose COUNT returns the number of rows ret转载 2014-05-30 06:54:43 · 910 阅读 · 0 评论