一次碰撞引发的灾难 error=15078 txt: '' Automatic datafile offline due to write error on file 57: +DG_DATA_03/billbj/datafile/tbs_band_dailytable_

Size: px
Start display at page:

Download "一次碰撞引发的灾难 error=15078 txt: '' Automatic datafile offline due to write error on file 57: +DG_DATA_03/billbj/datafile/tbs_band_dailytable_"

Transcription

1 一次碰撞引发的灾难 error=15078 txt: '' Automatic datafile offline due to write error on file 57: +DG_DATA_03/billbj/datafile/tbs_band_dailytable_ KCF: write/open error block=0x8e20b online=1 file=68 +DG_DATA_03/billbj/datafile/tbs_band_table_idx_ error=15078 txt: '' 此时检查 ASM 的告警日志, 也可以发现 ASM 实例无法加载磁盘组 (DG_DATA_03) 的错误 : Thu Jun 25 05:10: NOTE: recovering COD for group 1/0x (DG_DATA_01) SUCCESS: completed COD recovery for group 1/0x (DG_DATA_01) NOTE: recovering COD for group 2/0x (DG_DATA_02) SUCCESS: completed COD recovery for group 2/0x (DG_DATA_02) Thu Jun 25 05:12: Errors in file /u01/app/oracle/admin/+asm/bdump/+asm1_gmon_21761.trc: ORA-27091: unable to queue I/O ORA-27072: File I/O error HPUX-ia64 Error: 6: No such device or address Additional information: 4 Additional information: 2044 Additional information: -1 Thu Jun 25 05:13: WARNING: cache failed to read fn=3 blk=0 from disk(s): 1 ORA-15062: ASM disk is globally closed NOTE: cache initiating offline of disk 1 group 3 Thu Jun 25 05:22: ERROR: no PST quorum in group 3: required 1, found 0 Thu Jun 25 05:22: Errors in file /u01/app/oracle/admin/+asm/bdump/+asm1_n000_28730.trc: ORA-15063: ASM discovered an insufficient number of disks for diskgroup "DG_DATA_03" Thu Jun 25 05:22: ERROR: async update- could not update PST (grp 3) Thu Jun 25 05:22: Errors in file /u01/app/oracle/admin/+asm/bdump/+asm1_n000_28730.trc: 221

2 ORA-15063: ASM discovered an insufficient number of disks for diskgroup "DG_DATA_03" 当用户解决了交换机问题之后, 试图恢复数据库运行时, 遇到了另外一个问题, 从数据库角度看来, 始终有一个磁盘组处于 Mounted 的状态, 数据库无法连接, 也就无法访问其中的数据 : SQL> select name,state from v$asm_diskgroup_stat; NAME STATE DG_DATA_01 CONNECTED DG_DATA_02 CONNECTED DG_DATA_03 MOUNTED 并且从告警日志来看,ASM 磁盘组在挂载后会很快被自动卸载 : Thu Jun 25 17:45: SUCCESS: diskgroup DG_DATA_03 was mounted SUCCESS: diskgroup DG_DATA_03 was dismounted SUCCESS: diskgroup DG_DATA_03 was mounted SUCCESS: diskgroup DG_DATA_03 was dismounted SUCCESS: diskgroup DG_DATA_03 was mounted SUCCESS: diskgroup DG_DATA_03 was dismounted 如何修正磁盘组的状态成为了一个难题, 如果该磁盘组无法连接, 则数据库就无法访问其中的数据 恢复过程 我们尝试直接拷贝复制磁盘组中的文件, 发现可以成功, 而在文件备份过程中, 磁盘组的状态在数据库中转为正常的 CONNECTED 模式 : oracle@ccnbjdc1[billbj1]:/u01/app/oracle/admin/billbj/bdump$ rman target / Recovery Manager: Release Production on Thu Jun 25 17:45: Copyright (c) 1982, 2005, Oracle. All rights reserved. connected to target database: BILLBJ (DBID= ) RMAN> copy datafile '+DG_DATA_03/billbj/datafile/tbs_default_ ' to '/backup/a.dbf'; Starting backup at 25-JUN-09 using target database control file instead of recovery catalog allocated channel: ORA_DISK_1 222

3 一次碰撞引发的灾难 channel ORA_DISK_1: sid=1152 instance=billbj1 devtype=disk allocated channel: ORA_DISK_2 channel ORA_DISK_2: sid=1155 instance=billbj1 devtype=disk allocated channel: ORA_DISK_3 channel ORA_DISK_3: sid=1153 instance=billbj1 devtype=disk allocated channel: ORA_DISK_4 channel ORA_DISK_4: sid=1150 instance=billbj1 devtype=disk channel ORA_DISK_1: starting datafile copy input datafile fno=00161 name=+dg_data_03/billbj/datafile/tbs_default_ output filename=/backup/a.dbf tag=tag t recid=2 stamp= channel ORA_DISK_1: datafile copy complete, elapsed time: 00:04:09 Finished backup at 25-JUN-09 Starting Control File and SPFILE Autobackup at 25-JUN-09 piece handle=/backup/ctlbak/c comment=none Finished Control File and SPFILE Autobackup at 25-JUN-09 至此, 结合前面分析的文件 Offline 状态, 我们得出以下结论 : 当磁盘组中的所有文件 Offline, 则 Oracle 不访问该 DG 中的磁盘, 该磁盘就保持了 MOUNTED 状态, 数据库无需连接磁盘组 ; 我们只要尝试访问该磁盘中的文件, 该磁盘组就会显示为数据库连接的 CONNECTED 状态 接下来通过 Recover 那些被 Offline 的文件, 再执行 Online 操作, 就将数据库恢复到了正常状态 Thu Jun 25 17:54: ALTER DATABASE RECOVER datafile 151 Thu Jun 25 17:54: Media Recovery Start parallel recovery started with 3 processes ORA-279 signalled during: ALTER DATABASE RECOVER datafile Thu Jun 25 17:54: ALTER DATABASE RECOVER CONTINUE DEFAULT Thu Jun 25 17:54: Media Recovery Log +DG_DATA_02/billbj/1_134766_ dbf 223

4 ORA-279 signalled during: ALTER DATABASE RECOVER CONTINUE DEFAULT... Thu Jun 25 17:54: ALTER DATABASE RECOVER CONTINUE DEFAULT Thu Jun 25 17:54: Media Recovery Log +DG_DATA_02/billbj/2_90114_ dbf ORA-279 signalled during: ALTER DATABASE RECOVER CONTINUE DEFAULT... Thu Jun 25 17:54: ALTER DATABASE RECOVER CONTINUE DEFAULT Thu Jun 25 17:54: Media Recovery Log +DG_DATA_02/billbj/2_90115_ dbf ORA-279 signalled during: ALTER DATABASE RECOVER CONTINUE DEFAULT... Thu Jun 25 17:54: ALTER DATABASE RECOVER CONTINUE DEFAULT Thu Jun 25 17:54: Media Recovery Log +DG_DATA_02/billbj/1_134767_ dbf Thu Jun 25 17:54: Media Recovery Complete (billbj1) 这个数据库是一个 TB 级别的核心计费数据库, 非常重要 : SQL> select sum(bytes)/1024/1024/1024 from v$datafile; SUM(BYTES)/1024/1024/ 因为简单的一次维护碰撞, 业务遭受了一天的影响 224

5 又一次碰撞引发的灾难 文件离线与归档缺失案例 前面提到的用户属于幸运者, 如果用户不能及时发现和解决这个问题, 如果不是一个 ASM 磁盘组的整体问题, 也许故障就会被掩盖, 灾难就会更惨重 从一个侧面来说,Oracle 的自动数据库文件离线保护机制是有问题的, 或者说提示不够明确, 数据库应当在启动过程中, 予以明确提示用户, 部分文件因为保护离线, 请用户处理, 如果能够在这个环境做出提示, 本章的几个案例就都会大大简化 灾难描述 以下是与上一节完全类似的一个案例, 但是错误走得更远, 灾难也就更加严重 : 1. 集成商为用户扩展存储, 增加硬盘 2. 无意中将光线交换机碰断电 3. 部分数据库文件出现读写错误离线 4. 重启数据库后未察觉 5. 多日后发现, 执行在线恢复 6. 发现丢失了归档日志, 数据文件无法加载 7. 灾难形成 丢失了归档日志, 文件离线, 使得这个案例变得异常复杂 案例警示 这个案例给我们的警示有 : 1. 墨菲定律总是无处不在墨菲定律告诉我们, 你越是害怕出现问题的地方, 就越是会出现问题 ; 哪怕你觉得需要 N 多个条件才能出

6 现的问题, 这 N 多个条件终将满足 所以不能在任何一个环节掉以轻心, 我们举一个管理学中常见的比喻 : 假定一个故障在可靠性低于 60% 才能发生, 我们认为这个概率已经很低 ; 另一个条件, 通常我们觉得将一个工作的准确性达到 90% 已经足够优秀 ; 现在的问题时, 如果多个环节都做到 90% 会怎样? 假定数据环境涉及到了网络 主机 存储 操作系统和数据库五大环节, 如果每个环境都做到了 90 分, 那么最后整个系统的可靠性有多少呢? 90% 90% 90% 90% 90%=59.049% 最终答案是 %, 这个指标已经低于了 60%, 这个系统的稳定性将会出现问题 所以在我们经手的每一个环境, 都应当力争做到 100 分, 这样才能为其他环境留下机会, 为系统的稳健提供保护 2. 在维护工作之后进行日志检查通常维护工作都在深夜来完成, 而人在疲劳加班之后, 潜意识会想要尽快完成工作, 离开现场, 这就为工作留下了隐患 根据我们的经验, 在维护时出现的问题, 通过日志监控和检查都可以发现 我们建议, 对于数据库环境, 在维护期间应当提炼摘取维护期生成的所有日志, 确保日志中没有出现错误, 或者出现的错误都得到了处理 这样至少可以避免多数基本故障 3. 不要过分信赖数据库的自我修复能力对于类似这样的故障, 很多用户认为,Oracle 应当能够通过自我调整来完成故障恢复, 但是显然, 我们不能对数据库要求太高 在这个案例中, 保护性离线之后,Oracle 不会自动进行文件恢复和在线尝试 ( 实际上这种情况是应当可以自动修复的 ), 如果用户疏忽, 则故障就可能出现 对于自动保护的文件离线问题, 实际上我认为是 Oracle 数据库的 BUG,Oracle 应当能够分辨哪些情况文件是由于保护方式离线的, 并且应当在数据库启动之后, 给予用户强制性提示, 要求用户进行判断和处理, 如果这样, 本章所描述的案例就不会触发如此复杂严重的事故 技术和管理相结合, 才能确保数据库的安全 226

