码迷,mamicode.com
首页 >  
搜索关键字:zigzag level order t    ( 24142个结果
orcale设置自增列
create sequence SEQ_ERRORID minvalue 1 maxvalue 99999999 start with 1000 increment by 1 nocache order; create or replace trigger tri_ERRORINFO_...
分类:其他好文   时间:2014-05-01 13:32:20    阅读次数:335
Unity3D 中脚本执行的先后顺序
Unity3D本身自带有控制脚本执行先后顺序的方法:Edit---> Project Settings---> Script Execution Order --->值越小脚本会越先被执行
分类:其他好文   时间:2014-05-01 13:31:42    阅读次数:404
提高SQL语句查询效率
1.对查询进行优化,应尽量避免全表扫描,首先应考虑在 where 及 order by 涉及的列上建立索引。2.应尽量避免在 where 子句中对字段进行 null 值判断,否则将导致引擎放弃使用索引而进行全表扫描,如:select id from t where num is null可以在num...
分类:数据库   时间:2014-05-01 13:23:55    阅读次数:443
UDT: Breaking the Data Transfer Bottleneck
http://udt.sourceforge.net/DT is a reliable UDP based application level data transport protocol for distributed data intensive applications over wide ...
分类:其他好文   时间:2014-05-01 13:21:54    阅读次数:488
innodb next-key lock引发的死锁
innodb的事务隔离级别是可重复读级别且innodb_locks_unsafe_for_binlog禁用,也就是说允许next-key lockCREATETABLE`LockTest`(`order_id`varchar(20)NOTNULL,`id`bigint(20)NOTNULLAUTO_...
分类:数据库   时间:2014-05-01 12:39:14    阅读次数:645
Pat(Advanced Level)Practice--1063(Set Similarity)
Pat1063代码 题目描述: Given two sets of integers, the similarity of the sets is defined to be Nc/Nt*100%, where Nc is the number of distinct common numbers shared by the two sets, and Nt is the to...
分类:其他好文   时间:2014-04-29 13:44:20    阅读次数:325
leetCode解题报告5道题(六)
5道题目分别是:【Longest Substring Without Repeating Characters】、【Rotate Image】、【Restore IP Addresses】、【ZigZag Conversion】、【Set Matrix Zeroes】,由于有一些题目不需要发一整篇博文来记录,所以就将这些题目以一篇博文5道来记录...
分类:其他好文   时间:2014-04-29 13:43:23    阅读次数:348
Jtable简单的封装使用
package project02_Order_management.util; import java.sql.ResultSet; import java.sql.SQLException; import javax.swing.JTable; import javax.swing.table.DefaultTableModel; /** * 一个JTable工具类 * 进行初始化...
分类:其他好文   时间:2014-04-29 13:38:20    阅读次数:393
apache禁止访问某些文件或目录的方法
【apache配置禁止访问】 1. 禁止访问某些文件/目录 增加Files选项来控制,比如要不允许访问 .inc 扩展名的文件,保护php类库:    Order allow,deny    Deny from all 禁止访问某些指定的目录:(可以用    来进行正则匹配)    Order allow,deny    Deny from all 通...
分类:其他好文   时间:2014-04-29 13:16:22    阅读次数:289
复合索引的列顺序判断
复合索引最令人困惑的当属索引列的顺序,不仅依赖于使用该索引的查询,更需考虑排序和分组。前段时候我发了个帖子:where条件顺序和复合索引字段顺序。感兴趣的朋友不妨参与讨论。今天我提个自己的观点。在应用开发阶段,【选择性】是我们首要考虑因素,请看简图:当出现sql性能问题时,你可能需要注意以下几个:1. 随机IO2. 排序(order by)3. 分组(group by or distinct)这时...
分类:其他好文   时间:2014-04-27 21:24:06    阅读次数:353
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!