《三思笔记》--rman

进入rman,我自己本地就一个实例,那么进入rman有两种方式

[oracle@cindy ~]$ rman target /Recovery Manager: Release 11.2.0.3.0 - Production on Sat Aug 30 04:55:59 2014Copyright (c) 1982, 2011, Oracle and/or its affiliates.  All rights reserved.connected to target database: ORA11G (DBID=4252637343)RMAN> exitRecovery Manager complete.

这种等价于下面

[oracle@cindy ~]$ rmanRecovery Manager: Release 11.2.0.3.0 - Production on Sat Aug 30 04:57:03 2014Copyright (c) 1982, 2011, Oracle and/or its affiliates.  All rights reserved.RMAN> connect target /connected to target database: ORA11G (DBID=4252637343)

如果想暂时退出rman进入操作系统,则如下

RMAN> host;[oracle@cindy ~]$ exit
exit
host command completeRMAN> 

需要批处理一些命令的时候,可以将命令放在run{}中,保存为一个脚本,直接调用

-------------------------------------------------华丽的分割线------------------------上面是简单的操作方式----------------------------------------------

下面开始介绍备份的初级演练

1、整库的备份

只需要一条命令,可以同format参数来定义备份片段的路径(绝对路径)

建一个文件夹用来放备份的内容

RMAN> host;[oracle@cindy ~]$ pwd
/u01/oracle
[oracle@cindy ~]$ rmdir rman_test
[oracle@cindy ~]$ ls
app  autorman  database  Desktop  ldr_case1.ctl  ldr_case1.log  p10404530_112030_Linux-x86-64_1of7.zip  p10404530_112030_Linux-x86-64_2of7.zip  rmanjiaoben
[oracle@cindy ~]$ mkdir rman_test
[oracle@cindy ~]$ exit
exit
host command completeRMAN> backup database format '/u01/oracle/rman_test/bak_%U';Starting backup at 30-AUG-14
using channel ORA_DISK_1
channel ORA_DISK_1: starting full datafile backup set
channel ORA_DISK_1: specifying datafile(s) in backup set
input datafile file number=00001 name=/u02/oradata/ora11g/system01.dbf
input datafile file number=00002 name=/u02/oradata/ora11g/sysaux01.dbf
input datafile file number=00005 name=/u02/oradata/ora11g/example01.dbf
input datafile file number=00003 name=/u02/oradata/ora11g/undotbs01.dbf
input datafile file number=00004 name=/u02/oradata/ora11g/users01.dbf
channel ORA_DISK_1: starting piece 1 at 30-AUG-14
channel ORA_DISK_1: finished piece 1 at 30-AUG-14
piece handle=/u01/oracle/rman_test/bak_15ph7hli_1_1 tag=TAG20140830T051426 comment=NONE
channel ORA_DISK_1: backup set complete, elapsed time: 00:03:48
Finished backup at 30-AUG-14Starting Control File and SPFILE Autobackup at 30-AUG-14
piece handle=/u02/rmanbak/c-4252637343-20140830-01 comment=NONE
Finished Control File and SPFILE Autobackup at 30-AUG-14

查看创建的全库备份,用list命令查看

RMAN> list backup of database;List of Backup Sets
===================
BS Key  Type LV Size       Device Type Elapsed Time Completion Time
------- ---- -- ---------- ----------- ------------ ---------------
36      Full    1.21G      DISK        00:03:43     30-AUG-14      BP Key: 36   Status: AVAILABLE  Compressed: NO  Tag: TAG20140830T051426Piece Name: /u01/oracle/rman_test/bak_15ph7hli_1_1List of Datafiles in backup set 36File LV Type Ckp SCN    Ckp Time  Name---- -- ---- ---------- --------- ----1       Full 1497515    30-AUG-14 /u02/oradata/ora11g/system01.dbf2       Full 1497515    30-AUG-14 /u02/oradata/ora11g/sysaux01.dbf3       Full 1497515    30-AUG-14 /u02/oradata/ora11g/undotbs01.dbf4       Full 1497515    30-AUG-14 /u02/oradata/ora11g/users01.dbf5       Full 1497515    30-AUG-14 /u02/oradata/ora11g/example01.dbfRMAN> 

