易截截图软件、单文件、免安装、纯绿色、仅160KB

【转】常用mysql操作命令

   
Administration 管理
Kill a Thread  结束一个线程
mysql > KILL 999;
 
Optimize Table 优化表
mysql > OPTIMEZE TABLE foo;
 
Reload Users Permissions 刷新MySQL系统权限相关表  
mysql > FLUSH PRIVILEGES;
 
Repair Table 修复表
mysql > REPAIR TABLE foo;
 
Reset the Query Cache 清除查询缓存区中的所有的内容
mysql > RESET QUERY CACHE;
 
See Which Threads are Running 显示哪些线程正在运行
mysql > SHOW FULL PROCESSLIST;
 
 
Backup & Restore
Backup Database to a SQL File 备份数据库
#mysqldump --user admin -- password=password mydatabase > database.sql
 
Restore Database from SQL File 还原数据库
#mysql < database.sql
 
Data Definition 数据库描述
Add a Column to a Table
mysql > ALTER TABLE table1 ADD COLUMN newcol TEXT;
 
Browse Database
mysql > USE dbname;
mysql > SHOW TABLES;
 
Create Database
mysql > CREATE DATABASE dbname;
 
Create Table
mysql > CREATE TABLE table (field1 type1, field2 type2, ...)
 
Drop Database
mysql > DROP DATABASE dbanme;
 
Remove a Column from a table
mysql > ALTER TABLE table1 DROP COLUMN oldcol;
 
Rename a Table
mysql > ALTER TABLE table1 RENAME TO newtable2;
 
Data Manipulation 数据操作
Delete Row from Table
mysql > DELETE from table1 WHERE id = 100;
 
Insert Row to Table
mysql > INSERT INTO table1(field1, field2, ...) VALUES(value1,value2,...);
 
Update Row in Table
mysql > UPDATE table1 SET field1 = new_value1 WHERE id = 100;
 
Emergency Maintenance 常规操作
Find the error log
#tail -f /var/lib/mysqlserver.domain.co.il.err
 
Recover root Password
Stop MySQL service
#/etc/init.d/mysql stop
 
Start to MySQL server w/o password
#mysqld_safe --skip-grant-tables &
 
Connect to mysql
#mysql -u root
 
Setup new MySQL root user password
mysql > use mysql;
mysql > upda


相关文档:

MySQL Cluster Overview


MySQL Cluster
is a technology that enables
clustering of in-memory databases in a shared-nothing system. The
shared-nothing architecture allows the system to work with very
inexpensive hardware, and with a minimum of specific requirements
for hardware or software.

......

Ubuntu下配置网络,安装mysql,jdk

sudo apt-get install mysql-server mysql-client
sudo apt-get install sun-java6-jdk(安装出意外,sudo dpkg -P sun-java6-bin,然后重新安装)
sudo vi /etc/network/interfaces 配置网络
auto eth0
iface eth0 inet dhcp(static)
address 192.168.8.108
netmask 255.255.255.0
gateway 192.168.8.1
:x保存
sud ......

mysql 阿拉伯数字转换中文函数

CREATE DEFINER=`root`@`%` FUNCTION `sp_cn`(n_LowerMoney  decimal(15,2)) RETURNS varchar(200) CHARSET utf8
begin
Declare v_LowerStr  VARCHAR(200) ;
Declare v_UpperPart VARCHAR(200) ;
Declare v_UpperStr VARCHAR(200) ;
Declare i_I int ;
set v_LowerStr = LTRIM(RTRIM(ROUND(n_LowerMoney,2 ......

MYSQL引擎简单对比

服务器业务类型对比 性能瓶颈
DB                   I/O磁盘
转发服务器         网卡PPS
动态WEB前台         CPU
静态WEB前台   ......

excel数据批量导入到Mysql数据库

aspx页面
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="customin.aspx.cs" Inherits="kf_customin" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" ......
© 2009 ej38.com All Rights Reserved. 关于E健网联系我们 | 站点地图 | 赣ICP备09004571号