02 2016 档案

摘要:1、oracel 查看表空间使用情况。 SELECT SUM(bytes) / (1024 * 1024) AS free_space, tablespace_name FROM dba_free_space GROUP BY tablespace_name; SELECT a.tablespace_name, a.bytes total, b.bytes used, c.bytes free, ... 阅读全文
posted @ 2016-02-18 14:56 L.L.K 阅读(413) 评论(0) 推荐(0)
摘要:本机环境为win7 64位旗舰版,gvim安装的是GVim7.4。解决办法如下: 在安装目录下有个“_vimrc”文件。修改19行。将 if &sh =~ ‘\<cmd’单引号改为双引号即可。 阅读全文
posted @ 2016-02-15 17:45 L.L.K 阅读(415) 评论(0) 推荐(0)