明显通过看piece name即可看到备份集所在的位置

2、表空间的备份

(备份USERS表空间)
建一个目录用来放表空间备份的东西,大致步骤同上

RMAN> host;[oracle@cindy ~]$ cd /u01/oracle/rman_test
[oracle@cindy rman_test]$ ls
bak_15ph7hli_1_1
[oracle@cindy rman_test]$ mkdir rman_tablespace
[oracle@cindy rman_test]$ ls
bak_15ph7hli_1_1  rman_tablespace
[oracle@cindy rman_test]$ exit
exit
host command completeRMAN> backup tablespace users format '/u01/oracle/rman_test/rman_tablespace/tbls_%U';Starting backup at 30-AUG-14
using channel ORA_DISK_1
channel ORA_DISK_1: starting full datafile backup set
channel ORA_DISK_1: specifying datafile(s) in backup set
input datafile file number=00004 name=/u02/oradata/ora11g/users01.dbf
channel ORA_DISK_1: starting piece 1 at 30-AUG-14
channel ORA_DISK_1: finished piece 1 at 30-AUG-14
piece handle=/u01/oracle/rman_test/rman_tablespace/tbls_17ph7irl_1_1 tag=TAG20140830T053445 comment=NONE
channel ORA_DISK_1: backup set complete, elapsed time: 00:00:07
Finished backup at 30-AUG-14Starting Control File and SPFILE Autobackup at 30-AUG-14
piece handle=/u02/rmanbak/c-4252637343-20140830-02 comment=NONE
Finished Control File and SPFILE Autobackup at 30-AUG-14RMAN> list backup of tablespace users;List of Backup Sets
===================
BS Key  Type LV Size       Device Type Elapsed Time Completion Time
------- ---- -- ---------- ----------- ------------ ---------------
36      Full    1.21G      DISK        00:03:43     30-AUG-14      BP Key: 36   Status: AVAILABLE  Compressed: NO  Tag: TAG20140830T051426Piece Name: /u01/oracle/rman_test/bak_15ph7hli_1_1List of Datafiles in backup set 36File LV Type Ckp SCN    Ckp Time  Name---- -- ---- ---------- --------- ----4       Full 1497515    30-AUG-14 /u02/oradata/ora11g/users01.dbfBS Key  Type LV Size       Device Type Elapsed Time Completion Time
------- ---- -- ---------- ----------- ------------ ---------------
38      Full    24.87M     DISK        00:00:06     30-AUG-14      BP Key: 38   Status: AVAILABLE  Compressed: NO  Tag: TAG20140830T053445Piece Name: /u01/oracle/rman_test/rman_tablespace/tbls_17ph7irl_1_1List of Datafiles in backup set 38File LV Type Ckp SCN    Ckp Time  Name---- -- ---- ---------- --------- ----4       Full 1498329    30-AUG-14 /u02/oradata/ora11g/users01.dbf

显然,可以看到,USERS表空间存在两份备份,

一份目录是

/u01/oracle/rman_test/bak_15ph7hli_1_1

一份目录是

/u01/oracle/rman_test/rman_tablespace/tbls_17ph7irl_1_1

是因为在前面执行过全库备份,所以这里,可以删除一份备份,命令如下

RMAN> delete backupset 38;using channel ORA_DISK_1List of Backup Pieces
BP Key  BS Key  Pc# Cp# Status      Device Type Piece Name
------- ------- --- --- ----------- ----------- ----------
38      38      1   1   AVAILABLE   DISK        /u01/oracle/rman_test/rman_tablespace/tbls_17ph7irl_1_1Do you really want to delete the above objects (enter YES or NO)? Do you really want to delete the above objects (enter YES or NO)? Y
deleted backup piece
backup piece handle=/u01/oracle/rman_test/rman_tablespace/tbls_17ph7irl_1_1 RECID=38 STAMP=856935285
Deleted 1 objects

