码迷,mamicode.com
首页 >  
搜索关键字:hard disk    ( 4451个结果
ORA-15032、ORA-15071错误处理
遇到一下错误 ERROR at line 1: ORA-15032: not all alterations performed ORA-15071: ASM disk "NOCR_0002" is already being dropped 背景描述 因为之前做了alter diskgroup N...
分类:其他好文   时间:2014-12-24 11:20:00    阅读次数:238
Git 技巧小结
Git回退 Git必须知道当前版本是哪个版本,在Git中,使用HEAD表示当前版本,上一个版本为HEAD^,上上一个版本为HEAD^^。 举例:我们要把当前版本回退到上一个版本中去,可以使用git reset 命令 git reset –hard HEAD^ 这个回退,会使得git log中,最新版...
分类:其他好文   时间:2014-12-24 08:41:43    阅读次数:128
局部性原理的点滴应用场景 use of localityprinciple
use of localityprinciple;Cache;FFS;Disk read
分类:其他好文   时间:2014-12-23 19:08:56    阅读次数:255
【leetcode】 Interleaving String (hard)
Givens1,s2,s3, find whethers3is formed by the interleaving ofs1ands2.For example,Given:s1="aabcc",s2="dbbca",Whens3="aadbbcbcac", return true.Whens3="...
分类:其他好文   时间:2014-12-23 17:03:49    阅读次数:107
【leetcode】Edit Distance (hard)
Given two wordsword1andword2, find the minimum number of steps required to convertword1toword2. (each operation is counted as 1 step.)You have the fol...
分类:其他好文   时间:2014-12-23 17:02:59    阅读次数:142
git 版本回退
由于操作失误,需要将代码进行版本回退,首先在本地仓库执行了“git reset --hard HEAD^”命令,这样只会回退本地仓库的代码,但是我的代码之前已经push到了远程库中,查看远程仓库,发现并没有回退,怎么办呢,经过实际操作,通过以下方法可以达到效果: 1:首先在本地分支执行“git...
分类:其他好文   时间:2014-12-23 15:28:02    阅读次数:170
sql2008“备份集中的数据库备份与现有的xx数据库不同”解决方法
因为是在另一台电脑对同名数据库做的备份,用常规方法还原,提示不是相同数据库,不让还原,在网上找到下面的方法解决了:一、右击系统数据库master,新建查询执行以下SQL代码:RESTORE DATABASE xxxFROM DISK = 'E:\DB\xxx.bak' --bak文件路径with.....
分类:数据库   时间:2014-12-23 12:14:52    阅读次数:184
【leetcode】Regular Expression Matching (hard) ★
Implement regular expression matching with support for'.'and'*'.'.' Matches any single character.'*' Matches zero or more of the preceding element.The...
分类:其他好文   时间:2014-12-21 23:32:16    阅读次数:335
【oracle】oracledba12 When a new log group is added, it would have one member in each disk group.
You are using an Automatic Storage Management (ASM) instance to m anage the files of your production database. You have two disk groups , DG1and DG2 with one device each. In the parameter file of th...
分类:数据库   时间:2014-12-21 19:31:13    阅读次数:266
dstat工具
yuminstall-ydstat#dstat安装完成后,执行dstat命令,默认情况它会收集-cpu-,-disk-,-net-,-paging-,-system-的数据,一秒钟收集一次.默认输入dstat等于输入了dstat-cdngy1或dstat-a1.推荐使用date&&dstat-tclmdny60一分钟监视一次(注意调节显示的宽度,或去掉-t选项)-c,-..
分类:其他好文   时间:2014-12-20 02:11:10    阅读次数:224
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!