上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 20 下一页
摘要: oracle SGA中包含数据高速缓冲,重做日志缓冲,以及共享池(share_pool)。共享池中包含库高速缓冲(所有的SQL,执行计划等)和数据字典缓冲(对象的定义,权限等)。 所以,如果SQL中没有绑定变量,那么会产生大量的SQL以及对应的执行计划,对共享池 造成影响 测试: 1.清空共享池 A 阅读全文
posted @ 2020-08-12 10:05 monkey6 阅读(396) 评论(0) 推荐(0) 编辑
摘要: select * from dba_sys_privs where GRANTEE='monkey'; select * from dba_role_privs where GRANTEE='monkey'; select * from DBA_TAB_PRIVS where GRANTEE='mo 阅读全文
posted @ 2020-08-11 15:26 monkey6 阅读(642) 评论(0) 推荐(0) 编辑
摘要: 1.创建测试数据 2.查看cursor_sharing的值 SQL> show parameter cursor_sharing; NAME TYPE VALUE cursor_sharing string EXACT 3.打开SQL追踪 SQL> alter session set sql_tra 阅读全文
posted @ 2020-08-11 15:11 monkey6 阅读(232) 评论(0) 推荐(0) 编辑
摘要: 一个不重要的数据库,备份是用expdp导出,然后上传到ftp服务器上面。上周这个主机宕机了,要在别的数据库恢复,发现报如下错误: ORA-39001: invalid argument value ORA-39000: bad dump file specification ORA-31619: i 阅读全文
posted @ 2020-08-05 11:44 monkey6 阅读(1035) 评论(0) 推荐(0) 编辑
摘要: 今天测试oracle数据库的时候,把表空间连带内容和数据文件一并删除了,但是删除之后,查看数据文件不存在了,但是目录的带下没有释放 SQL> drop tablespace users including contents and datafiles; 查看目录大小 $ df -h /dev/map 阅读全文
posted @ 2020-07-30 09:51 monkey6 阅读(647) 评论(0) 推荐(0) 编辑
摘要: 使用RMAN在恢复表空间的时候,表空间数据文件DBID和恢复数据库的数据文件DBID必须相同 可传输表空间不需要这样,也就是可以快速的把这个表空间插入另一个数据库使用 可传输表空间内的对象必须不依赖与其他表空间中的对象,且最好其他表空间内的对象也不依赖可传输表空间的对象 测试步骤: 整个测试时将22 阅读全文
posted @ 2020-07-30 09:24 monkey6 阅读(196) 评论(0) 推荐(0) 编辑
摘要: 1.在要作为恢复编录的数据库创建用户 create user rman identified by oracle default tablespace system temporary TABLESPACE temp quota unlimited on system; user名字密码表空间可以自 阅读全文
posted @ 2020-07-28 15:54 monkey6 阅读(254) 评论(0) 推荐(0) 编辑
摘要: 1.新增加一个磁盘并初始化 # vxdisk list # vxdisksetup -i 3pardata0_22 2.将新增加的磁盘合并到磁盘组中 # vxdg -g testdg01 adddisk test_data02=3pardata0_22 3.查看当前组里新增卷或者原有卷可以扩充的最大 阅读全文
posted @ 2020-07-26 15:57 monkey6 阅读(1010) 评论(0) 推荐(0) 编辑
摘要: 按照项目名/仓库名搜索(大小写不敏感)in:name xxx按照README搜索(大小写不敏感)in:readme xxx按照description搜索(大小写不敏感)in:description xxxstars数大于xxxstars:>xxxforks数大于xxxforks:>xxx编程语言为x 阅读全文
posted @ 2020-07-26 10:37 monkey6 阅读(210) 评论(0) 推荐(0) 编辑
摘要: 数据库在晚上九点多挂掉了,查看报错日志,如下 Tue Jul 14 21:57:28 2020 Exception [type: SIGSEGV, Address not mapped to object] [ADDR:0x1F72E] [PC:0x184FE23, opiaba()+583] [f 阅读全文
posted @ 2020-07-15 14:52 monkey6 阅读(10) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 20 下一页