码迷,mamicode.com
首页 >  
搜索关键字:timestamp union autocommit    ( 5584个结果
Linux 内存池设计构想
一、基本数据结构 1 union m_block 2 { 3 union m_block* next; 4 unsigned int size; 5 }; 6 7 struct m_list 8 { 9 union m_block* free;...
分类:系统相关   时间:2014-06-19 07:59:56    阅读次数:309
sql: Compare Tables
---使用 UNION、INTERSECT 或 EXCEPT 运算符合并的所有查询必须在其目标列表中有相同数目的表达式select * from BookInfoList--存在不同的select BookInfoID,BookInfoBarCode from BookInfoList where ...
分类:数据库   时间:2014-06-16 09:25:43    阅读次数:264
MySQL锁系列2 表锁
上一篇介绍了MySQL源码中保护内存结构或变量的锁,这里开始介绍下MySQL事务中的表锁。注1: 在表锁的实现上面,使用【mutex+condition+queue】的结构实现并发,阻塞,唤醒的表锁功能。注2: 本文进行的一些实验,重要的配置项:1. autocommit=02. tx_isol.....
分类:数据库   时间:2014-06-15 09:36:39    阅读次数:250
Control File管理
什么是Control file每个Oracle database都有控制文件, 是一个很小的二进制文件,存储了数据库的物理结构。内容包括The database namedatafile, redo log file位置和文件名The timestamp of the database creati...
分类:其他好文   时间:2014-06-14 18:29:17    阅读次数:182
矩阵操作类
1 #ifndef __MAPLE_MATRIX_H__ 2 #define __MAPLE_MATRIX_H__ 3 4 #include "maple.h" 5 6 typedef struct MATRIX{ 7 union{ 8 ...
分类:其他好文   时间:2014-06-10 16:04:42    阅读次数:159
关于Mysql中的三种日期类型
Mysql Date Datetime Timestamp 0000-00-00 00:00:00...
分类:数据库   时间:2014-06-10 14:17:00    阅读次数:233
矩阵操作类
1 #ifndef __MAPLE_MATRIX_H__ 2 #define __MAPLE_MATRIX_H__ 3 4 #include "maple.h" 5 6 typedef struct MATRIX{ 7 union{ 8 ...
分类:其他好文   时间:2014-06-10 10:28:48    阅读次数:310
java.util.Date、java.sql.Date、java.sql.Time、java.sql.Timestamp区别和总结 转
java.util.Date、java.sql.Date、java.sql.Time、java.sql.Timestamp区别和总结 java.lang.Object ....|__java.util.Date ..........|__java.sql.Date/java.sql.Timesta....
分类:数据库   时间:2014-06-09 21:04:05    阅读次数:241
MySQL和时间戳有关的函数
1. MySQL 获得当前时间戳函数:current_timestamp, current_timestamp()mysql> select current_timestamp, current_timestamp();+---------------------+-----------------...
分类:数据库   时间:2014-06-09 17:04:45    阅读次数:248
convert Timestamp to Real time
select r.ring_buffer_address,r.ring_buffer_type,dateadd (ms, r.[timestamp] - sysinfo.sqlserver_start_time_ms_ticks, sysinfo.sqlserver_start_time) as r...
分类:其他好文   时间:2014-06-09 14:07:21    阅读次数:301
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!