7 又一次碰撞引发的灾难 技术回放 在检查用户数据库告警日志时, 首先发现客户数据库早就存在 ORA-600 错误 : Fri Mar 11 01:58: Errors in file /opt/oracle/admin/orcl/udump/orcl_ora_ trc: ORA-00600: internal error code, arguments: [25012], [1], [2], [], [], [], [], [] ARC0: Completed archiving log 5 thread 1 sequence ARC0: Evaluating archive log 7 thread 2 sequence ARC0: Beginning to archive log 7 thread 2 sequence Creating archive destination LOG_ARCHIVE_DEST_1: '/arch/2_27079.dbf' Fri Mar 11 01:58: Errors in file /opt/oracle/admin/orcl/udump/orcl_ora_ trc: ORA-00600: internal error code, arguments: [25012], [1], [2], [], [], [], [], [] 数据库的参数文件中, 设置了大量隐含参数进行错误屏蔽 : db_file_multiblock_read_count= 16 fast_start_mttr_target = 300 rollback_segments = system _corrupted_rollback_segments= _SYSSMU1$, _SYSSMU2$, _SYSSMU3$, _SYSSMU4$, _SYSSMU5$, _SYSSMU6$, _SYSSMU7$, _SYSSMU8$, _SYSSMU9$, _SYSSMU10$, _SYSSMU11$, _SYSSMU12$, _SYSSMU13$, _SYSSMU14$, _SYSSMU15$, _SYSSMU16$, _SYSSMU17$, _SYSSMU18$, _SYSSMU19$, _SYSSMU20$ undo_management = MANUAL undo_tablespace = UNDOTBS4 undo_retention = remote_login_passwordfile= EXCLUSIVE 这其中的部分参数设置存在问题, 另外, 一个生产数据库, 是不应该在这些参数的保护下运行的, 如果错误解决不能排除所有异常, 那么数据库就应当重建 在客户交换机问题出现时, 数据库出现如下错误, 文件无法读写 : Sun Jul 24 10:09: Errors in file /opt/oracle/admin/orcl/udump/orcl_ora_ trc: ORA-01115: IO error reading block from file 72 (block # ) 227

8 ORA-27063: skgfospo: number of bytes read/written is incorrect IBM AIX RISC System/6000 Error: 5: I/O error Additional information: -1 Additional information: ORA-01115: IO error reading block from file 72 (block # ) ORA-27063: skgfospo: number of bytes read/written is incorrect IBM AIX RISC System/6000 Error: 5: I/O error Additional information: -1 Additional information: ORA-01115: IO error reading block from file 72 (block # ) ORA-27063: skgfospo: number of bytes read/written is incorrect IBM AIX RISC System/6000 Error: 5: I/O error Additional information: -1 Additional information: 接下来数据库保护性的将发生读写错误的数据文件离线 : Sun Jul 24 10:31: KCF: write/open error block=0x1f1d71 online=1 file=36 /dev/ro_nlv_img_08 error=27063 txt: 'IBM AIX RISC System/6000 Error: 5: I/O error Additional information: -1 Additional information: 8192' Sun Jul 24 10:31: KCF: write/open error block=0xa2b online=1 file=82 /dev/ro_dt_vio_index_ error=27063 txt: 'IBM AIX RISC System/6000 Error: 5: I/O error Additional information: -1 Additional information: 8192' Sun Jul 24 10:31: Errors in file /opt/oracle/admin/orcl/udump/orcl_ora_ trc: ORA-01115: IO error reading block from file 58 (block # ) ORA-27063: skgfospo: number of bytes read/written is incorrect IBM AIX RISC System/6000 Error: 5: I/O error Additional information:

9 又一次碰撞引发的灾难 Additional information: 8192 Automatic datafile offline due to write error on file 36: /dev/ro_nlv_img_08 Sun Jul 24 10:31: Automatic datafile offline due to write error on file 82: /dev/ro_dt_vio_index_ 在修复了交换机问题之后, 用户将数据库启动 : Sun Jul 24 11:39: ALTER DATABASE OPEN Sun Jul 24 11:39: Beginning crash recovery of 1 threads Sun Jul 24 11:39: Started first pass scan Sun Jul 24 11:39: Completed first pass scan redo blocks read, 2669 data blocks need recovery >> 数据库执行恢复 Sun Jul 24 11:39: Started recovery at Thread 1: logseq , block , scn 0.0 Recovery of Online Redo Log: Thread 1 Group 1 Seq Reading mem 0 Mem# 0 errs 0: /dev/ro_log1_01 Recovery of Online Redo Log: Thread 1 Group 5 Seq Reading mem 0 Mem# 0 errs 0: /dev/ro_log1_03 Sun Jul 24 11:39: Completed redo application >> 数据库完成恢复 Sun Jul 24 11:39: Ended recovery at Thread 1: logseq , block , scn data blocks read, 2669 data blocks written, redo blocks read Crash recovery completed successfully Sun Jul 24 11:39:

10 LGWR: Primary database is in CLUSTER CONSISTENT mode Thread 1 advanced to log sequence Thread 1 opened at log sequence Current log# 2 seq# mem# 0: /dev/ro_log1_02 Successful open of redo thread 1. Sun Jul 24 11:39: SMON: enabling cache recovery >> 数据库开始工作归档 Sun Jul 24 11:39: ARC0: Evaluating archive log 5 thread 1 sequence ARC0: Beginning to archive log 5 thread 1 sequence Creating archive destination LOG_ARCHIVE_DEST_1: '/arch/1_ dbf' ARC0: Completed archiving log 5 thread 1 sequence 注意, 此时用户认为数据库已经恢复了正常, 能够提供服务, 开始切换归档日志 但是没有人注意到, 有几个数据库文件已经 Offline 离线 等到用户注意到这个问题, 尝试去加载这些文件时, 发现归档日志丢失了, 没有了归档日志, 这些数据文件无法被 Online: Mon Jul 25 14:25: ALTER DATABASE RECOVER datafile '/dev/ro_dt_vio_dat_02' Mon Jul 25 14:25: Media Recovery Datafile: '/dev/ro_dt_vio_dat_02' Media Recovery Start Starting datafile 94 recovery in thread 1 sequence Datafile 94: '/dev/ro_dt_vio_dat_02' Media Recovery Log ORA-279 signalled during: ALTER DATABASE RECOVER datafile '/dev/ro_dt_vio_d... Mon Jul 25 14:25: ALTER DATABASE RECOVER CONTINUE DEFAULT Media Recovery Log /arch/1_ dbf Errors with log /arch/1_ dbf. ORA-308 signalled during: ALTER DATABASE RECOVER CONTINUE DEFAULT... Mon Jul 25 14:25:

11 又一次碰撞引发的灾难 ALTER DATABASE RECOVER CONTINUE DEFAULT Media Recovery Log /arch/1_ dbf Errors with log /arch/1_ dbf. ORA-308 signalled during: ALTER DATABASE RECOVER CONTINUE DEFAULT... Mon Jul 25 14:25: ALTER DATABASE RECOVER CANCEL Media Recovery Cancelled Completed: ALTER DATABASE RECOVER CANCEL 这里的错误 ORA-279 在前台出现的错误提示就是归档日志不可用 : [oracle@hpserver2 ~]$ oerr ora , 00000, "change %s generated at %s needed for thread %s" // *Cause: The requested log is required to proceed with recovery. // *Action: Please supply the requested log with "ALTER DATABASE RECOVER // LOGFILE <file_name>" or cancel recovery with "ALTER DATABASE // RECOVER CANCEL". 用户数据库大小近 3TB, 包含了长期以来的数据积累 : select sum(bytes)/1024/1024/1024 GB from v$datafile; GB 离线的文件主要有以下系列 : select file#,name,bytes/1024/1024 MB,status from v$datafile where status like 'REC%'; FILE# NAME MB STATUS /dev/ro_nlv_img_ RECOVER 82 /dev/ro_dt_vio_index_ 4000 RECOVER 94 /dev/ro_dt_vio_dat_ RECOVER 95 /dev/ro_dt_vio_dat_ RECOVER 96 /dev/ro_dt_vio_dat_ RECOVER 对于丢失了归档日志文件的情况, 正常情况下,Oracle 不允许跳过归档加载文件, 因为丢失归档日志意味着数据库的一致性被破坏, 应当通过备份来恢复数据 231

12 但是如果没有备份, 我们就只能通过特殊的手段来进行恢复尝试, 这种尝试仅在迫不得已的情况下使用, 并且应当在之后重建数据库 恢复过程 以下是本书提供的一个恢复测试说明 1.BBED 修改文件头跳过归档日志 首先创建一个包含两个数据文件的表空间 USERS: SQL> alter database datafile 'C:\ORACLE\ORADATA\ORA9I\USERS01.DBF' resize 2M; Database altered. SQL> select name,bytes/1024/1024 from v$datafile; NAME BYTES/1024/ C:\ORACLE\ORADATA\ORA9I\SYSTEM01.DBF 250 C:\ORACLE\ORADATA\ORA9I\UNDOTBS01.DBF 200 C:\ORACLE\ORADATA\ORA9I\USERS01.DBF 2 SQL> alter tablespace users add datafile 'C:\ORACLE\ORADATA\ORA9I\USERS02.DBF' size 2M; Tablespace altered. SQL> alter database datafile 'C:\ORACLE\ORADATA\ORA9I\USERS01.DBF' autoextend off; Database altered. 在表空间创建一个数据表, 使用完所有的空间 : SQL> create table eygle tablespace users as select * from dba_objects; Table created. SQL> insert into eygle select * from eygle; 6323 rows created. SQL> insert into eygle select * from eygle; insert into eygle select * from eygle * ERROR at line 1: 232

13 又一次碰撞引发的灾难 ORA-01653: unable to extend table SYS.EYGLE by 128 in tablespace USERS SQL> select count(*) from eygle; COUNT(*) 确保数据库运行在归档模式下, 将数据文件离线 : SQL> archive log list; Database log mode Archive Mode Automatic archival Disabled Archive destination c:\oracle\9.2.0\rdbms Oldest online log sequence 72 Next log sequence to archive 74 Current log sequence 74 SQL> archive log start; Statement processed. SQL> alter database datafile 'C:\ORACLE\ORADATA\ORA9I\USERS02.DBF' offline; Database altered. 切换一些归档, 然后删除这些归档日志 : SQL> alter system switch logfile; System altered. SQL> alter system switch logfile; System altered. SQL> alter system switch logfile; System altered. SQL> select file#,status from v$datafile; FILE# STATUS SYSTEM 2 ONLINE 3 ONLINE 4 RECOVER 233

14 如果此时尝试 Online 数据文件, 会要求进行恢复, 如果无法找到需要的归档日志, 则恢复无法进行, 这就是用户面对的情况 : SQL> alter database datafile 4 online; alter database datafile 4 online * ERROR at line 1: ORA-01113: file 4 needs media recovery ORA-01110: data file 4: 'C:\ORACLE\ORADATA\ORA9I\USERS02.DBF' SQL> recover datafile 4; ORA-00279: change generated at 01/11/ :19:23 needed for thread 1 ORA-00289: suggestion : C:\ORACLE\9.2.0\RDBMS\ARC ORA-00280: change for thread 1 is in sequence #74 Specify log: {<RET>=suggested filename AUTO CANCEL} ORA-00308: cannot open archived log 'C:\ORACLE\9.2.0\RDBMS\ARC ' ORA-27041: unable to open file OSD-04002: 无法打开文件 O/S-Error: (OS 2) The system cannot find the file specified. SQL> select file#,name from v$datafile; FILE# NAME C:\ORACLE\ORADATA\ORA9I\SYSTEM01.DBF 2 C:\ORACLE\ORADATA\ORA9I\UNDOTBS01.DBF 3 C:\ORACLE\ORADATA\ORA9I\USERS01.DBF 4 C:\ORACLE\ORADATA\ORA9I\USERS02.DBF 解决这个问题的一个办法是通过 BBED 来进行数据文件头, 跳过缺失的归档日志文件, 然后强制挂接数据文件 以下是详细的过程介绍 234

15 又一次碰撞引发的灾难 BBED 的基本配置 首先编辑好 BBED 需要的参数文件, 一个用于提供文件列表, 一个用于设定基本参数 : E:\>type data.txt 1 C:\ORACLE\ORADATA\ORA9I\SYSTEM01.DBF 2 C:\ORACLE\ORADATA\ORA9I\UNDOTBS01.DBF 3 C:\ORACLE\ORADATA\ORA9I\USERS01.DBF 4 C:\ORACLE\ORADATA\ORA9I\USERS02.DBF E:\>type par.txt listfile=data.txt mode=edit blocksize=8192 使用如下命令启动 BBED 程序 : E:\>bbed parfile=par.txt 最简单的, 由于文件 3 和 4 属于同一个表空间,3 号文件一切完好, 我们可以将 3 号文件的头块覆盖到 4 号文件的文件头上 BBED COPY 进行块复制恢复 BBED 的 COPY 命令语法如下 : COPY [ DBA FILE FILENAME BLOCK ] TO [ DBA FILE FILENAME BLOCK ] 以下命令将文件 3 的头块拷贝复制到文件 4 的头块上 : BBED> copy file 3 block 1 to file 4 block 1; File: C:\ORACLE\ORADATA\ORA9I\USERS02.DBF (4) Block: 1 Offsets: 0 to 7 Dba:0x b c000 <32 bytes per line> BBED> set file 4 block 1; 235

16 FILE# 4 BLOCK# 1 BBED> dump File: C:\ORACLE\ORADATA\ORA9I\USERS02.DBF (4) Block: 1 Offsets: 0 to 7 Dba:0x b c000 <32 bytes per line> 数据文件头的信息可以通过 map 命令展示出来, 以下输出显示数据文件头主要的数据结构为 kcvfh, 共占用 360 字节存储, 右侧显示的是具体内容的偏移量 : BBED> map /v File: (0) Block: 1 Dba:0x Data File Header struct kcvfh, 360 struct kcvfhbfh, 20 struct kcvfhhdr, 76 ub4 struct kcvfhcrs, 8 ub4 ub4 struct kcvfhrls, 8 ub4 struct kcvfhbsc, 8 ub2 ub2 struct kcvfhckp, 36 ub4 ub4 ub4 236

17 又一次碰撞引发的灾难 struct kcvfhbcp, 36 ub4 struct kcvfhxcd, 16 word ub2 text ub4 struct kcvfhrfs, 8 ub4 struct kcvfhafs, 8 ub4 ub4 ub4 ub4 ub4 ub2 ub2 ub4 struct kcvfhprs, 8 struct kcvfhprfs, 8 ub4 ub4 使用 print 命令可以具体打印出相关变量的信息 : BBED> p kcvfh struct kcvfh, 360 struct kcvfhbfh, 20 ub1 0x0b ub1 0x02 ub1 0x00 ub1 0x00 ub4 0x ub4 0x

18 ub2 0x0000 ub1 0x01 ub1 0x04 (KCBHFCKV) ub2 0x31d1 ub2 0x0000 拷贝之后还有几个内容需要修改, 主要是文件号相关的信息 偏移量 4 记录的是 RDBA 信息, 其中包含文 件号信息, 此处需要根据情况由 3 改为 4: BBED> set offset 4 OFFSET 4 BBED> dump File: C:\ORACLE\ORADATA\ORA9I\USERS02.DBF (4) Block: 1 Offsets: 4 to 11 Dba:0x c <32 bytes per line> BBED> modify /x File: C:\ORACLE\ORADATA\ORA9I\USERS02.DBF (4) Block: 1 Offsets: 4 to 11 Dba:0x <32 bytes per line> 此外偏移量 52 处存储的是文件号信息 : ub2 0x0004 ub2 0x0003 也需要同样修改 : BBED> set offset 52 OFFSET 52 BBED> dump File: C:\ORACLE\ORADATA\ORA9I\USERS02.DBF (4) 238

19 又一次碰撞引发的灾难 Block: 1 Offsets: 52 to 59 Dba:0x <32 bytes per line> BBED> modify /x 04 File: C:\ORACLE\ORADATA\ORA9I\USERS02.DBF (4) Block: 1 Offsets: 52 to 59 Dba:0x <32 bytes per line> 偏移量 280 处存储的是相对文件号 : ub4 0x struct kcvfhrfs, 8 ub4 0x ub2 0x0000 ub4 0x2e086f78 以下需要相应的修改 : BBED> set offset 280 OFFSET 280 BBED> dump File: C:\ORACLE\ORADATA\ORA9I\USERS02.DBF (4) Block: 1 Offsets: 280 to 287 Dba:0x <32 bytes per line> BBED> modify /x 04 File: C:\ORACLE\ORADATA\ORA9I\USERS02.DBF (4) Block: 1 Offsets: 280 to 287 Dba:0x

20 <32 bytes per line> BBED> sum apply 数据文件创建时间与 SCN 校验 如果此时尝试恢复数据文件会遇到如下错误, 提示文件 4 的创建 SCN 错误 : SQL> recover datafile 4; ORA-00283: recovery session canceled due to errors ORA-01110: data file 4: 'C:\ORACLE\ORADATA\ORA9I\USERS02.DBF' ORA-01122: database file 4 failed verification check ORA-01110: data file 4: 'C:\ORACLE\ORADATA\ORA9I\USERS02.DBF' ORA-01203: wrong incarnation of this file - wrong creation SCN 数据文件的 SCN 来自数据字典 file$ 视图 : SQL> select file#,crscnwrp,crscnbas,to_char(crscnbas,'xxxxxx') scn from file$; FILE# CRSCNWRP CRSCNBAS SCN b d 数据文件的创建 SCN 存储与偏移量 100 处 : struct kcvfhcrs, 8 ub4 0x d ub2 0x0000 根据这个文件的具体信息, 修改这个 SCN: BBED> set offset 100 OFFSET 100 BBED> dump File: C:\ORACLE\ORADATA\ORA9I\USERS02.DBF (4) 240

21 又一次碰撞引发的灾难 Block: 1 Offsets: 100 to 107 Dba:0x b <32 bytes per line> BBED> modify /x 2d File: C:\ORACLE\ORADATA\ORA9I\USERS02.DBF (4) Block: 1 Offsets: 100 to 107 Dba:0x d <32 bytes per line> BBED> verify DBVERIFY - 验证正在启动 FILE =C:\ORACLE\ORADATA\ORA9I\USERS02.DBF BLOCK = 1 块 1 已毁坏 *** Corrupt block relative dba: 0x (file 0, block 1) Bad check value found during verification Data in bad block - type: 11 format: 2 rdba: 0x last change scn: 0x seq: 0x1 flg: 0x04 consistency value in tail: 0x00000b01 check value in block header: 0xc78e, computed block checksum: 0x715a spare1: 0x0, spare2: 0x0, spare3: 0x0 *** DBVERIFY - 验证完成 检查的总块数 :1 已处理的总块数 ( 数据 ):0 无法处理的总块数 ( 数据 ):0 241

22 已处理的总块数 ( 索引 ):0 无法处理的总块数 ( 索引 ):0 空的总块数 :0 标记为损坏的总数块 :1 汇入的块总数 :0 BBED> sum apply Check value for File 4, Block 1: current = 0xb6d4, required = 0xb6d4 此时如果尝试恢复数据文件, 则会遇到如下错误, 这是提示创建时间错误, 通过 file$ 仍然可以获得这个信息, 需要同样修改 SQL> recover datafile 4; ORA-00283: recovery session canceled due to errors ORA-01110: data file 4: 'C:\ORACLE\ORADATA\ORA9I\USERS02.DBF' ORA-01122: database file 4 failed verification check ORA-01110: data file 4: 'C:\ORACLE\ORADATA\ORA9I\USERS02.DBF' ORA-01202: wrong incarnation of this file - wrong creation time 创建时间存储于文件头偏移量 108 位置 : ub4 0x2e ub4 0x2cdbbe56 修改数据文件的创建时间信息 : BBED> set offset 108 OFFSET 108 BBED> dump File: C:\ORACLE\ORADATA\ORA9I\USERS02.DBF (4) Block: 1 Offsets: 108 to 115 Dba:0x bedb2c 56bedb2c <32 bytes per line> BBED> modify /x e File: C:\ORACLE\ORADATA\ORA9I\USERS02.DBF (4) 242

23 又一次碰撞引发的灾难 Block: 1 Offsets: 108 to 115 Dba:0x e 56bedb2c <32 bytes per line> BBED> sum apply Check value for File 4, Block 1: current = 0x6952, required = 0x6952 旧的控制文件与新的数据文件 此时执行恢复, 数据库提示控制文件比数据文件旧, 我们需要重建控制文件 : SQL> recover datafile 4; ORA-00283: recovery session canceled due to errors ORA-01122: database file 4 failed verification check ORA-01110: data file 4: 'C:\ORACLE\ORADATA\ORA9I\USERS02.DBF' ORA-01207: file is more recent than controlfile - old controlfile 通过如下步骤重建控制文件 ( 正确的重建控制文件是每个 DBA 应当具备的基本功 ): SQL> alter database backup controlfile to trace; Database altered. SQL> shutdown immediate; Database closed. Database dismounted. ORACLE instance shut down. ORACLE instance started. Total System Global Area bytes Fixed Size Variable Size Database Buffers Redo Buffers bytes bytes bytes bytes SQL> CREATE CONTROLFILE REUSE DATABASE "ORA9I" NORESETLOGS ARCHIVELOG 243

24 2 -- SET STANDBY TO MAXIMIZE PERFORMANCE 3 MAXLOGFILES 5 4 MAXLOGMEMBERS 3 5 MAXDATAFILES MAXINSTANCES 1 7 MAXLOGHISTORY LOGFILE 9 GROUP 1 'C:\ORACLE\ORADATA\ORA9I\REDO01.LOG' SIZE 10M, 10 GROUP 2 'C:\ORACLE\ORADATA\ORA9I\REDO02.LOG' SIZE 10M, 11 GROUP 3 'C:\ORACLE\ORADATA\ORA9I\REDO03.LOG' SIZE 10M STANDBY LOGFILE 13 DATAFILE 14 'C:\ORACLE\ORADATA\ORA9I\SYSTEM01.DBF', 15 'C:\ORACLE\ORADATA\ORA9I\UNDOTBS01.DBF', 16 'C:\ORACLE\ORADATA\ORA9I\USERS01.DBF', 17 'C:\ORACLE\ORADATA\ORA9I\USERS02.DBF' 18 CHARACTER SET ZHS16GBK 19 ; Control file created. 此时尝试打开数据库, 提示文件 4 需要恢复 : SQL> alter database open; alter database open * ERROR at line 1: ORA-01113: file 4 needs media recovery ORA-01110: data file 4: 'C:\ORACLE\ORADATA\ORA9I\USERS02.DBF' 执行恢复, 将从新的日志读取信息, 文件 4 得以成功恢复 : SQL> recover datafile 4; Media recovery complete. SQL> alter database open; Database altered. 244

SPFILE的使用

SPFILE的使用 9i SPFILE Oracle9i spfile Oracle9i Oracle rman Oracle spfile spfile Oracle Oracle9i -spfile,spfile 9i Oracle pfile spfile ALTER SYSTEM ALTER SESSION spfile spfile SPFILE RMAN Oracle PFILE PFILE SPFILE,

More information

sql> startup mount 改变数据库的归档模式 sql> alter database archivelog # 打开数据库 sql> alter database open 禁止归档模式 sql> shutdown immediate sql>startup mount sql> al

sql> startup mount 改变数据库的归档模式 sql> alter database archivelog # 打开数据库 sql> alter database open 禁止归档模式 sql> shutdown immediate sql>startup mount sql> al RMAN sql> sqlplus / as sysdba 查看数据库版本 sql> select * from v$version; 查看数据库名称 sql> show parameter db_name; 一 使用 RMAN 时, 需要将数据库设置成归档模式 sql> conn / as sysdba; sql> show user 查看数据库是否为归档模式 sql> archive log list

More information

Oracle 4

Oracle 4 Oracle 4 01 04 Oracle 07 Oracle Oracle Instance Oracle Instance Oracle Instance Oracle Database Oracle Database Instance Parameter File Pfile Instance Instance Instance Instance Oracle Instance System

More information

System Global Area, Oracle Background process Oracle, Server Process user process, user process : SQL*PLUS SYSTEM SQL> select name from v$datafile; NA

System Global Area, Oracle Background process Oracle, Server Process user process, user process : SQL*PLUS SYSTEM SQL> select name from v$datafile; NA ORACLE By Chao_Ping and Parrotao 1 Oracle9i, SGA 2 Oracle9i 3, 4, Oracle? Oracle??? Oracle 1 Overview Oracle, Datafile, Background process, System Global Area, Server Process User Process System Global

More information

三. 发现表被删除, 开始着手解决 1. 该表所在表空间离线 ( 确保删除表所在位置不会被重写 ) SQL> alter tablespace raw_odu offline; Tablespace altered. 2. 通过 logmnr, 找出被删除的数据 data _object _id 1

三. 发现表被删除, 开始着手解决 1. 该表所在表空间离线 ( 确保删除表所在位置不会被重写 ) SQL> alter tablespace raw_odu offline; Tablespace altered. 2. 通过 logmnr, 找出被删除的数据 data _object _id 1 使用 odu 恢复被 drop 表过程 一. 数据库版本 SQL> select * from v$version; BANNER ---------------------------------------------------------------- Oracle9i Enterprise Edition Release 9.2.0.8.0 - Production PL/SQL Release

More information

回滚段探究

回滚段探究 oracle oracle internal DBA oracle document oracle concepts oracle document oracle DBWR update t set object_id = '0' where object_id = '12344'; 1 row updated. commit; Commit complete. 0 12344 12344 0 10%

More information

SA-DK2-U3Rユーザーズマニュアル

SA-DK2-U3Rユーザーズマニュアル USB3.0 SA-DK2-U3R 2007.0 2 3 4 5 6 7 8 System Info. Manual Rebuild Delete RAID RAID Alarm Rebuild Rate Auto compare Temp Management Load Default Elapse time Event Log 0 2 3 4 2 3 4 ESC 5

More information

AL-MX200 Series

AL-MX200 Series PostScript Level3 Compatible NPD4760-00 TC Seiko Epson Corporation Seiko Epson Corporation ( ) Seiko Epson Corporation Seiko Epson Corporation Epson Seiko Epson Corporation Apple Bonjour ColorSync Macintosh

More information

ebook10-5

ebook10-5 Oracle 7.x RDBMS 5 Oracle S Y S S Y S T E M O r a c l e 5.1 O r a c l e R D B M S O r a c l e O r a c l e 5.2 SYS SYSTEM S Y S S Y S T E M O r a c l e S Y S V $ D B A C O N N E C T R E S O U R C E S Y

More information

预备知识 控制文件相关 scn v$database. checkpoint_change# v$datafile. checkpoint_change# 点击输入文字 数据文件相关 scn v$datafile_header.checkpoint_change# 数据库干净判断 v$datafil

预备知识 控制文件相关 scn v$database. checkpoint_change# v$datafile. checkpoint_change# 点击输入文字 数据文件相关 scn v$datafile_header.checkpoint_change# 数据库干净判断 v$datafil Oracle 数据库非常规恢复之道 程飞 网名 : 惜分飞 QQ 号 :107644445 邮箱 :dba@xifenfei.com 技术 BLOG:www.xifenfie.com 预备知识 控制文件相关 scn v$database. checkpoint_change# v$datafile. checkpoint_change# 点击输入文字 数据文件相关 scn v$datafile_header.checkpoint_change#

More information

Guide to Install SATA Hard Disks

Guide to Install SATA Hard Disks SATA RAID 1. SATA. 2 1.1 SATA. 2 1.2 SATA 2 2. RAID (RAID 0 / RAID 1 / JBOD).. 4 2.1 RAID. 4 2.2 RAID 5 2.3 RAID 0 6 2.4 RAID 1.. 10 2.5 JBOD.. 16 3. Windows 2000 / Windows XP 20 1. SATA 1.1 SATA Serial

More information

els0xu_zh_nf_v8.book Page Wednesday, June, 009 9:5 AM ELS-0/0C.8

els0xu_zh_nf_v8.book Page Wednesday, June, 009 9:5 AM ELS-0/0C.8 els0xu_zh_nf_v8.book Page Wednesday, June, 009 9:5 AM ELS-0/0C.8 Yamaha ELS-0/0C..8 LCD ELS-0/0C v. typeu LCD ELS-0/0C typeu / -6 / [SEARCH] / - ZH ELS-0/0C.8 els0xu_zh_nf_v8.book Page Wednesday, June,

More information

untitled

untitled 2006 6 Geoframe Geoframe 4.0.3 Geoframe 1.2 1 Project Manager Project Management Create a new project Create a new project ( ) OK storage setting OK (Create charisma project extension) NO OK 2 Edit project

More information

C10_ppt.PDF

C10_ppt.PDF C11-101 101 ( ) 1 15 2000 20% 20MB 170000 19 7% 3% 14% 32% 44% Disaster Recovery Journal ( ) UPS - (Fault Tolerance Capability) (Avoid Single point of failure) (High Availability) (RAID) (Cluster) (Backup)

More information

2 2 3 DLight CPU I/O DLight Oracle Solaris (DTrace) C/C++ Solaris DLight DTrace DLight DLight DLight C C++ Fortran CPU I/O DLight AM

2 2 3 DLight CPU I/O DLight Oracle Solaris (DTrace) C/C++ Solaris DLight DTrace DLight DLight DLight C C++ Fortran CPU I/O DLight AM Oracle Solaris Studio 12.2 DLight 2010 9 2 2 3 DLight 3 3 6 13 CPU 16 18 21 I/O DLight Oracle Solaris (DTrace) C/C++ Solaris DLight DTrace DLight DLight DLight C C++ Fortran CPU I/O DLight AMP Apache MySQL

More information

AL-M200 Series

AL-M200 Series NPD4754-00 TC ( ) Windows 7 1. [Start ( )] [Control Panel ()] [Network and Internet ( )] 2. [Network and Sharing Center ( )] 3. [Change adapter settings ( )] 4. 3 Windows XP 1. [Start ( )] [Control Panel

More information

User ID 150 Password - User ID 150 Password Mon- Cam-- Invalid Terminal Mode No User Terminal Mode No User Mon- Cam-- 2

User ID 150 Password - User ID 150 Password Mon- Cam-- Invalid Terminal Mode No User Terminal Mode No User Mon- Cam-- 2 Terminal Mode No User User ID 150 Password - User ID 150 Password Mon- Cam-- Invalid Terminal Mode No User Terminal Mode No User Mon- Cam-- 2 Mon1 Cam-- Mon- Cam-- Prohibited M04 Mon1 Cam03 Mon1 Cam03

More information

C/C++ - 文件IO

C/C++ - 文件IO C/C++ IO Table of contents 1. 2. 3. 4. 1 C ASCII ASCII ASCII 2 10000 00100111 00010000 31H, 30H, 30H, 30H, 30H 1, 0, 0, 0, 0 ASCII 3 4 5 UNIX ANSI C 5 FILE FILE 6 stdio.h typedef struct { int level ;

More information

Oracle数据库应用技术4 [兼容模式]

Oracle数据库应用技术4 [兼容模式] Oracle 数 据 库 应 用 技 术 河 南 中 医 学 院 信 息 技 术 学 院 王 哲 第 四 章 管 理 表 空 间 主 讲 内 容 : 表 空 间 及 管 理 第 2 页 主 要 内 容 一. 表 空 间 基 础 知 识 二. 管 理 表 空 间 三. 其 他 表 空 间 第 3 页 一. 表 空 间 基 础 知 识 在 创 建 数 据 库 时,Oracle 会 自 动 地 创 建 多

More information

K7VT2_QIG_v3

K7VT2_QIG_v3 ............ 1 2 3 4 5 [R] : Enter Raid setup utility 6 Press[A]keytocreateRAID RAID Type: JBOD RAID 0 RAID 1: 2 7 RAID 0 Auto Create Manual Create: 2 RAID 0 Block Size: 16K 32K

More information

Serial ATA ( Silicon Image SiI3114)...2 (1) SATA... 2 (2) B I O S S A T A... 3 (3) RAID BIOS RAID... 5 (4) S A T A... 8 (5) S A T A... 10

Serial ATA ( Silicon Image SiI3114)...2 (1) SATA... 2 (2) B I O S S A T A... 3 (3) RAID BIOS RAID... 5 (4) S A T A... 8 (5) S A T A... 10 Serial ATA ( Silicon Image SiI3114)...2 (1) SATA... 2 (2) B I O S S A T A... 3 (3) RAID BIOS RAID... 5 (4) S A T A... 8 (5) S A T A... 10 Ác Åé å Serial ATA ( Silicon Image SiI3114) S A T A (1) SATA (2)

More information

Slide 1

Slide 1 数据库非常规恢复 Lunar www.lunar2013.com http://blog.csdn.net/lunar2000 9-1 以下内容仅限于在非生产环境测试, 不能用于生产环境数据库, 所有 Internal 的方法 (BBED, DUL 等等 ), 请咨询 Oracle Support 部门, 这些方法未经 Oracle Support 建议和许可, 不得使用, 否则后果自负!! 9-2

More information

1 o o o CPU o o o o o SQL Server 2005 o CPU o o o o o SQL Server o Microsoft SQL Server 2005

1 o o o CPU o o o o o SQL Server 2005 o CPU o o o o o SQL Server o Microsoft SQL Server 2005 1 o o o CPU o o o o o SQL Server 2005 o CPU o o o o o SQL Server o Microsoft SQL Server 2005 1 1...3 2...20 3...28 4...41 5 Windows SQL Server...47 Microsoft SQL Server 2005 DBSRV1 Microsoft SQL Server

More information

6-1 Table Column Data Type Row Record 1. DBMS 2. DBMS MySQL Microsoft Access SQL Server Oracle 3. ODBC SQL 1. Structured Query Language 2. IBM

6-1 Table Column Data Type Row Record 1. DBMS 2. DBMS MySQL Microsoft Access SQL Server Oracle 3. ODBC SQL 1. Structured Query Language 2. IBM CHAPTER 6 SQL SQL SQL 6-1 Table Column Data Type Row Record 1. DBMS 2. DBMS MySQL Microsoft Access SQL Server Oracle 3. ODBC SQL 1. Structured Query Language 2. IBM 3. 1986 10 ANSI SQL ANSI X3. 135-1986

More information

Oracle高级复制冲突解决机制的研究

Oracle高级复制冲突解决机制的研究 Oracle dbms_rectifier_diff Oracle : eygle (eygle.com@gmail.com dbms_rectifier_diff Oracle dbms_rectifier_diff : http://www.eygle.com/archives/2005/01/eoadbms_rectifi.html DIFFERENCES Oracle dbms_rectifier_diff.differences

More information

1 SQL Server 2005 SQL Server Microsoft Windows Server 2003NTFS NTFS SQL Server 2000 Randy Dyess DBA SQL Server SQL Server DBA SQL Server SQL Se

1 SQL Server 2005 SQL Server Microsoft Windows Server 2003NTFS NTFS SQL Server 2000 Randy Dyess DBA SQL Server SQL Server DBA SQL Server SQL Se 1 SQL Server 2005 DBA Microsoft SQL Server SQL ServerSQL Server SQL Server SQL Server SQL Server SQL Server 2005 SQL Server 2005 SQL Server 2005 o o o SQL Server 2005 1 SQL Server 2005... 3 2 SQL Server

More information

LSC操作说明

LSC操作说明 1 C H R I S T A L P H A 1-4 LSC 型 Part. No. 102041 A L P H A 2-4 LSC 型 Part. No. 10204 冷 冻 干 燥 机 操 作 说 明 新 研 制 的 LSC-8 控 制 器, 具 备 图 形 显 示 功 能, 能 以 数 据 表 形 式 显 示 参 数, 并 可 选 配 控 制 软 件 LSC-8 1/4 VGA 大 屏 幕

More information

ebook 132-2

ebook 132-2 2 SQL Server 7.0 SQL Server SQL Server 7 SQL Server 7 5 2.1 SQL Server 7 SQL Server 7 SQL Server SQL Server SQL Server 2.1.1 SQL Server Windows NT/2000 Windows 95/98 ( r a n d o m access memory R A M )

More information

RAID RAID 0 RAID 1 RAID 5 RAID * ( -1)* ( /2)* No Yes Yes Yes A. B. BIOS SATA C. RAID BIOS RAID ( ) D. SATA RAID/AHCI ( ) SATA M.2 SSD ( )

RAID RAID 0 RAID 1 RAID 5 RAID * ( -1)* ( /2)* No Yes Yes Yes A. B. BIOS SATA C. RAID BIOS RAID ( ) D. SATA RAID/AHCI ( ) SATA M.2 SSD ( ) RAID RAID 0 RAID 1 RAID 5 RAID 10 2 2 3 4 * (-1)* (/2)* No Yes Yes Yes A. B. BIOS SATA C. RAID BIOS RAID ( ) D. SATA RAID/AHCI ( ) SATA M.2 SSD ( ) ( ) ( ) Windows USB 1 SATA A. SATASATAIntel SATA (SATA3

More information

目錄

目錄 資 訊 素 養 線 上 教 材 單 元 五 資 料 庫 概 論 及 Access 5.1 資 料 庫 概 論 5.1.1 為 什 麼 需 要 資 料 庫? 日 常 生 活 裡 我 們 常 常 需 要 記 錄 一 些 事 物, 以 便 有 朝 一 日 所 記 錄 的 事 物 能 夠 派 得 上 用 場 我 們 能 藉 由 記 錄 每 天 的 生 活 開 銷, 就 可 以 在 每 個 月 的 月 底 知

More information

IBM Rational ClearQuest Client for Eclipse 1/ IBM Rational ClearQuest Client for Ecl

IBM Rational ClearQuest Client for Eclipse   1/ IBM Rational ClearQuest Client for Ecl 1/39 Balaji Krish,, IBM Nam LeIBM 2005 4 15 IBM Rational ClearQuest ClearQuest Eclipse Rational ClearQuest / Eclipse Clien Rational ClearQuest Rational ClearQuest Windows Web Rational ClearQuest Client

More information

Microsoft Word - Sable User's Manual.doc

Microsoft Word - Sable User's Manual.doc SABLE 刻 字 机 使 用 手 册 1 注 意 GCC 星 云 保 留 在 不 事 先 通 知 的 情 况 下, 修 改 该 使 用 手 册 任 何 内 容 的 权 利! 禁 止 任 何 未 经 允 许 的 修 改 复 制 分 发 或 公 布! 关 于 此 手 册 有 任 何 问 题 或 意 见 请 联 系 您 的 当 地 经 销 商 2 目 录 安 全 操 作 注 意 事 项...5 第 一

More information

R D B M S O R D B M S R D B M S / O R D B M S R D B M S O R D B M S 4 O R D B M S R D B M 3. ORACLE Server O R A C L E U N I X Windows NT w w

R D B M S O R D B M S R D B M S / O R D B M S R D B M S O R D B M S 4 O R D B M S R D B M 3. ORACLE Server O R A C L E U N I X Windows NT w w 1 1.1 D B M S To w e r C D 1. 1 968 I B M I M S 2 0 70 Cullinet Software I D M S I M S C O D A S Y L 1971 I D M S containing hierarchy I M S I D M S I M S I B M I M S I D M S 2 2. 18 R D B M S O R D B

More information

Microsoft Word - ORA-04031.doc

Microsoft Word - ORA-04031.doc 如 何 解 决 ORA-04031 错 误 翻 译 :Fenng 文 章 内 容 1. 和 共 享 池 (shared pool) 相 关 的 实 例 参 数 2. 诊 断 ORA-04031 错 误 3. 解 决 ORA-04031 错 误 已 知 的 Oracle BUG 共 享 池 碎 片 o V$SQLAREA 视 图 o X$KSMLRU 视 图 小 的 共 享 池 尺 寸 o 库 高 速

More information

Microsoft Word - MTK平台生产软件使用说明.doc

Microsoft Word - MTK平台生产软件使用说明.doc MTK 1. 1.1 SMT BSN 1.2 1 IMEI 2. 2 2.1 MTK Flash Flash NAND FlashMP3 1 SMT SOFT Flash 2 SOFT MKT USB-RS232 921600 8 2.2 COPY 2.3 USB PCUSB USB 8 USB USB USB-RS232 (USB ) RS232 PCRS232 8 4V2A 2.4 DA File

More information

HY144-D-SRC 固件升级指南

HY144-D-SRC 固件升级指南 HY144-D-SRC Yamaha HY144-D-SRC SRC SRC 7 Yamaha Yamaha Audinate Dante Yamaha Windows Microsoft Corporation Mac Apple Inc. 400-051-7700... 2... 2 Dante Firmware Update Manager... 3 TCP/IP... 4... 6 Failsafe

More information

ICD ICD ICD ICD ICD

ICD ICD ICD ICD ICD MPLAB ICD2 MPLAB ICD2 PIC MPLAB-IDE V6.0 ICD2 usb PC RS232 MPLAB IDE PC PC 2.0 5.5V LED EEDATA MPLAB ICD2 Microchip MPLAB-IDE v6.0 Windows 95/98 Windows NT Windows 2000 www.elc-mcu.com 1 ICD2...4 1.1 ICD2...4

More information

CHN_p000A_Cover.ai

CHN_p000A_Cover.ai NextoDI Co., Ltd. www.nextodi.com 列表........................................................................ 1 3 4 4 6 7 8 9 10 12 14 16 20 01 02 03 04 1 2 3 5 6 4 XCopy Ready B Menu Menu Off Off 05 06

More information

CA-C750К

CA-C750К 1 3 3 4 PC 4 USB 5 5 6 8 9 11 mediasync Manager?...13 mediasync Manager 15 25 38 39 41 41 DRM...44 Image Manager...44 47 49 49 50 50 51 51 51 52 / 52 A-B 53 MP3 53 /FM 54 FM 55 FM 55 BMP56 56 57 57 58

More information

ebook 185-6

ebook 185-6 6 Red Hat Linux DB2 Universal Database 6.1 D B 2 Red Hat D B 2 Control Center D B 2 D B 2 D B 2 6.1 DB2 Universal Database [DB2]6.1 D B 2 O LT P O L A P D B 2 I B M P C We e k D B 2 D B 2 L i n u x Windows

More information

P4i45GL_GV-R50-CN.p65

P4i45GL_GV-R50-CN.p65 1 Main Advanced Security Power Boot Exit System Date System Time Floppy Drives IDE Devices BIOS Version Processor Type Processor Speed Cache Size Microcode Update Total Memory DDR1 DDR2 Dec 18 2003 Thu

More information

KillTest 质量更高 服务更好 学习资料 半年免费更新服务

KillTest 质量更高 服务更好 学习资料   半年免费更新服务 KillTest 质量更高 服务更好 学习资料 http://www.killtest.cn 半年免费更新服务 Exam : 000-544 Title : DB2 9.7 Advanced DBA for LUW Version : DEMO 1 / 10 1. A DBA needs to create a federated database and configure access to join

More information

Microsoft Word - template.doc

Microsoft Word - template.doc HGC efax Service User Guide I. Getting Started Page 1 II. Fax Forward Page 2 4 III. Web Viewing Page 5 7 IV. General Management Page 8 12 V. Help Desk Page 13 VI. Logout Page 13 Page 0 I. Getting Started

More information

ebook 96-16

ebook 96-16 16 13 / ( ) 16-1 SQL*Net/Net8 SQL*Net/Net8 SQL*Net/Net8 16-1 / S Q L SQL*Net V2 N e t 8 S Q L * N e t N e t ( ) 16.1 S Q L O r a c l e S Q L 16 401 ) ( H R _ L I N K create database link p u b l i c (

More information

入學考試網上報名指南

入學考試網上報名指南 入 學 考 試 網 上 報 名 指 南 On-line Application Guide for Admission Examination 16/01/2015 University of Macau Table of Contents Table of Contents... 1 A. 新 申 請 網 上 登 記 帳 戶 /Register for New Account... 2 B. 填

More information

PowerPoint Presentation

PowerPoint Presentation TOEFL Practice Online User Guide Revised September 2009 In This Guide General Tips for Using TOEFL Practice Online Directions for New Users Directions for Returning Users 2 General Tips To use TOEFL Practice

More information

CAUTION RISK OF ELECTRIC SHOCK DO NOT OPEN 2

CAUTION RISK OF ELECTRIC SHOCK DO NOT OPEN 2 WV-CU950/G WV-CU650/G CAUTION RISK OF ELECTRIC SHOCK DO NOT OPEN 2 S3125A 3 4 5 6 7 8 9 #9 $0 #8 $1 $2 $3 r q w e t $4 i u!0 y WV-CU950!1!3!4!7!6!5!8 @0!9 @3 @2 @1!2 o ALARM ACK ALM RESET ALM SUSPEND ALM

More information

Windows RTEMS 1 Danilliu MMI TCP/IP QEMU i386 QEMU ARM POWERPC i386 IPC PC104 uc/os-ii uc/os MMI TCP/IP i386 PORT Linux ecos Linux ecos ecos eco

Windows RTEMS 1 Danilliu MMI TCP/IP QEMU i386 QEMU ARM POWERPC i386 IPC PC104 uc/os-ii uc/os MMI TCP/IP i386 PORT Linux ecos Linux ecos ecos eco Windows RTEMS 1 Danilliu MMI TCP/IP 80486 QEMU i386 QEMU ARM POWERPC i386 IPC PC104 uc/os-ii uc/os MMI TCP/IP i386 PORT Linux ecos Linux ecos ecos ecos Email www.rtems.com RTEMS ecos RTEMS RTEMS Windows

More information

MATLAB 1

MATLAB 1 MATLAB 1 MATLAB 2 MATLAB PCI-1711 / PCI-1712 MATLAB PCI-1711 / PCI-1712 MATLAB The Mathworks......1 1...........2 2.......3 3................4 4. DAQ...............5 4.1. DAQ......5 4.2. DAQ......6 5.

More information

WebSphere Studio Application Developer IBM Portal Toolkit... 2/21 1. WebSphere Portal Portal WebSphere Application Server stopserver.bat -configfile..

WebSphere Studio Application Developer IBM Portal Toolkit... 2/21 1. WebSphere Portal Portal WebSphere Application Server stopserver.bat -configfile.. WebSphere Studio Application Developer IBM Portal Toolkit... 1/21 WebSphere Studio Application Developer IBM Portal Toolkit Portlet Doug Phillips (dougep@us.ibm.com),, IBM Developer Technical Support Center

More information

錄...1 說...2 說 說...5 六 率 POST PAY PREPAY DEPOSIT 更

錄...1 說...2 說 說...5 六 率 POST PAY PREPAY DEPOSIT 更 AX5000 Version 1.0 2006 年 9 錄...1 說...2 說...3...4 說...5 六...6 6.1 率...7 6.2 POST PAY...8 6.3 PREPAY DEPOSIT...9 6.4...10 6.5...11 更...12...12 LCD IC LED Flash 更 兩 RJ11 ( ) DC ON OFF ON 狀 狀 更 OFF 復 狀 說

More information

DR2010.doc

DR2010.doc DR/2010 HACH 11-8-96-2 HACH. DR/2010, / UL E79852 CSA C22.223 LR 58275 VDE GS 1015-92 FCC"A" 15 : AMADOR CORP, HACH. EN50 011/CISPR 11 "B" (EMI)/89/336/EEC/EMC: AMADOR CORP, HACH.. EN50 082-1( )/89/226/EEC

More information

Chapter 2

Chapter 2 2 (Setup) ETAP PowerStation ETAP ETAP PowerStation PowerStation PowerPlot ODBC SQL Server Oracle SQL Server Oracle Windows SQL Server Oracle PowerStation PowerStation PowerStation PowerStation ETAP PowerStation

More information

Tel: Fax: TTP-344M/246M /

Tel: Fax: TTP-344M/246M / TTP-344M/246M / True Type font David Turner, Robert Wilhelm Werner Lemberg The Free Type Project 235 16 8 2 i- TTP-344M/246M...1 1.1...1 1.2...1 1.2.1...1 1.2.2 /...2 1.2.3...2 1.2.4...2 1.3...3 1.4...3

More information

(Load Project) (Save Project) (OffLine Mode) (Help) Intel Hex Motor

(Load Project) (Save Project) (OffLine Mode) (Help) Intel Hex Motor 1 4.1.1.1 (Load) 14 1.1 1 4.1.1.2 (Save) 14 1.1.1 1 4.1.2 (Buffer) 16 1.1.2 1 4.1.3 (Device) 16 1.1.3 1 4.1.3.1 (Select Device) 16 2 4.1.3.2 (Device Info) 16 2.1 2 4.1.3.3 (Adapter) 17 2.1.1 CD-ROM 2 4.1.4

More information

Computer Architecture

Computer Architecture ECE 3120 Computer Systems Assembly Programming Manjeera Jeedigunta http://blogs.cae.tntech.edu/msjeedigun21 Email: msjeedigun21@tntech.edu Tel: 931-372-6181, Prescott Hall 120 Prev: Basic computer concepts

More information

oracle-Ess-05.pdf

oracle-Ess-05.pdf 5 135 1 3 6 O r a c l e 1 3 7 1 3 8 O r a c l e 1 3 9 C O N N E C T R E S O U R C E D B A S Y S O P E R S Y S D B A E X P _ F U L L _ D A T A B A S E 1 4 0 I M P _ F U L L _ D A T A B A S E D E L E T E

More information

Epson

Epson WH / MS CMP0087-00 TC WH/MS EPSON EPSON EXCEED YOUR VISION EXCEED YOUR VISION Seiko Corporation Microsoft and Windows are registered trademarks of Microsoft Corporation. Mac and Mac OS are registered trademarks

More information

KDC-U5049 KDC-U4049 Made for ipod, and Made for iphone mean that an electronic accessory has been designed to connect specifically to ipod, or iphone,

KDC-U5049 KDC-U4049 Made for ipod, and Made for iphone mean that an electronic accessory has been designed to connect specifically to ipod, or iphone, KDC-U5049 KDC-U4049 Made for ipod, and Made for iphone mean that an electronic accessory has been designed to connect specifically to ipod, or iphone, respectively, and has been certified by the developer

More information

(Guangzhou) AIT Co, Ltd V 110V [ ]! 2

(Guangzhou) AIT Co, Ltd V 110V [ ]! 2 (Guangzhou) AIT Co, Ltd 020-84106666 020-84106688 http://wwwlenxcn Xi III Zebra XI III 1 (Guangzhou) AIT Co, Ltd 020-84106666 020-84106688 http://wwwlenxcn 230V 110V [ ]! 2 (Guangzhou) AIT Co, Ltd 020-84106666

More information

untitled

untitled Work Managers 什 Work Managers? WebLogic Server 9.x 行 (thread) 理 thread pool 數量 立 execute queues 來 量 理 thread count, thread priority 參數 理 thread pool 數量? WebLogic Server 9.x 理 行 (thread) (self-tuning) 句

More information

How to Find SHOUG?

How to Find SHOUG? bbed 使用实现 drop index 操作 by SHOUG.XIFENFEI 个人博客地址 :www.xifenfei.com 个人新浪微博 :http://weibo.com/u/1820095585 How to Find SHOUG? bbed 使用实现 drop index 操作 这里个 bbed 的测试是为了实现通过 bbed 来实现删除 index, 该方法有两个用途 : 1. 数据库因为

More information

PowerPoint Presentation

PowerPoint Presentation 数 据 库 培 训 项 目 研 究 Oracle 索 引 探 究 B*tree 索 引 与 位 图 索 引 的 特 点 作 者 : 赵 超 2008 年 12 月 18 日 实 验 环 境 Windows-server2003 内 存 :2G Oracle 10.2.0 ORACLE_SID=orcl 索 引 类 型 B*tree 索 引 ( 默 认 方 式 ) 位 图 索 引 (bitmap) 反

More information

Bus Hound 5

Bus Hound 5 Bus Hound 5.0 ( 1.0) 21IC 2007 7 BusHound perisoft PC hound Bus Hound 6.0 5.0 5.0 Bus Hound, IDE SCSI USB 1394 DVD Windows9X,WindowsMe,NT4.0,2000,2003,XP XP IRP Html ZIP SCSI sense USB Bus Hound 1 Bus

More information

Hitachi Vantara Hitachi Vantara Hitachi, Ltd. Hitachi Vantara IT OT Go Go

Hitachi Vantara Hitachi Vantara Hitachi, Ltd. Hitachi Vantara IT OT   Go Go Hitachi, Ltd. IT OT https://www.hitachivantara.com/zh-tw/home.html Go Go www.sysage.com.tw 150 Go Go www.sysage.com.tw Go Go www.sysage.com.tw 151 152 Go Go www.sysage.com.tw VSP G130 VSP G (DAS) VSP G130

More information

CDMA扫频仪测试说明

CDMA扫频仪测试说明 PCTEL CDMA 扫 频 仪 测 试 指 导 书 珠 海 世 纪 鼎 利 通 信 科 技 股 份 有 限 公 司 Copyright Dingli Commnunications Inc.,All rights reserved 版 权 所 有, 侵 权 必 究 1 目 录 一 PCTEL CDMA 扫 频 仪 介 绍... 3 二 测 试 前 的 准 备 工 作 ( 扫 频 仪 硬 件 连 接

More information

支付宝2011年 IT资产与费用预算

支付宝2011年 IT资产与费用预算 OceanBase 支 持 ACID 的 可 扩 展 关 系 数 据 库 qushan@alipay.com 2013 年 04 月 关 系 数 据 库 发 展 1970-72:E.F.Codd 数 据 库 关 系 模 式 20 世 纨 80 年 代 第 一 个 商 业 数 据 库 Oracle V2 SQL 成 为 数 据 库 行 业 标 准 可 扩 展 性 Mainframe: 小 型 机 =>

More information

6-7 6-8 6-9 Process Data flow Data store External entity 6-10 Context diagram Level 0 diagram Level 1 diagram Level 2 diagram 6-11 6-12

6-7 6-8 6-9 Process Data flow Data store External entity 6-10 Context diagram Level 0 diagram Level 1 diagram Level 2 diagram 6-11 6-12 6-1 6-2 6-3 6-4 6-5 6-6 6-7 6-8 6-9 Process Data flow Data store External entity 6-10 Context diagram Level 0 diagram Level 1 diagram Level 2 diagram 6-11 6-12 6-13 6-14 6-15 6-16 6-17 6-18 6-19 6-20 6-21

More information

Microsoft Word - SupplyIT manual 3_cn_david.doc

Microsoft Word - SupplyIT manual 3_cn_david.doc MR PRICE Supply IT Lynette Rajiah 1 3 2 4 3 5 4 7 4.1 8 4.2 8 4.3 8 5 9 6 10 6.1 16 6.2 17 6.3 18 7 21 7.1 24 7.2 25 7.3 26 7.4 27 7.5 28 7.6 29 7.7 30 7.8 31 7.9 32 7.10 32 7.11 33 7.12 34 1 7.13 35 7.14

More information

HP LJ 4000 UG - ZHTW

HP LJ 4000 UG - ZHTW HP LaserJet 4000 4000 T 4000 N 及 4000 TN 雷 射 印 表 機 使 用 者 手 冊 版 權 所 有 惠 普 公 司 (Hewlett-Packard Company)1997 年 版 權 保 留 除 版 權 法 允 許 的 範 圍 之 外, 未 經 事 先 書 面 許 可, 不 得 複 製 修 改 或 翻 譯 本 手 冊 出 版 號 碼 C4118-90915

More information

ebook 132-6

ebook 132-6 6 SQL Server Windows NT Windows 2000 6.1 Enterprise Manager SQL Server Enterprise Manager( ) (Microsoft Management C o n s o l e M M C ) Enterprise Manager SQL Server Enterprise Manager 6.1.1 Enterprise

More information

WARNING RISK OF ELECTRIC SHOCK DO NOT OPEN AVIS RISQUE DE CHOC ELECTRIQUE NE PAS OUVRIR S35A Ct-

WARNING RISK OF ELECTRIC SHOCK DO NOT OPEN AVIS RISQUE DE CHOC ELECTRIQUE NE PAS OUVRIR S35A Ct- CR-B8 Ct WARNING RISK OF ELECTRIC SHOCK DO NOT OPEN AVIS RISQUE DE CHOC ELECTRIQUE NE PAS OUVRIR S35A...... Ct- Ct-3 Ct-4 3 Ct-5 Ct-6 Ct-7 3 4 5 6 7 8 9 J K L A B C D E F G H I M N O P Q R S T U J K L

More information

1

1 SDT Uclinux SDT.alf.c 44blib.alf 44blib.c jtag ADS.alf.c make menuconfig make dep make clean make lib_only make user_only make romfs make image make uclinux ext2 cash lcd frambuffer 1 armsys-c uclinux

More information

RunPC2_.doc

RunPC2_.doc PowerBuilder 8 (5) PowerBuilder Client/Server Jaguar Server Jaguar Server Connection Cache Thin Client Internet Connection Pooling EAServer Connection Cache Connection Cache Connection Cache Connection

More information

C/C++ - 字符输入输出和字符确认

C/C++ - 字符输入输出和字符确认 C/C++ Table of contents 1. 2. getchar() putchar() 3. (Buffer) 4. 5. 6. 7. 8. 1 2 3 1 // pseudo code 2 read a character 3 while there is more input 4 increment character count 5 if a line has been read,

More information

Simulator By SunLingxi 2003

Simulator By SunLingxi 2003 Simulator By SunLingxi sunlingxi@sina.com 2003 windows 2000 Tornado ping ping 1. Tornado Full Simulator...3 2....3 3. ping...6 4. Tornado Simulator BSP...6 5. VxWorks simpc...7 6. simulator...7 7. simulator

More information

untitled

untitled OO 1 SQL Server 2000 2 SQL Server 2000 3 SQL Server 2000 DDL 1 2 3 DML 1 INSERT 2 DELETE 3 UPDATE SELECT DCL 1 SQL Server 2 3 GRANT REVOKE 1 2 1 2 3 4 5 6 1 SQL Server 2000 SQL Server SQL / Microsoft SQL

More information

2 : ; :

2 : ; : 4 CH 1 2 : ; : 1 2 2 3 3 4 4 5 5 6 1 6 2 8 3 11 6 13 1 13 2 14 14 1 15 2 16 3 17 4 18 5 22 6 23 7 24 7 CF 32 8 46 9 : 80GB HD 48 3 3 1 : 4 / / 4 9 2 CHANNEL 1 : 1 3 CHANNEL 2 : 2 4 CHANNEL 3 : 3 5 CHANNEL

More information

穨control.PDF

穨control.PDF TCP congestion control yhmiu Outline Congestion control algorithms Purpose of RFC2581 Purpose of RFC2582 TCP SS-DR 1998 TCP Extensions RFC1072 1988 SACK RFC2018 1996 FACK 1996 Rate-Halving 1997 OldTahoe

More information

ebook140-8

ebook140-8 8 Microsoft VPN Windows NT 4 V P N Windows 98 Client 7 Vintage Air V P N 7 Wi n d o w s NT V P N 7 VPN ( ) 7 Novell NetWare VPN 8.1 PPTP NT4 VPN Q 154091 M i c r o s o f t Windows NT RAS [ ] Windows NT4

More information

Microsoft Word - OPIGIMAC 譯本.doc

Microsoft Word - OPIGIMAC 譯本.doc OPISYSTEMS OPIGIMAC 系 統 使 用 說 明 使 用 者 手 冊 OPI 版 本 7.0.X 140705 翻 譯 版 本 V1.0 Table of Contents 頁 數 1. 簡 介 3 2. 系 統 需 求 4 3. 安 裝 4 4. 開 始 OPIGIMAC 5 5. 功 能 列 7 6. 功 能 圖 示 鍵 10 7. 重 點 操 作 說 明 13 7-1. 設 定

More information

Ác Åé å Serial ATA ( Sil3132) S A T A (1) SATA (2) BIOS SATA (3)* RAID BIOS RAID (4) SATA (5) SATA (a) S A T A ( S A T A R A I D ) (b) (c) Windows XP

Ác Åé å Serial ATA ( Sil3132) S A T A (1) SATA (2) BIOS SATA (3)* RAID BIOS RAID (4) SATA (5) SATA (a) S A T A ( S A T A R A I D ) (b) (c) Windows XP Serial ATA ( Sil3132)...2 (1) SATA... 2 (2) B I O S S A T A... 3 (3) RAID BIOS RAID... 6 (4) S A T A... 10 (5) S A T A... 12 Ác Åé å Serial ATA ( Sil3132) S A T A (1) SATA (2) BIOS SATA (3)* RAID BIOS

More information

untitled

untitled http://idc.hust.edu.cn/~rxli/ 1.1 1.2 1.3 1.4 1.5 1.6 2 1.1 1.1.1 1.1.2 1.1.3 3 1.1.1 Data (0005794, 601,, 1, 1948.03.26, 01) (,,,,,) 4 1.1.1 Database DB 5 1.1.1 (DBMS) DDL ( Create, Drop, Alter) DML(

More information

员工签到录

员工签到录 Archivist 2002 Eletech Enterprise Co., Ltd. All Rights Reserved. 1-1 ELETECH VOICE SYSTEMS INC 2 / 2 VLR, 1-1-1 VP894AS-M11 1. VP894AS-M11 1 2. Y 4 3. RJII 4 4. 2-PIN 1 5. VLR 1 2 3 4 ELETECH VOICE SYSTEMS

More information

GoFlex Home UG Book.book

GoFlex Home UG Book.book FreeAgent GoFlex Home 用 户 指 南 FreeAgent GoFlex Home 用 户 指 南 2011 Seagate Technology LLC. 保 留 所 有 权 利 Seagate Seagate Technology Wave 徽 标 及 FreeAgent 是 Seagate Technology LLC 或 其 某 个 子 公 司 的 商 标 或 注 册 商

More information

Chn 116 Neh.d.01.nis

Chn 116 Neh.d.01.nis 31 尼 希 米 书 尼 希 米 的 祷 告 以 下 是 哈 迦 利 亚 的 儿 子 尼 希 米 所 1 说 的 话 亚 达 薛 西 王 朝 二 十 年 基 斯 流 月 *, 我 住 在 京 城 书 珊 城 里 2 我 的 兄 弟 哈 拿 尼 和 其 他 一 些 人 从 犹 大 来 到 书 珊 城 我 向 他 们 打 听 那 些 劫 后 幸 存 的 犹 太 人 家 族 和 耶 路 撒 冷 的 情 形

More information

SQL Server SQL Server SQL Mail Windows NT

SQL Server SQL Server SQL Mail Windows NT ... 3 11 SQL Server... 4 11.1... 7 11.2... 9 11.3... 11 11.4... 30 11.5 SQL Server... 30 11.6... 31 11.7... 32 12 SQL Mail... 33 12.1Windows NT... 33 12.2SQL Mail... 34 12.3SQL Mail... 34 12.4 Microsoft

More information

Important Notice SUNPLUS TECHNOLOGY CO. reserves the right to change this documentation without prior notice. Information provided by SUNPLUS TECHNOLO

Important Notice SUNPLUS TECHNOLOGY CO. reserves the right to change this documentation without prior notice. Information provided by SUNPLUS TECHNOLO Car DVD New GUI IR Flow User Manual V0.1 Jan 25, 2008 19, Innovation First Road Science Park Hsin-Chu Taiwan 300 R.O.C. Tel: 886-3-578-6005 Fax: 886-3-578-4418 Web: www.sunplus.com Important Notice SUNPLUS

More information

Microsoft Word - 3D手册2.doc

Microsoft Word - 3D手册2.doc 第 一 章 BLOCK 前 处 理 本 章 纲 要 : 1. BLOCK 前 处 理 1.1. 创 建 新 作 业 1.2. 设 定 模 拟 控 制 参 数 1.3. 输 入 对 象 数 据 1.4. 视 图 操 作 1.5. 选 择 点 1.6. 其 他 显 示 窗 口 图 标 钮 1.7. 保 存 作 业 1.8. 退 出 DEFORMTM3D 1 1. BLOCK 前 处 理 1.1. 创 建

More information

ebook140-9

ebook140-9 9 VPN VPN Novell BorderManager Windows NT PPTP V P N L A V P N V N P I n t e r n e t V P N 9.1 V P N Windows 98 Windows PPTP VPN Novell BorderManager T M I P s e c Wi n d o w s I n t e r n e t I S P I

More information

IP505SM_manual_cn.doc

IP505SM_manual_cn.doc IP505SM 1 Introduction 1...4...4...4...5 LAN...5...5...6...6...7 LED...7...7 2...9...9...9 3...11...11...12...12...12...14...18 LAN...19 DHCP...20...21 4 PC...22...22 Windows...22 TCP/IP -...22 TCP/IP

More information

RAID RAID 0 RAID 1 RAID 5 RAID * (-1)* (/ 2)* No Yes Yes Yes SATA A. B. BIOS SATA C. RAID BIOS RAID ( ) D. RAID/AHCI ( ) S ATA S S D ( ) (

RAID RAID 0 RAID 1 RAID 5 RAID * (-1)* (/ 2)* No Yes Yes Yes SATA A. B. BIOS SATA C. RAID BIOS RAID ( ) D. RAID/AHCI ( ) S ATA S S D ( ) ( SATA... 2 RAID/AHCI... 16 Intel Optane... 19 Intel Virtual RAID on CPU (Intel VROC)... 21 RAID RAID 0 RAID 1 RAID 5 RAID 10 2 2 3 4 * (-1)* (/ 2)* No Yes Yes Yes SATA A. B. BIOS SATA C. RAID BIOS RAID

More information

1.ai

1.ai HDMI camera ARTRAY CO,. LTD Introduction Thank you for purchasing the ARTCAM HDMI camera series. This manual shows the direction how to use the viewer software. Please refer other instructions or contact

More information

PowerPoint 演示文稿

PowerPoint 演示文稿 Hadoop 生 态 技 术 在 阿 里 全 网 商 品 搜 索 实 战 阿 里 巴 巴 - 王 峰 自 我 介 绍 真 名 : 王 峰 淘 宝 花 名 : 莫 问 微 博 : 淘 莫 问 2006 年 硕 士 毕 业 后 加 入 阿 里 巴 巴 集 团 淘 及 搜 索 事 业 部 ( 高 级 技 术 与 家 ) 目 前 负 责 搜 索 离 线 系 统 团 队 技 术 方 向 : 分 布 式 计 算

More information

epub83-1

epub83-1 C++Builder 1 C + + B u i l d e r C + + B u i l d e r C + + B u i l d e r C + + B u i l d e r 1.1 1.1.1 1-1 1. 1-1 1 2. 1-1 2 A c c e s s P a r a d o x Visual FoxPro 3. / C / S 2 C + + B u i l d e r / C

More information

Logitech Wireless Combo MK45 English

Logitech Wireless Combo MK45 English Logitech Wireless Combo MK45 Setup Guide Logitech Wireless Combo MK45 English................................................................................... 7..........................................

More information

Sun Storage Common Array Manager 阵列管理指南,版本 6.9.0

Sun Storage Common Array Manager  阵列管理指南,版本 6.9.0 Sun Storage Common Array Manager 阵 列 管 理 指 南, 版 本 6.9.0 文 件 号 码 :E27519-01 2012 年 2 月 版 权 所 有 2007, 2011, Oracle 和 / 或 其 附 属 公 司 保 留 所 有 权 利 本 软 件 和 相 关 文 档 是 根 据 许 可 证 协 议 提 供 的, 该 许 可 证 协 议 中 规 定 了 关

More information

untitled

untitled ArcSDE ESRI ( ) High availability Backup & recovery Clustering Replication Mirroring Standby servers ArcSDE % 95% 99.9% 99.99% 99.999% 99.9999% 18.25 / 8.7 / 52.5 / 5.25 / 31.8 / Spatial Geodatabase

More information

Panasonic ( ) : : Microsoft Windows / Pentium / Intel : ( PCC ) PCC Panasonic Communications Co., Ltd

Panasonic ( ) : : Microsoft Windows / Pentium / Intel : ( PCC ) PCC Panasonic Communications Co., Ltd : KX-FLM553CN Panasonic ( ) : : Microsoft Windows / Pentium / Intel : ( PCC ) PCC Panasonic Communications Co., Ltd. 2002 2002 2 B. C. 1. D. 2. 3. 4. E. F. 5. 14. / 6. 15. 7. : 8. 9. 10. : 11. : 12. 13.

More information