3、数据文件的备份

有两种方式指定数据文件的名称,即数据文件的详细路径和file_id,这两个信息可以从数据字典DBA_DATA_FILES中查到,也可以通过观察,在前面的全库备份中,已经显示了数据文件名和序号

备份users表空间的数据文件

基本操作也同上

RMAN> host;[oracle@cindy ~]$ cd /u01/oracle/rman_test
[oracle@cindy rman_test]$ ls
bak_15ph7hli_1_1  rman_tablespace
[oracle@cindy rman_test]$ mkdir rman_datafile
[oracle@cindy rman_test]$ ls
bak_15ph7hli_1_1  rman_datafile  rman_tablespace
[oracle@cindy rman_test]$ exit
exit
host command complete
RMAN> backup datafile 4 format'/u01/oracle/rman_test/rman_datafile/bak_%U';Starting backup at 30-AUG-14
using channel ORA_DISK_1
channel ORA_DISK_1: starting full datafile backup set
channel ORA_DISK_1: specifying datafile(s) in backup set
input datafile file number=00004 name=/u02/oradata/ora11g/users01.dbf
channel ORA_DISK_1: starting piece 1 at 30-AUG-14
channel ORA_DISK_1: finished piece 1 at 30-AUG-14
piece handle=/u01/oracle/rman_test/rman_datafile/bak_1aph7k6t_1_1 tag=TAG20140830T055749 comment=NONE
channel ORA_DISK_1: backup set complete, elapsed time: 00:00:07
Finished backup at 30-AUG-14Starting Control File and SPFILE Autobackup at 30-AUG-14
piece handle=/u02/rmanbak/c-4252637343-20140830-03 comment=NONE
Finished Control File and SPFILE Autobackup at 30-AUG-14

这里的4可以替换成'/u02/oradata/ora11g/users01.dbf'

RMAN> list backup of datafile 4;List of Backup Sets
===================
BS Key  Type LV Size       Device Type Elapsed Time Completion Time
------- ---- -- ---------- ----------- ------------ ---------------
36      Full    1.21G      DISK        00:03:43     30-AUG-14      BP Key: 36   Status: AVAILABLE  Compressed: NO  Tag: TAG20140830T051426Piece Name: /u01/oracle/rman_test/bak_15ph7hli_1_1List of Datafiles in backup set 36File LV Type Ckp SCN    Ckp Time  Name---- -- ---- ---------- --------- ----4       Full 1497515    30-AUG-14 /u02/oradata/ora11g/users01.dbfBS Key  Type LV Size       Device Type Elapsed Time Completion Time
------- ---- -- ---------- ----------- ------------ ---------------
40      Full    24.87M     DISK        00:00:06     30-AUG-14      BP Key: 40   Status: AVAILABLE  Compressed: NO  Tag: TAG20140830T055749Piece Name: /u01/oracle/rman_test/rman_datafile/bak_1aph7k6t_1_1List of Datafiles in backup set 40File LV Type Ckp SCN    Ckp Time  Name---- -- ---- ---------- --------- ----4       Full 1499208    30-AUG-14 /u02/oradata/ora11g/users01.dbf

4、控制文件的备份

操作步骤即命令也同上类似

