Linux命令——cut命令学习一、定义 正如其名,cut的工作就是“剪”,具体的说就是在文件中负责剪切数据用的。cut是以每一行为一个处理对象的,这种机制和sed是一样的。2、剪切依据cut命令主要是接受三个定位方法:第一,字节(bytes),用选项-b第二,字符(characters),用选项-...
分类:
系统相关 时间:
2015-01-31 11:56:13
阅读次数:
230
----查询表空间使用情况---使用DBA权限登陆SELECT UPPER(F.TABLESPACE_NAME) "表空间名",D.TOT_GROOTTE_MB "表空间大小(M)",D.TOT_GROOTTE_MB - F.TOTAL_BYTES "已使用空间(M)",TO_CHAR(ROUND(...
分类:
其他好文 时间:
2015-01-30 15:26:57
阅读次数:
146
IT 行业 可以提问题,有人帮忙回答 http://bytes.com/browse/ 个人博客 http://guoyanxi.iteye.com/
分类:
其他好文 时间:
2015-01-29 17:25:39
阅读次数:
116
VS2005自带内存泄漏检测
若程序退出后出现内存泄漏:
Detected memory leaks!
Dumping objects ->
{98500} normal block at 0x05785AD0, 152 bytes long.
Data: 3C AC 4E 10 00 00 00 00 BC A4 4E 10 78 B6 37 00
Object dump...
分类:
其他好文 时间:
2015-01-29 14:44:24
阅读次数:
163
一. 二进制转换成图片MemoryStream ms = new MemoryStream(bytes);ms.Position = 0;Image img = Image.FromStream(ms);ms.Close();this.pictureBox1.Image二. C#中byte[]与st...
更新于:2015年1月28日 17:08:131 ----- 查看系统用户表空间2 select username,default_tablespace from user_users;3 -----查看表空间的使用率4 select tablespace_name,sum(bytes)/1024/...
分类:
数据库 时间:
2015-01-28 17:33:21
阅读次数:
168
有时用valgrind定位内存泄露问题时当内存泄露的位置在动态库(so)中时, 输出的调用栈为问号"???"并且没有指明源码的行号.即使尝试了加 -g 的编译参数并且程序退出前不执行dlclose,也无济于事.
==29941== 17 bytes in 1 blocks are definitely lost in loss record 29 of 197
==29941== at...
分类:
其他好文 时间:
2015-01-28 14:43:58
阅读次数:
242
For ordering the bytes representing an object, there are two common conventions. Consider a w-bit integer having a bit representation [xw-1, xw-2, ... , x1, x0 ], where xw-1 is the most significant...
分类:
其他好文 时间:
2015-01-28 13:09:28
阅读次数:
169
大家在使用PhpExcel类时,当打开一个比较大的excel数据文档,会出现Fatalerror: Allowed memorysize of 67108864 bytes exhausted (tried to allocate 27 bytes) in example/admin/add_mysql.php on line 50这样的错误,即页面内存已经耗尽。现在我来说一下解决办法:
...
分类:
Web程序 时间:
2015-01-27 20:27:06
阅读次数:
133
1、查看表空间的名称及大小select t.tablespace_name, round(sum(bytes/(1024*1024)),0) ts_sizefrom dba_tablespaces t, dba_data_files dwhere t.tablespace_name = d.tabl...
分类:
数据库 时间:
2015-01-27 17:37:40
阅读次数:
256