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

mysql与Oracle update的区别

update :单表的更新不用说了,两者一样,主要说说多表的更新
   
       Oracle> Oracle的多表更新要求比较严格,所以有的时候不是很好写,我们可以试试Oracle的游标
                    (游标参考:http://blog.csdn.net/lovelyhermione/archive/2009/08/18/4457500.aspx)
          update (
                   select t.charger_id_ new_charger_id_
                   from t_cus_year_status t
                   left join t_customer_infos cus on cus.id_ = t.cus_id_
                   where....
        ) n  set  n.new_charger_id_ =6;
   
     mysql>
                   update t_cus_year_status t
                     left join t_customer_infos cus on cus.id_ = t.cus_id_
                   set t.charger_id_  =6
                   where......;


相关文档:

mysql load data infile

如何提高mysql load
data
infile
的速度
测试数据2.5G,共有数据9427567条。用的mysql的large服务器的配置。
load
一次需要大概10分钟左右。
建的表用的是MYISAM,调整了几个session的参数值
SET SESSION BULK_INSERT_BUFFER_SIZE=256217728;
SET SESSION MYISAM_SORT_BUFFER_SIZE=256217728;
运行结果如下
Qu ......

mysql alter 语句用法,添加、修改、删除字段等

mysql alter 语句用法,添加、修改、删除字段等
//主键549830479
alter table tabelname add new_field_id int(5) unsigned default 0 not null auto_increment ,add primary key (new_field_id);
//增加一个新列549830479
alter table t2 add d timestamp;
alter table infos add ex tinyint not null default ......

Mysql Innodb 引擎优化(


参数篇
作/译者:吴炳锡,来源:http://imysql.cn & http://imysql.cn/blog/3208 转载请注明作/译者和出处,并且不能用于商业用途,违者必究。
 
介绍:
  InnoDB给MySQL提供了具有提交,回滚和崩溃恢复能力的事务安全(ACID兼容)存储引擎。InnoDB锁定在行级并且也在SELECT语句提供一个Oracle风格一致 ......
© 2009 ej38.com All Rights Reserved. 关于E健网联系我们 | 站点地图 | 赣ICP备09004571号