RMAN> host;[oracle@cindy ~]$ cd /u01/oracle/rman_test
[oracle@cindy rman_test]$ ls
bak_15ph7hli_1_1  rman_datafile  rman_tablespace
[oracle@cindy rman_test]$ mkdir rman_ctl
[oracle@cindy rman_test]$ ls
bak_15ph7hli_1_1  rman_ctl  rman_datafile  rman_tablespace
[oracle@cindy rman_test]$ exit
exit
host command complete
RMAN> backup current controlfile format '/u01/oracle/rman_test/rman_ctl/bak_%U';Starting backup at 30-AUG-14
using channel ORA_DISK_1
channel ORA_DISK_1: starting full datafile backup set
channel ORA_DISK_1: specifying datafile(s) in backup set
including current control file in backup set
channel ORA_DISK_1: starting piece 1 at 30-AUG-14
channel ORA_DISK_1: finished piece 1 at 30-AUG-14
piece handle=/u01/oracle/rman_test/rman_ctl/bak_1dph7m0t_1_1 tag=TAG20140830T062845 comment=NONE
channel ORA_DISK_1: backup set complete, elapsed time: 00:00:03
Finished backup at 30-AUG-14Starting Control File and SPFILE Autobackup at 30-AUG-14
piece handle=/u02/rmanbak/c-4252637343-20140830-04 comment=NONE
Finished Control File and SPFILE Autobackup at 30-AUG-14

在执行backup命令的时候,可以指定include current controlfile子句

例如backuo database include current controlfile;

不仅限于database,执行backup命令备份任何文件时都可以指定include current controlfile子句,甚至是backup current controlfile

RMAN> backup current controlfile include current controlfile format '/u01/oracle/rman_test/rman_ctl/bak_%U';Starting backup at 30-AUG-14
using channel ORA_DISK_1
channel ORA_DISK_1: starting full datafile backup set
channel ORA_DISK_1: specifying datafile(s) in backup set
including current control file in backup set
channel ORA_DISK_1: starting piece 1 at 30-AUG-14
channel ORA_DISK_1: finished piece 1 at 30-AUG-14
piece handle=/u01/oracle/rman_test/rman_ctl/bak_1hph7m9o_1_1 tag=TAG20140830T063328 comment=NONE
channel ORA_DISK_1: backup set complete, elapsed time: 00:00:03
Finished backup at 30-AUG-14Starting Control File and SPFILE Autobackup at 30-AUG-14
piece handle=/u02/rmanbak/c-4252637343-20140830-06 comment=NONE
Finished Control File and SPFILE Autobackup at 30-AUG-14RMAN> host;[oracle@cindy ~]$ cd /u01/oracle/rman_test/rman_ctl
[oracle@cindy rman_ctl]$ ls
bak_1hph7m9o_1_1
[oracle@cindy rman_ctl]$ exit
exit
host command completeRMAN> list backup of controlfile;

5、归档文件的备份

rman中备份归档日志文件有两种方式

(1)利用backup archivelog命令备份

RMAN> host;[oracle@cindy ~]$ cd /u01/oracle/rman_test
[oracle@cindy rman_test]$ ls
bak_15ph7hli_1_1  rman_ctl  rman_datafile  rman_tablespace
[oracle@cindy rman_test]$ mkdir rman_archive
[oracle@cindy rman_test]$ ls
bak_15ph7hli_1_1  rman_archive  rman_ctl  rman_datafile  rman_tablespace
[oracle@cindy rman_test]$ exit
exit
host command complete
RMAN>  backup archivelog all format '/u01/oracle/rman_test/rman_archive/bak_%U';Starting backup at 30-AUG-14
current log archived
using target database control file instead of recovery catalog
allocated channel: ORA_DISK_1
channel ORA_DISK_1: SID=59 device type=DISK
channel ORA_DISK_1: starting archived log backup set
channel ORA_DISK_1: specifying archived log(s) in backup set
input archived log thread=1 sequence=37 RECID=30 STAMP=856917213
input archived log thread=1 sequence=38 RECID=31 STAMP=856939417
input archived log thread=1 sequence=39 RECID=32 STAMP=856939529
input archived log thread=1 sequence=40 RECID=33 STAMP=856939605
input archived log thread=1 sequence=41 RECID=34 STAMP=856939761
channel ORA_DISK_1: starting piece 1 at 30-AUG-14
channel ORA_DISK_1: finished piece 1 at 30-AUG-14
piece handle=/u01/oracle/rman_test/rman_archive/bak_1nph7n7i_1_1 tag=TAG20140830T064921 comment=NONE
channel ORA_DISK_1: backup set complete, elapsed time: 00:00:07
Finished backup at 30-AUG-14Starting Control File and SPFILE Autobackup at 30-AUG-14
piece handle=/u02/rmanbak/c-4252637343-20140830-08 comment=NONE
Finished Control File and SPFILE Autobackup at 30-AUG-14

