Oracle SQL Loader 使用全攻略

Posted by Admin L in Database on 16-05-2012. Tags:

一:sql loader 的特点
oracle自己带了很多的工具可以用来进行数据的迁移、备份和恢复等工作。但是每个工具都有自己的特点。
比如[……]

>>> 查看详情……

Oracle 常用语句及使用示例

Posted by Admin L in Database on 16-05-2012. Tags:

查询表格的结构用desc table_name;

一、data definition language
1、建表格
create ta[……]

>>> 查看详情……

Oracle 常用函数及使用示例

Posted by Admin L in Database on 16-05-2012. Tags:

SQL中的单记录函数
1.ASCII
返回与指定的字符对应的十进制数;
SQL> select ascii(’A’) A,ascii[……]

>>> 查看详情……

SQLServer 和 Oracle 常用函数对比

Posted by Admin L in Database on 16-05-2012. Tags:

———数学函数

1.绝对值
S:select abs(-1) value
O:select abs(-1) value f[……]

>>> 查看详情……

Oracle PL/SQL 语句优化 53 个规则详解

Posted by Admin L in Database on 16-05-2012. Tags:

1. 选用适合的ORACLE优化器
ORACLE的优化器共有3种:

a. RULE (基于规则)
b. COST (基于成本)
c.[……]

>>> 查看详情……

Oralce PL/SQL 优化经验总结

Posted by Admin L in Database on 16-05-2012. Tags:

第一章:概述
•什么样的SQL需要优化
•常见的问题
•发现问题的方法

什么样的SQL需要优化
•引发严重的等待亊件
•消耗大量[……]

>>> 查看详情……