Oracle
文章平均质量分 69
expbo
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
DataGuard 日常维护
1.停止Standby select process, status from v$managed_standby; --查看备库是否在应用日志进行恢复 alter database recover managed standby database cancel; shutdown immediate; 2.切换到只读模式 -----由shutdown模式切换到只读模式--转载 2016-11-01 10:21:21 · 466 阅读 · 0 评论 -
Oracle 统计表行数
1、建函数 create or replace function count_rows(table_name in varchar2, owner in varchar2 default null) return number authid current_user IS num_rows number; s原创 2016-11-01 10:28:16 · 2279 阅读 · 0 评论
分享