backup archivelog命令比较灵活,all是指备份当前所有可访问到的归档文件,还可以通过until,scn,time,sequence等参数灵活指定要备份的归档区间

(2)执行backup命令时指定plus archiverlog子句

RMAN> backup current controlfile plus archivelog format '/u01/oracle/rman_test/rman_archive/plus_%U';Starting backup at 30-AUG-14
current log archived
using channel ORA_DISK_1
channel ORA_DISK_1: starting archived log backup set
channel ORA_DISK_1: specifying archived log(s) in backup set
input archived log thread=1 sequence=37 RECID=30 STAMP=856917213
input archived log thread=1 sequence=38 RECID=31 STAMP=856939417
input archived log thread=1 sequence=39 RECID=32 STAMP=856939529
input archived log thread=1 sequence=40 RECID=33 STAMP=856939605
input archived log thread=1 sequence=41 RECID=34 STAMP=856939761
input archived log thread=1 sequence=42 RECID=35 STAMP=856940080
channel ORA_DISK_1: starting piece 1 at 30-AUG-14
channel ORA_DISK_1: finished piece 1 at 30-AUG-14
piece handle=/u01/oracle/rman_test/rman_archive/plus_1pph7nhg_1_1 tag=TAG20140830T065440 comment=NONE
channel ORA_DISK_1: backup set complete, elapsed time: 00:00:03
Finished backup at 30-AUG-14Starting backup at 30-AUG-14
using channel ORA_DISK_1
channel ORA_DISK_1: starting full datafile backup set
channel ORA_DISK_1: specifying datafile(s) in backup set
including current control file in backup set
channel ORA_DISK_1: starting piece 1 at 30-AUG-14
channel ORA_DISK_1: finished piece 1 at 30-AUG-14
piece handle=/u01/oracle/app/oracle/fast_recovery_area/ORA11G/backupset/2014_08_30/o1_mf_ncnnf_TAG20140830T065444_b0215o57_.bkp tag=TAG20140830T065444 comment=NONE
channel ORA_DISK_1: backup set complete, elapsed time: 00:00:03
Finished backup at 30-AUG-14Starting backup at 30-AUG-14
current log archived
using channel ORA_DISK_1
channel ORA_DISK_1: starting archived log backup set
channel ORA_DISK_1: specifying archived log(s) in backup set
input archived log thread=1 sequence=43 RECID=36 STAMP=856940088
channel ORA_DISK_1: starting piece 1 at 30-AUG-14
channel ORA_DISK_1: finished piece 1 at 30-AUG-14
piece handle=/u01/oracle/rman_test/rman_archive/plus_1rph7nho_1_1 tag=TAG20140830T065448 comment=NONE
channel ORA_DISK_1: backup set complete, elapsed time: 00:00:01
Finished backup at 30-AUG-14Starting Control File and SPFILE Autobackup at 30-AUG-14
piece handle=/u02/rmanbak/c-4252637343-20140830-09 comment=NONE
Finished Control File and SPFILE Autobackup at 30-AUG-14

backup......plus archiverlog命令在备份过程中会依次执行下列步骤:

1)运行alter system archive log current 语句对当前redolog进行归档

2)执行backup archivelog all命令备份所有已归档的日志

3)执行backup命令对指定项进行备份

4)再次运行alter system archive log current 语句对当前redolog归档

5)对新生成的尚未备份的归档文件进行备份

完成归档日志文件备份后,需要删除已备份过的归档文件。

