在PHP的学习过程中,MySQL估计是必然会接触的。
MySQL的管理相信大家也会使用phpmyadmin:
好吧,phpmyadmin的确是MySQL管理的神器,你想要的,他好多都有,在开发的过程中,对于后台数据库的设计架构帮助真的很大。
但是,在这篇文章的主角确不是它。
MySQL客户端
MySQL安装包里面,在一个名为bin的文件夹,放置...
分类:
数据库 时间:
2014-06-18 12:43:24
阅读次数:
345
linux下安装最新版subversion,代码:
[root@localhost subversion-1.8.9]#
./configure --prefix=/usr/local/subversion --with-apxs=/usr/local/apache2/bin/apxs --with-apr=/usr/local/apr --with-apr-util=/us...
分类:
系统相关 时间:
2014-06-18 12:19:21
阅读次数:
275
最小编辑距离是计算欧式距离的一种方法,可以被用于计算文本的相似性以及用于文本纠错,因为这个概念是俄罗斯科学家 Vladimir Levenshtein 在1965年提出来的,所以编辑距离又称为Levenshtein距离。...
分类:
其他好文 时间:
2014-06-17 22:39:05
阅读次数:
337
Given two words word1 and word2, find the minimum number of steps required to convert
word1 to word2. (each operation is counted as 1 step.)
You have the following 3 operations permitted...
分类:
其他好文 时间:
2014-06-17 21:43:38
阅读次数:
219
rman备份脚本
#! /bin/bash
su - oracle
rman target /
backup AS COMPRESSED BACKUPSET
database
include current controlfile format'/orabak/db_%d_%T_%s'
plus archivelog format'/orabak/a...
分类:
系统相关 时间:
2014-06-17 19:33:13
阅读次数:
348
Bash
开头#!/bin/bash。echo
语句屏蔽
“
”
若使用则 \” \”
。
即使文件没有执行权限,仍然可以通过bashhello.sh
或者 sh hello.sh来执行文件。
标准输出写入>>文件中,标准错误输出默认为屏幕。标准错误输出为2>>。错误和输出都写入文件:1>>log
2>>err。两者都写入同一个文件:>&all_result,>
...
分类:
系统相关 时间:
2014-06-17 16:29:35
阅读次数:
359
概况Hadoop Streaming 是一个工具, 代替编写Java的实现类,而利用可执行程序来完成map-reduce过程。一个最简单的程序$HADOOP_HOME/bin/hadoop jar $HADOOP_HOME/hadoop-streaming.jar-input myInputDirs...
分类:
其他好文 时间:
2014-06-17 15:33:54
阅读次数:
330
#!/usr/bin/pythonimport tracebacktry: 1/0#except Exception,e:# print traceback.format_exc() except Exception as e: print e#!/usr/bin/pythonimport tra....
分类:
编程语言 时间:
2014-06-17 15:07:08
阅读次数:
329
七. grep家族: 1. grep退出状态: 0: 表示成功; 1: 表示在所提供的文件无法找到匹配的pattern; 2: 表示参数中提供的文件不存在。 见如下示例: /> grep 'root' /etc/passwd root:x:0:0:root:/root:/bin/bash opera...
分类:
系统相关 时间:
2014-06-17 14:47:16
阅读次数:
312
一、常用属性名称说明Depth获取一个值,用于指示当前行的嵌套深度。FieldCount获取当前行中的列数。HasRows获取一个值,该值指示SqlDataReader是否有行。IsClosed指定的SqlDataReader实例是否已关闭。Item[Int32]获取指定列(数字索引),通常在Whi...
分类:
数据库 时间:
2014-06-17 14:41:27
阅读次数:
308