Secret agent Maria was sent to Algorithms City to carry out an especially dangerous mission. After several thrilling events we find her in the first station of Algorithms City Metro, examining the tim...
分类:
其他好文 时间:
2014-08-18 00:21:13
阅读次数:
383
1.如何确定数据库是否启动
su - oracle
ps -ef |grep ora_|head -2
两种关系数据库是ora或者是自动存储管理的asm开头的,
查看进程可以知道数据库实例至少已经启动,但是数据库是否挂载,是否打开,不得而知
asm
crs_stat -t
updb.db online
srvctl status database -d updb
db
...
分类:
数据库 时间:
2014-08-18 00:18:03
阅读次数:
503
;10.12assume cs:code,ds:datadata segment db 'word',0 db 'unix',0 db 'wind',0 db 'good',0data endscode segmentstart : ...
分类:
其他好文 时间:
2014-08-17 21:14:22
阅读次数:
179
日志: 说白了就是为了恢复(撤销机制) 软件里面不都有撤销ctl+z吗?但是怎么实现的呢?想一下就是记下过程,逆向操作一遍即可。Log4j原理: 一个循环处理过程--日志组,循环使用。DB里面的日志: 一条SQL进行解析之后,形成redo,undo日志,然后操作存储设备(也就是物理的操作过程...
分类:
其他好文 时间:
2014-08-17 21:12:32
阅读次数:
242
1 ;实验九 2 assume cs:code,ds:data 3 data segment 4 db 'welcome to masm!' 5 data ends 6 7 code segment 8 start : 9 mov ax,data1...
分类:
其他好文 时间:
2014-08-17 21:10:12
阅读次数:
223
对oracle10grac配置em,原本是非常简单的事,却花费了很长时间,记录下来,备忘。
首先是报如下错误:
[oracle@node1 admin]$ emca -config dbcontrol db
STARTED EMCA at Aug 17, 2014 9:06:47 AM
EM Configuration Assistant, Version 10.2.0.5.0 Produc...
分类:
数据库 时间:
2014-08-17 18:37:12
阅读次数:
332
1、增加对象 DbEntity db = new DbEntity(); //创建对象实体,注意,这里需要对所有属性进行赋值(除了自动增长主键外),如果不赋值,则会数据库中会被设置为NULL(注意是否可空) var user = ...
分类:
其他好文 时间:
2014-08-17 12:57:12
阅读次数:
136
Games with Rectangle
Time Limit:2000MS Memory Limit:262144KB 64bit IO Format:%I64d
& %I64u
Submit Status
Description
In this task Anna and Maria play the following game. Initia...
分类:
其他好文 时间:
2014-08-17 11:50:42
阅读次数:
329
本文转载:http://www.cnblogs.com/olartan/archive/2009/12/02/1615131.html第1章 引言数据量巨大时,首先把多表分算到不同的DB中,然后把数据根据关键列,分布到不同的数据库中。库分布以后,系统的查询,io等操作都可以有多个机器组成的群组共同完...
分类:
数据库 时间:
2014-08-17 10:23:02
阅读次数:
319
求变量的数据类型,通过函数typeid(变量名).name();获得变量的数据类型。
案例如下:
#include
#include
void
main()
{
double
db = 10.9;
double *pdb
= &db;
auto
num =
pdb;
//...
分类:
编程语言 时间:
2014-08-17 02:36:51
阅读次数:
402