命令backup ...............delete all input,会在完成备份后自动删除归档目录中已备份的归档日志

RMAN> list backup of archivelog all;List of Backup Sets
===================
BS Key  Size       Device Type Elapsed Time Completion Time
------- ---------- ----------- ------------ ---------------
50      32.17M     DISK        00:00:06     30-AUG-14      BP Key: 50   Status: AVAILABLE  Compressed: NO  Tag: TAG20140830T064921Piece Name: /u01/oracle/rman_test/rman_archive/bak_1nph7n7i_1_1List of Archived Logs in backup set 50Thrd Seq     Low SCN    Low Time  Next SCN   Next Time---- ------- ---------- --------- ---------- ---------1    37      1484568    30-AUG-14 1484590    30-AUG-141    38      1484590    30-AUG-14 1504942    30-AUG-141    39      1504942    30-AUG-14 1505018    30-AUG-141    40      1505018    30-AUG-14 1505065    30-AUG-141    41      1505065    30-AUG-14 1505155    30-AUG-14BS Key  Size       Device Type Elapsed Time Completion Time
------- ---------- ----------- ------------ ---------------
52      32.33M     DISK        00:00:03     30-AUG-14      BP Key: 52   Status: AVAILABLE  Compressed: NO  Tag: TAG20140830T065440Piece Name: /u01/oracle/rman_test/rman_archive/plus_1pph7nhg_1_1List of Archived Logs in backup set 52Thrd Seq     Low SCN    Low Time  Next SCN   Next Time---- ------- ---------- --------- ---------- ---------1    37      1484568    30-AUG-14 1484590    30-AUG-141    38      1484590    30-AUG-14 1504942    30-AUG-141    39      1504942    30-AUG-14 1505018    30-AUG-141    40      1505018    30-AUG-14 1505065    30-AUG-141    41      1505065    30-AUG-14 1505155    30-AUG-141    42      1505155    30-AUG-14 1505416    30-AUG-14BS Key  Size       Device Type Elapsed Time Completion Time
------- ---------- ----------- ------------ ---------------
54      2.50K      DISK        00:00:00     30-AUG-14      BP Key: 54   Status: AVAILABLE  Compressed: NO  Tag: TAG20140830T065448Piece Name: /u01/oracle/rman_test/rman_archive/plus_1rph7nho_1_1List of Archived Logs in backup set 54Thrd Seq     Low SCN    Low Time  Next SCN   Next Time---- ------- ---------- --------- ---------- ---------1    43      1505416    30-AUG-14 1505427    30-AUG-14

明显看到plus_开头的比bak_开头的scn多两个

6、初始化参数文件的备份

通常在备份控制文件时,rman也会自动备份服务器端的初始化参数文件,并置于控制文件相同的备份片段中,因此极少需要单独对spfile进行备份,如果确实想单独备份也简单,直接使用backup spfile命令即可

操作过程同上

