- 博客(62)
- 收藏
- 关注
转载 几个有趣的在线python 代码学习网站
https://c.runoob.com/compile/6 python 在线编辑器http://www.pythontip.com/coding/run python ...
2018-10-08 17:57:15
1505
转载 mongodb 容灾演练操作步步骤【适用于计划内演练】
将计划做为容灾演练的mongo member 从复制集中remove rs.remove("hostname:port")连接到mongod容灾节点,将其由other状态变成primary...
2018-08-31 11:25:23
419
转载 Oracle DB 相关常用sql汇总6[知乎系列续]
####oracle AWR几个重要的指标####DB timeDB CPU(s)Redo size (bytes)和B...
2018-08-30 16:49:38
308
转载 oracle ebs 根据请求id找到对应trace 文件
SELECT 'Request id: '||request_id ,'Trace id: '||oracle_Process_id,'Trace Flag: '||req.enable_trace,...
2018-08-30 15:46:49
657
转载 SRE 18、19章学习笔记
18章 SRE 部门中的软件工程实践为什么软件工程项目队SRE很重要?SRE软件工程非常合适的有效原因有:1、sre 工程师对企业内部生产环境在深度和广...
2018-08-30 14:30:53
343
转载 mongo 创建用户 建hash 分区 建索引
1. 设置Databasesh.enableSharding("database_name");2. 创建Collectionuse database_namedb.cre...
2018-08-30 14:27:50
513
转载 mongodb profiling慢请求监控日志
0:关闭,不收集任何数据。1:收集慢查询数据,默认是100毫秒。2:收集所有数据查看Profiling和设置db.getProfilingStatus()设置日...
2018-08-30 14:22:13
387
转载 mongodb常用命令
一、数据库常用命令1、Help查看命令提示复制代码代码如下:helpdb.help();db.yourColl.help();db.youColl.fi...
2018-08-30 14:14:53
182
转载 mongodb 概述
############对mongo db中某个集合做分片################# 本例中test1为数据库,test1也为集合名===1、先enable sharding,开启数据库的分片功能...
2018-08-30 14:07:43
116
转载 mongodb基础运维能力定义
MongoDB基础运维能力编号基础运维能力详细描述理解MongoDB的基础组件架构(1)理解MongoDB的三个基础组件:mongod、con...
2018-08-30 11:57:41
143
转载 mongodb 备份恢复常用命令
备份:mongodump -uroot -ppassword --port=27017 --authenticationDatabase=admin -h hostname -d databasename ...
2018-08-30 11:56:04
250
转载 mongodb 分片集群设置
########对某个集合数据做分片#############1、先enable sharding,开启数据库的分片功能mongos> use adminmongos> db....
2018-08-30 11:47:39
263
转载 mongodb慢查询分析
1.用慢查询日志(system.profile)找到超过500ms的语句mongos>db.setProfilingLevel(1,500)2.然后再通过.explain()解析影响行数,分析...
2018-08-30 11:13:57
271
转载 mongo 监控备份业务账号创建
监控账号:mongos 连进去, mongos 和shard要有创建db.createUser({user:"user_monitor ",pwd:"password",rol...
2018-08-30 11:07:36
185
转载 mongodb执行计划解释
====Mongodb 并发批量kill session =============并发、批量kill session1、将查询时间超过1000s的所有session kill掉...
2018-08-30 10:54:36
323
转载 mongodb 常见运维监控和执行计划
查询超过3s的慢请求, test库需要替换为具体的db名db.currentOp( {"active" : true,"secs_running" : { "$gt" : ...
2018-08-30 10:42:23
237
转载 glibc libc.so.6: version GLIBC_2.14 not found
3、# make install4、再次查看glibc支持的版本可以看到glibc支持的版本已经到2.14,再次执行程序就不会报错了5、ldconfig 在删除glibc库后的紧急恢复 ...
2018-05-11 15:05:25
145
转载 glibc解决“libc.so.6: version GLIBC_2.14 not found”报错问题
1 、 strings /lib64/libc.so.6 |grep GLIBC_2、下载软件并升级 # wget http://ftp.gnu.org/gnu/glibc/glibc-2.14.tar.gz...
2018-05-11 15:03:44
1412
转载 常用Python学习网站
Python 在线编辑器http://www.pythontip.com/coding/runhttps://c.runoob.com/compile/6Python 2.7 在线学习文档https://www...
2018-03-22 14:54:02
107
转载 掌握SQL Monitor这些特性,SQL优化将如有神助!
掌握SQL Monitor这些特性,SQL优化将如有神助! http://dbaplus.cn/news-10-705-1.html ...
2018-02-03 15:41:36
124
转载 Best Practices and Recommendations for RAC databases with SGA size over 100GB
Best Practices and Recommendations for RAC databases with SGA size over 100GB(文档 ID 1619155.1)a.Set _lm_...
2017-08-02 15:27:36
160
转载 Parse CPU to Parse Elapsd %: 指标太低
Parse CPU to Parse Elapsd:解析实际运行时间/(解析实际运行时间+解析中等待资源时间),越高越好。计算公式为:Parse CPU to Parse Elapsd %= 100*(parse time cp...
2017-07-25 09:37:51
3649
转载 MySQL 5.7.17 组复制(group replication)的要求和限制
限制和要求:1. 所有涉及的数据都必须发生在InnoDB存储引擎的表内。2. 所有的表必须有明确的主键定义。3. 网络地址只支持IPv4。4. 需要低延迟,高带宽的网络。5. 目前集群限制最多允许9个节点。...
2017-07-20 11:29:01
225
转载 Oracle Library cache mutex x tips
Library cache mutex x tips http://www.dba-oracle.com/t_library_cache_mutex_x.htm ...
2017-07-05 18:09:25
114
转载 Understanding SaltStack --Guided Book 官方文档
https://docs.saltstack.com/en/getstarted/system/plugins.html ...
2017-07-03 16:52:01
78
转载 Oracle中如何停用JOB及如何使用JOB
Oracle中如何停用JOB及如何使用JOBhttp://blog.chinaunix.net/uid-25785357-id-3435434.html ...
2017-04-20 20:22:34
289
转载 OCA 042 286题库
http://bbs.51cto.com/thread-1064438-1.htmlhttp://www.kaotii.com/10gDBA.html 考题网http://blog.youkuaiyun.com/dwj1...
2017-04-13 11:53:16
160
转载 How to change Public VIP Address in 11gR2 RAC
Public VIP Address: An interface that can be used for communication with components external to Oracle RAC inst...
2017-03-15 22:16:04
141
转载 介绍Oracle ebs R12中的$APPLCSF和$APPLLOG目录作用
I would like to share some important things here. You all might know these, but Oracle Apps newbie will get ben...
2017-03-10 22:45:12
352
转载 Oracle ebs What are Workflow Listeners 介绍
Listeners are the Service Components with in Oracle Workflow. Following are the types: Workflow...
2017-03-10 22:38:10
188
转载 Oracle11.2.0.3 RAC打PSU补丁
导读:oracle 11.2.0.3.0集群打补丁一、概要本篇主要介绍一下如何在11.2.0.3.0集群环境下使用OPatch进行打补丁。二、准备工作1. 检查系统环境根据cpu型号和oracle版本号选取相应的补丁包(注意是3...
2017-03-05 22:42:26
494
转载 Oracle EBS R12 常用命令
Oracle E-Business Suite uses three OC4J (oacore, oafm & forms) for Java Applications including Forms and HT...
2017-03-03 08:54:10
207
转载 将Oracle standby 数据库convert 为snapshort 状态
--在其中的一个节点上执行,--在mount状态下,在rac其中的一个节点执行alter database recover managed standby database cancel;select...
2017-02-10 16:46:36
146
转载 Oracle的锁表与解锁
http://www.cnblogs.com/swcjd/articles/1150893.htmlhttp://database.51cto.com/art/201108/284848.htm Ora...
2017-01-24 19:11:13
135
转载 Oracle 11g RAC自动打GI PSU补丁(11.2.0.4.8)
http://www.mamicode.com/info-detail-1161159.html ...
2017-01-20 15:00:00
120
转载 【Oracle】RAC11gR2Grid启动顺序及启动故障诊断思路
【Oracle】RAC11gR2Grid启动顺序及启http://www.2cto.com/database/201605/507269.html动故障诊断思路 ...
2017-01-04 14:42:06
187
转载 Oracle Undo使用情况监控
Oracle 10g及后续版本较以前版本有一新特性即自动调整undo retention时间,大大简便了管理,对于自动扩展(autoextend on)的undo表空间,参数undo_retention设置成为Oracle自动调...
2016-12-25 22:25:52
922
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人