LinuxInstallation-Munin-TracInstallationofMuninnode/master¶TableofContentsInstallationonDebian/UbuntuMuninnodeMuninmasterInstallationonRedHatEnterprise3(RHEL3)MuninnodeMuninmasterInstallationonRedHatEnterprise4(RHEL4)MuninnodeMuni
系统 2019-08-12 01:31:41 3827
1.统计所有节点表空间使用率selectsubstr(TABLESPACE_NAME,1,20)asTBSPC_NAME,bigint(TOTAL_PAGES*PAGE_SIZE)/1024/1024as"TOTAL(MB)",used_pages*PAGE_SIZE/1024/1024as"USED(MB)",free_pages*PAGE_SIZE/1024/1024as"FREE(MB)"fromtable(snapshot_tbs_cfg('DB_
系统 2019-08-12 01:54:06 3814
刚刚了解了linux下select系统调用,函数原型是1#include2#include3int4select(intmaxfdpl,fd_set*readset,fd_set*writeset,fd_set*exceptset,conststructtimeval*timeout);如何给readset,writeset,exceptset这3个参数中的每一个参数指定一个或多个描述符是一个设计上的问题
系统 2019-08-12 01:32:49 3812
1.将android-sdk中的tools目录添加在系统目录中(即环境变量中的path中)¥androidlisttargetsAvailableAndroidtargets:id:1or"android-3"Name:Android1.5Type:PlatformAPIlevel:3Revision:4Skins:HVGA(default),HVGA-L,HVGA-P,QVGA-L,QVGA-Pid:2or"GoogleInc.:GoogleAPIs:3
系统 2019-08-29 23:47:54 3802
从这些CSSGallery网站中精选了20个比较漂亮的XHTML+CSS布局网站,推荐给喜欢网页设计的人,无论是做博客模板还是做网站设计,在设计理念、色调、导航条、按钮、排版布局方面,都有一些值得借鉴的地方。1、competitious.com2、carawilliams.com.au3、qodo.co.uk4、tulumarka.com5、egolounge.de6、luisalarcon.com7、simplebits.com8、456bereastr
系统 2019-08-29 22:52:25 3796
一直对varchar2、nvarchar2字段类型存储字符数不清楚,现测试如下:创建TT测试表测试脚本如下:insertintottvalues('1111','1111');-----okinsertintottvalues('wwww','wwww')-----okinsertintottvalues('应用范围','应用范围');-----失败提示如下:insertintottvalues('应用范围','应用');-----失败提示如下:inser
系统 2019-08-12 01:55:06 3792
C++中Union的介绍Union是很有意思的类,里面的全部数据共用一段内存,Union的大小就是最大的数据成员的大小。默认访问权限是公有的。#include#includeusingnamespacestd;union{unsignedinta;charb[5];}c,d;voidmain(void){inti=0;c.a=0x31313131;char*e=&c.b[2];for(i=0;i<=4;i++){pri
系统 2019-08-12 01:33:07 3792
python输出带颜色字体详解在python开发的过程中,经常会遇到需要打印各种信息。海量的信息堆砌在控制台中,就会导致信息都混在一起,降低了重要信息的可读性。这时候,如果能给重要的信息加上字体颜色,那么就会更加方便用户阅读了。当然了,控制台的展示效果有限,并不能像前段一样炫酷,只能做一些简单的设置。不过站在可读性的角度来看,已经好很多了。书写格式:开头部分:\033[显示方式;前景色;背景色m+结尾部分:\033[0m注意:开头部分的三个参数:显示方式,
系统 2019-09-27 17:54:34 3791
利用turtle库绘制效果图代码:fromturtleimport*defgo(x,y):penup()goto(x,y)pendown()defdraw_firstname():seth(-90)fd(150)#seth()circle(-700,23)penup()goto(-500,100)pendown()seth(0)fd(300)seth(-90)fd(430)seth(140)fd(80)penup()goto(-400,15)pendown
系统 2019-09-27 17:48:34 3791
为了避免全表扫描,应该这样写:Sql代码selectspu_idfromtbcat2.spuwherecategory_id=#value#and(status=0orstatusisnull)andrownum<2selectspu_idfromtbcat2.spuwherecategory_id=#value#and(status=0orstatusisnull)andrownum<2而不是实用count(*)函数,对于海量数据全表扫描性能是极差的or
系统 2019-08-12 01:52:13 3791