rman初级知识(读书笔记)相关推荐

  1. 《计算机基础知识》读后感300字,计算机知识读书笔记

    计算机知识读书笔记 计算机基础知识学习包括学电脑入门教程,电脑技巧,网络技术,办公软件,操作系统,视频教程等.以下是小编搜集并整理的计算机知识读书笔记有关内容,希望在阅读之余对大家能有所帮助! 计算机 ...

  2. prooerties mysql_mysql数据库操作相关知识--读书笔记分享

    =================== 数据库软件: 数据库: 保存特定类型数据的容器 表: 特定类型数据的结构化清单 模式: 关于数据库和表的布局及特性的信息 列: 表中的一个字段, 行: 表中的一 ...

  3. 读书笔记: 博弈论导论 - 05 - 完整信息的静态博弈 纳什均衡

    读书笔记: 博弈论导论 - 05 - 完整信息的静态博弈 纳什均衡 压制信念:纳什均衡(Pinning Down Beliefs: Nash Equilibrium) 本文是Game Theory A ...

  4. 读书笔记: 博弈论导论 - 16 - 不完整信息的动态博弈 信号传递博弈

    读书笔记: 博弈论导论 - 16 - 不完整信息的动态博弈 信号传递博弈 信号传递博弈(Signaling Games) 本文是Game Theory An Introduction (by Stev ...

  5. 读书笔记:《SEO教程:搜索引擎优化入门与进阶》(4)——代码优化

    --对HTML源代码进行必要的调整. 1.去掉冗余代码 --降低页面体积 --提高搜索引擎友好性 做法: 去掉每行代码前面.后面的空格字符: 去掉空白行: 2. HTML标签转换 --使用短标签替换同 ...

  6. 读书笔记: 博弈论导论 - 08 - 完整信息的动态博弈 可信性和序贯理性

    读书笔记: 博弈论导论 - 08 - 完整信息的动态博弈 可信性和序贯理性 可信性和序贯理性(Credibility and Sequential Rationality) 本文是Game Theor ...

  7. 读书笔记: 博弈论导论 - 总结

    读书笔记: 博弈论导论 - 总结 总结 本文是Game Theory An Introduction (by Steven Tadelis) 的学习笔记的总结. 博弈论 博弈论是关于智能理性决策者的协 ...

  8. 读书笔记: 博弈论导论 - 14 - 不完整信息的静态博弈 机制设计

    读书笔记: 博弈论导论 - 14 - 不完整信息的静态博弈 机制设计 机制设计(Mechanism Design) 本文是Game Theory An Introduction (by Steven ...

  9. 《统计自然语言处理》读书笔记 一.基础知识及概念介绍

    最近准备学习自然语言处理相关的知识,主要参考<统计自然语言处理·宗成庆>和<Natural Language Processing with Python>,推荐大家阅读.第一 ...

最新文章

  1. python采集cpu信息
  2. C# 各种进制之间相互转换 [ZT]
  3. 机器学习Tips:关于Scikit-Learn的 10 个小秘密
  4. 服务器带系统,服务器有带系统的吗
  5. python学习教程,12306火车票抢票系统
  6. 2019年第十届蓝桥杯国赛B组试题A-平方序列-枚举
  7. 【渝粤教育】国家开放大学2018年秋季 1317T社会工作行政(本) 参考试题
  8. c语言函数的形参有几个,C中子函数最多有几个形参
  9. Linux网络编程组播测试代码
  10. forward内部跳转 和redirect重定向跳转的区别
  11. 苹果mac屏幕截图工具:Snagit
  12. weixin-java-tools工具-出现JedisDataException问题
  13. 自动控制原理9.3---线性定常系统的反馈结构及状态观测器
  14. 图像处理零件尺寸测量matlab,题目基于数字图像处理技术的零件几何尺寸测量.doc...
  15. Java开发入门学习线路图+配套Java基础视频教程分享
  16. html5微相册,微信开发 微信H5开发 微信小程序 微报名 微相册 微**
  17. 采用ODC改善软件质量:一个案例研究
  18. iOS -- 使用蒲公英进行内测
  19. StoryBoard 创建tabBarController
  20. CoinRobots的马丁格尔是怎么实现的?

热门文章

  1. mysql查每个月的收入_mysql 查询每个人、每个月的消费金额及每年的消费总额
  2. 研究亥姆霍兹线圈轴线磁场分布(3)
  3. 上班第一天总结(以装环境为主)
  4. LDS,LES,LFS,LGS,LSS指令
  5. 《深入探索C++对象模型》第二章 构造函数语义学(The Semantics of Constructors)
  6. javascript鼠标拖尾特效
  7. pvifa怎么用计算机算,怎样用用“卡西欧”计算机fx-82ES PLUS 计算年金现值系数和年金终值系统?...
  8. 网站搜索引擎优化问题
  9. 《javascript语言精粹》读书笔记 Item2 对象
  10. python Selenium浏览器爬虫指南 --未完成版本