数据库_ORACLE
liyong19850208
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
oracle网络配置listener.ora、sqlnet.ora、tnsnames.ora
oracle网络配置三个配置文件 listener.ora、sqlnet.ora、tnsnames.ora ,都是放在$ORACLE_HOME\network\admin目录下。 1.sqlnet.ora-----作用类似于linux或者其他unix的nsswitch.conf文件,通过这个文件来决定怎么样找一个连接中出现的连接字符串。 例如我们客户端输入 sqlplus sys/oracl转载 2012-07-13 00:02:42 · 671 阅读 · 0 评论 -
oracle 同义词建立
1 把一个用户的SELECT 权给另一个用户(以SYS身份执行): select 'grant select on cisco.'||table_name|| ' to chen ;' from all_tables where owner=upper('cisco'); 把CISCO用户下的所有表授权给CHEN这个用户 2 创建同义词包语句如下(以SYS身份执行): CREA转载 2012-07-13 00:13:52 · 550 阅读 · 0 评论 -
Oracle维护常用SQL语句
1:查看表空间的名称及大小 select t.tablespace_name, round(sum(bytes/(1024*1024)), 0) ts_size from dba_tablespaces t, dba_data_files d where t.tablespace_name = d.tablespace_name group by t.tablespace_name 2:转载 2012-07-13 00:17:20 · 405 阅读 · 0 评论 -
ORALCE重要后台进程
何时触发lgwr,dbwr,chpk等进程 Log Writer (LGWR) LGWR performs sequential writes from the Redo Log Buffer to the online redo log file under the followingsituations: 1.When a transaction comm转载 2012-07-16 09:44:12 · 624 阅读 · 0 评论
分享