简单理解oracle的SCN就是自己的时间功能,好比linux系统自己的时间一样,oracle它也有自己的一套时间。
在你干净的关闭数据库时shutdown immediate或者使用alter system checkpoint都会把SCN的值写入4个位置,其中有3个位于controlfile内,还有1个位于datafile header内
controlfile里面的三个SCN分别是:1、...
                            
                            
                                分类:
数据库   时间:
2014-09-03 13:08:16   
                                阅读次数:
323
                             
                    
                        
                            
                            
                                A robot is located at the top-left corner of amxngrid (marked 'Start' in the diagram below).The robot can only move either down or right at any point ...
                            
                            
                                分类:
其他好文   时间:
2014-09-02 17:28:35   
                                阅读次数:
202
                             
                    
                        
                            
                            
                                Given a m x n grid filled with non-negative numbers, find a path from top left to bottom right which minimizes the sum of all numbers along its path.
Note: You can only move either down or right at...
                            
                            
                                分类:
其他好文   时间:
2014-09-01 22:52:23   
                                阅读次数:
217
                             
                    
                        
                            
                            
                                Rename(重命名):对标示符进行重命名,以获得更好的代码可读性,这些标示符包括类,方法或者函数的名称.
Extract(抽取):将你在XCode种选择的代码抽取到一个新的方法或函数中.
Create SuperClass(创建父类):为Xcode中当前所选的类定义父类
Move Up(上移):将所选择的方法,属性,或实例变量从一个类移至其父类,子类和父类均在项目中有定义
Move Do...
                            
                            
                                分类:
其他好文   时间:
2014-08-31 23:02:52   
                                阅读次数:
296
                             
                    
                        
                            
                            
                                表空间基本命令
--创建表空间   初始化大小10M  自动增长5M  最大50M
create tablespace duan datafile 'F:\oracle\product\10.2.0\oradata\orcl\duan.dbf' size 10M 
autoextend on next 5M maxsize 50M;
--查询表空间的地址和空间名称
select fi...
                            
                            
                                分类:
数据库   时间:
2014-08-31 21:33:01   
                                阅读次数:
599
                             
                    
                        
                            
                            
                                玩家移动1.检查位置包auto& mpos = m_spBase->getMapPos(pos.tgtPos);if(!check_move_pos(pos, pl)) return;2.跟新当前位置及方向,更新客户端发过来的位置pl->last_move_mode = EnumMoveMod...
                            
                            
                                分类:
移动开发   时间:
2014-08-31 18:35:11   
                                阅读次数:
299
                             
                    
                        
                            
                            
                                1. EXPDP/IMPDP方式
SQL> create user zlm identified by zlm;
User created.
SQL> grant connect,resource to zlm;
Grant succeeded.
SQL> create tablespace ts_zlm datafile '/u01/app/or...
                            
                            
                                分类:
其他好文   时间:
2014-08-31 17:18:01   
                                阅读次数:
248
                             
                    
                        
                            
                            
                                MoveManager:移动管理类struct MoveOpt{ int cur_seq; ObjecInfo* obj;};std::map m_move_objs;//主要容器//加入移动标记void MoveManager::add_mask(ObjecInfo* obj){ ...
                            
                            
                                分类:
其他好文   时间:
2014-08-31 14:22:01   
                                阅读次数:
228
                             
                    
                        
                            
                            
                                MV(1) User Commands MV(1)NAME mv - move (rename) filesSYNOPSIS移动单个文件: mv [OPTION]... [-T] SOURCE DEST #移动一个文件到另一个地方,其实这是个重命名的用法移动多个文件或目录: mv [O...
                            
                            
                                分类:
系统相关   时间:
2014-08-30 11:06:09   
                                阅读次数:
348
                             
                    
                        
                            
                            
                                1.创建表空间create tablespace NW_DATAlogging datafile 'F:\oracle\product\10.2.0\oradata\nwdb\NW_DATA.dbf' size 64m autoextend on next 64m maxsize 20480m e....
                            
                            
                                分类:
其他好文   时间:
2014-08-29 17:48:08   
                                阅读次数:
326