SQLSERVER DBA容易犯的十个错误翻译自:http://sqlsentry.tv/top-10-administrative-mistakes-on-sql-server/除了排名前十的错误之外,其他排名靠前的错误抛开SQL Server方面的错误,这些错误主要体现在开发或者是设计的时候:1...
分类:
数据库 时间:
2014-06-14 23:58:44
阅读次数:
386
Decription:Given a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent numbers on the row below.For example, gi...
分类:
其他好文 时间:
2014-06-14 19:46:12
阅读次数:
251
sed命令 sed --helpsed是非交互式的编辑器,它不会修改文件,默认把结果都打印到屏幕上。sed的用法有很多,这里只介绍一下常用的1、删除一个文件的某些行,或取出文件中得某些行删除c中得第2~4行:取出第1~3行:删除包含'1'的行到包含'9'的行:sed不像grep,不管是否找到指定的模...
分类:
其他好文 时间:
2014-06-14 19:40:08
阅读次数:
280
1、position:static 所有的元素的默认定位都是position:static,这意味着元素没有被定位,而且在文档中出现在它应该在的位置。2、position:relative 如果设定position:relative,就可以使用top,bottom,left和right来相对于元素....
分类:
Web程序 时间:
2014-06-14 19:38:05
阅读次数:
223
css position的使用css 的 position 属性是用来设置元素的位置的,它还能设置一个元素出现在另一个元素的下层元素能用 top,bottom,left 和 right 属性设置位置, 但是在默认情况下是不管用的,除非先设置了position属性,HTML 元素的位置默认是设置为静态...
分类:
Web程序 时间:
2014-06-14 18:12:54
阅读次数:
294
BlueJ code pad shell/REPL...
分类:
其他好文 时间:
2014-06-14 17:34:53
阅读次数:
231
刚刚移植了一下uip的telnetd,还是比较简单方便的.
首先添加文件,注意usershell是自己写的.
在tcp.c中添加tcp端口监听程序
添加#include "telnetd.h"
void tcp_demo_appcall(void)
{
if(uip_conn->lport == HTONS(TCP_ClinetPort))
{
tcp_c...
分类:
Web程序 时间:
2014-06-14 13:13:03
阅读次数:
281
linux下通过top或vmstat查看系统CPU占用率,在大多数情况下测得的CPU占用率是准确的,但在时间精度较高的实时linux系统中,top测量的CPU占用率可能会不准确,下面结合top原理和实时linux实例分析在实时系统中top的使用情况。
统计CPU占用率的时候,大致统计以下几个时间:
用户时间
(User time)
用户时间
(User time)
用户时间...
分类:
编程语言 时间:
2014-06-14 10:24:55
阅读次数:
208
SHELL学习笔记----IF条件判断,判断条件前言: 无论什么编程语言都离不开条件判断。SHELL也不例外。if list then do something here elif list then do another thing here else do something else here...
分类:
其他好文 时间:
2014-06-14 09:40:46
阅读次数:
204
Centos 6.4上面用Shell脚本一键安装mysql 5.6.15#!/bin/bashif [ `uname -m` == "x86_64" ];thenmachine=x86_64elsemachine=i686fimysqlBasedir=/storage/server/mysqlmys...
分类:
数据库 时间:
2014-06-14 08:36:02
阅读次数:
301