数据文件和日志文件是数据库中最重要的文件。它们是数据存储的地方。每个数据库至少有一个与之相关的数据文件,通常情况下不只一个,有很多。数据在数据文件中是如何组织的?要了解这些内容我们首先必须理解什么是表空间(tablespace)、段(segment)、区(extent)、块(block),这些都是oracle数据库在数据文件中组织数据的基本单元。现在我们来理解这些概念。
块是数据存储的...
分类:
数据库 时间:
2014-05-09 22:49:21
阅读次数:
360
git-push(1) Manual Page
NAME
git-push - Update remote refs along with associated objects
SYNOPSIS
git push [--all | --mirror | --tags] [--follow-tags] [-n | --dry-run] [--receive...
分类:
其他好文 时间:
2014-05-09 20:46:06
阅读次数:
370
附:CentOS
6.4下载地址32位:http://mirror.centos.org/centos/6.4/isos/i386/CentOS-6.4-i386-bin-DVD1to2.torrent64位:http://mirror.centos.org/centos/6.4/isos/x86_...
分类:
其他好文 时间:
2014-05-09 15:25:39
阅读次数:
354
Given a binary tree, check whether it is a
mirror of itself (ie, symmetric around its center).For example, this binary tree
is symmetric: 1 / \ ...
分类:
其他好文 时间:
2014-05-09 09:28:18
阅读次数:
253
服务器环境:安装vim/etc/apt/sources.list.d/mariadb.list#添加以下两句
debhttp://mirror.yongbok.net/mariadb/repo/5.5/ubuntuprecisemain
deb-srchttp://mirror.yongbok.net/mariadb/repo/5.5/ubuntuprecisemain
apt-keyadv--recv-keys--keyserverkeyserver.ubuntu.com0xcbc..
分类:
数据库 时间:
2014-05-09 06:50:15
阅读次数:
538
实验环境:intel x386
一。要求:将3000H单元开始置数为00H-0FH
SSTACK SEGMENT STACK
DW 32 DUP(?)
SSTACK ENDS
CODE SEGMENT
ASSUME CS:CODE, SS:SSTACK
START: PUSH DS
XOR AX, AX
MOV DS, AX
MOV SI, 3000H
MOV CX...
分类:
编程语言 时间:
2014-05-09 06:33:53
阅读次数:
372
data segment
string1 db 'Please input a number:',0dh,0ah,'$'
string2 db 0dh,0ah,'It is a number!',0dh,0ah,'$'
string3 db 0dh,0ah,'It is not a number!',0dh,0ah,'$'
data ends
code segment
...
分类:
其他好文 时间:
2014-05-09 01:34:35
阅读次数:
350
data segment
string1 db 'Please input a number:',0dh,0ah,'$'
string2 db 0dh,0ah,'It is a number!',0dh,0ah,'$'
string3 db 0dh,0ah,'It is not a number!',0dh,0ah,'$'
data ends
code segment
...
分类:
其他好文 时间:
2014-05-09 01:18:43
阅读次数:
316
1、删除redhat原有的yum源#rpm-aq|grepyum|xargsrpm-e--nodeps2、下载新的yum安装包这里我们使用CentOS的yum源#wgethttp://mirror.centos.org/centos/6.0/os/i386/Packages/python-iniparse-0.3.1-2.1.el6.noarch.rpm#wgethttp://mirror.centos.org/centos/6.0/os/i386/Package..
分类:
其他好文 时间:
2014-05-08 16:40:46
阅读次数:
286
assume cs:codesgcodesg segment start: ;
设置源地址与目的地址,并使用movsb传送 mov ax, cs mov ds, ax mov si, offset do0 mov ax, 0 mov es,
ax mov di, 200h mov c...
分类:
其他好文 时间:
2014-05-08 08:58:20
阅读次数:
253