ACID特性oracle如何使用undo和redo来保证了关系数据库的ACID特性。
ACID的特性简单描述为:Atomic:以事务为单位的原子性Consistency:保证数据一致性Isolation:不同事务之间的隔离性,未提交的事务对其它会话是不可见的Durablity:提交的事务在系统失败的...
分类:
数据库 时间:
2014-04-28 02:40:43
阅读次数:
694
1.创建数据库:create database database_name;2.选择数据库:use
database_name;3.创建表:create table tablename(column1 data_type1, column2
data_type2,...,columnn dataty...
分类:
数据库 时间:
2014-04-28 02:34:53
阅读次数:
560
lock and
latch在oracle中为了保护共享资源,使用了两种不同的锁机制lock和latch,这两种锁有明显不同点:1,lock和pin,采用的是队列的方式,先来先服务的策略,latch和mutex,采用的是抢占的方式,fast
fail模式2,lock可以hold的时间比较长,而lat...
分类:
数据库 时间:
2014-04-28 02:21:00
阅读次数:
889
Given two binary strings, return their sum
(also a binary string).For example,a ="11"b
="1"Return"100".给定两个二进制的字符串,返回他们的和。对于a,b两个二进制字符串,首先通过交换使a的长度小于b...
分类:
其他好文 时间:
2014-04-28 02:05:20
阅读次数:
502
java关键字abstractassertbooleanbreakbytecasecatchcharclassconstcontinuedefaultdodoubleelseenumextendsfinalfinallyfloatforgotoifimplementsimportinstanceof...
分类:
编程语言 时间:
2014-04-28 02:03:26
阅读次数:
563
1.details元素
details元素标识用户要求得到并且可以得到的细节信息,用于描述文档或文档某个部分的细节。它可以与summary元素配合使用。summary元素提供标题或图例。标题是可见的,用户点击标题时,会显示出细节信息,也就是details里面定义的信息。HTML
5This doc....
分类:
Web程序 时间:
2014-04-28 01:51:30
阅读次数:
805
oracle数据库系统的架构及其复杂,其提供的特性也非常的多。作为一种关系型数据库,oracle提供的基本特性:transactionconcurrencyread
consistent而支撑这些特性的必不或缺的组件组成了Oracle Core。如下面的缩略图所示:这个oracle系统的架构图涵盖了...
分类:
数据库 时间:
2014-04-28 01:14:08
阅读次数:
621
Two ways to use sudo command for a standard
user account:First,If you want to use sudo command for a standard user account,
then you need to add this ...
分类:
其他好文 时间:
2014-04-28 00:42:49
阅读次数:
616
本文中的代码托管在github上:https://github.com/WindyShade/DataSaveMethods相对复杂的App仅靠内存的数据肯定无法满足,数据写磁盘作持久化存储是几乎每个客户端软件都需要做的。简单如“是否第一次打开”的BOOL值,大到游戏的进度和状态等数据,都需要进行本...
分类:
移动开发 时间:
2014-04-27 22:44:13
阅读次数:
819
Page 6:Natural tendency in problem solving is
to pick the first solution that comes to mind and run with it. The disadvantage
of this approach is you ...
分类:
其他好文 时间:
2014-04-27 21:27:40
阅读次数:
510