|
用户名:can212 笔名:can212 地区: 山东-青岛 行业:其他 |
| 日 | 一 | 二 | 三 | 四 | 五 | 六 |
work hard,enjoy life;
No pains,no gains
QQ :64407134
MSN:chenanning@hotmail.com
停止更新了
(作者置顶)
我的BLOG停止更新了,转到了http://spaces.msn.com/chenanning/
请大家继续关注!
港湾网络笔试题
港湾网络的笔试题其实只要基础知识牢固,应该很简单.港湾网络的笔试题注重基础知识的掌握.
建议:
1.学习TCP/IP卷
2.熟悉CCNA,CCNP的基础知识
3.有工程经验.
由于本人太笨,好多试题经过了很长时间都已经忘记了,主要将现在记的题回忆如下:
1.SNMP在哪一层?
2.vlan 有多少个?为什么?
3.DHCP 的过程?
4.6509的安装过程和注意事项?
5.有一个组播的题目,两个交换机相连,一个交换机接PC,一个交换机接SERVER,只要将一个交换机关闭,PC 就可以连同SERVER,问什么原因造成的?
6.冲击波病毒的原理,对路由器的影响?
7.三层交换机和路由器的区别?
8.什么样的网络是一个安全的网络
其余的记不太清了,还有一份附加题是关于DSL的,其实最重要的基础知识一定要扎实,不但要知道怎么做,还要知道为什么这么做.
WAN
窄带广域网:
PSTN:公共电话交换网
ISDN:综合业务数字网
DDN:数字数据网
Fream Relay:帧中继
X.25:公用分组交换网
宽带广域网:
ATM:异步传输模式
SDH:异步数字系列
麦莎”北京流浪记
主题:2004年IT人的通病
| 来源:ChinaITLab 收集整理 |
| 2005-4-29 16:37:00 |
1.即使下班回到家,还是坐在计算机前面… 2.已经很久都没用过"真的纸牌"来玩游戏。 4.会传e-mail给坐在你隔壁桌的同伴。 5.和朋友失去联系的原因是他们没有电子信箱。 6.从漫长一天的工作中回到家,仍用一副公事公办的态度讲电话。 7.在家打电话,会不小心按到 "9" 拨外线。 8.和朋友聊天的话题总是网络游戏。 9.车子永远改不完。 10.你从10点半的夜间新闻中得知 : 自己失业的消息。 11.老板没有处理你手中事情的能力。 13.约聘人员超过固定职员,而且更有可能长期做下去。 14.有只寄网络笑话、图片, 却已经很久没见面的朋友。 15.假日时总试想睡觉,即使醒着也不想出门。 16.看完新闻报导,会有想扁人的冲动… 17.即使电视上播映的电影是看过的,因为无聊还是再看一遍。 18.除了从电视上看到以外,已经很久没有亲眼看到青山绿水了… 19.除了同事以外…身边真正的朋友已剩下寥寥无几了? 20.对生活上的抱怨总是比快乐的多。 21.决定他的价值是取至于网络游戏的等级 。 22.如果他没有玩网络游戏,你除了问他姓名、年纪、在哪上班(上学) 或住那 外,已经不知道要和他聊什么了。 23.时间总不是自己的? 24.在家看电视的时间比陪朋友的多。 25.即使三餐吃泡面,也要帮自己的计算机升级… 26.今天花了很多钱买了某些东西,过了三天完全忘记钱花到哪里去了。 27.坐在同一张桌子前面,工作了四年,却换了三家公司。 28.买了高科技产品后,不到3个月就发现你买已经是次级品了… 29.每天都在烦恼今天要吃什么? 30.不小心在微波炉上输入你的密码 (适用于微波炉的面板是用按键的啦) 真正的关键是... 31. 你读了整篇文章,还边笑边点头。 32. 读这篇文章的时候,你想到要把文章转寄给朋友。 33. 你太忙了,以至于没发现少了第12项。 且慢!!最经典的一句话要出现了... . . . . . . . . . . . . . . . . . . . . . 34. 晕!...你真的把窗口上拉去检查是否有第12项 |
rman大全 (zt)
转自:VonGates 學習筆記
rman大全
1:to back the controlfile using rman
备份控制文件
run{
allocate channel dev1 type disk format 'c:backup%U';
backup current controlfile;
}
2:to check the backup of controlfile using rman:
检查备份的控制文件
list backup of controlfile;
3:to recover using backup controlfile(startup nomount)
恢复控制文件
run {
allocate channel dev1 type disk;
restore controlfile;
alter database mount;
restore database;
recover database;
sql "ALTER DATABASE OPEN RESETLOGS"
}
4:backup all datafile and controlfile using rman:
备份所有的数据文件和控制文件
run {
allocate channel dev1 type disk;
backup full tag = 'full backup' database include current controlfile format = 'c:backupdb_t%t_s%s_p%p';
release channel dev1;
}
5:check all backup of datafiles using rman:
检查所有的数据文件和控制文件
list backupset;
6:to restore because of missing file(first mount the database and run RMAN)
因文件丢失而修复
run {
allocate channel dev1 type disk;
restore database;
recover database;
}
7:restore until time
恢复到某个时间点
The 'SET UNTIL TIME' must match with the variable NLS_DATE_FORMAT.
Prior logging on RMAN set the NLS_DATE_FORMAT in the desired format.
For example:
If unix ===> export NLS_DATE_FORMAT='YYYY-MM-DD:HH24:MI:SS';
If on windows nt ===> set this vaiable in the registery.
run {
set until time 'May 1 2000 08:00:00';
allocate channel dev1 type disk;
shutdown abort;
startup nomount;
restore controlfile;
alter database mount;
restore database;
recover database;
sql 'alter database open resetlogs';
}
8:to purge obsolete backups:
清除旧的备份
report obsolete redundancy 3 device type disk; #REPORTS ANY BACKUP WITH MORE THAN 3 COPIES
report obsolete orphan; #USE THIS REPORT TO FILL IN THE XXXXX BELOW
run {
allocate channel for maintenance type disk;
allocate channel for delete type disk;
change backuppiece 'C:BACKUPxxxx' delete;
release channel;
run {
allocate channel for maintenance type disk;
allocate channel for delete type disk;
change datafilecopy 'C:BACKUPxxxx' delete;
release channel;
9:to backup all archive logs
备份所有的归档日志
run{
allocate channel dev1 type disk format 'c:backup%U';
backup archivelog all;
}
10:to remove all archive log files alter backup update to this line
backup archivelog all delete input;
11:skip an archive log file that can not be read or manualy deleted update to this line
backup archivelog skip inaccessible /inaccessible不可存取
12:to remove one archive log that you manualy deleted and now get an rman-6089<=8.0
allocate channel for delete type disk; or 'SBT_TAPE';
change archivelog 'path/filename' delete;
and/or
resync catalog;
13:to remove one archive log that you manualy deleted and now get an rman-6089<=8.1
allocate channel for maintenance type ....'
change archivelog <name> uncatalog
replace script backup_db_full {
#
# Backs up the whole database into backup-sets. This backup is not part
execute script alloc_all_tapes;
execute script set_maxcorrupt;
backup
full
# skip offline
# skip readonly
skip inaccessible
tag b_db_full
filesperset 6
format 'df_t%t_s%s_p%p'
database;
execute script rel_all_tapes;
execute script archive_log_current;
execute script backup_al_all;
}
replace script backup_db_level_0 {
#
# Backs up the whole database. This backup is part of the incremental
# strategy.
# It performs exactly the same backup as the script backup above, except
# the datafile backup is part of the incremental strategy (this means it
# can have incremental backups of levels > 0 applied to it - full backups
# cannot).
#
# Typically, a level 0 backup would be done at least once a week.
#
# Modified By Reason
# 961219 cd created
#
execute script alloc_all_tapes;
execute script set_maxcorrupt;
backup
incremental level 0
# skip offline
# skip readonly
skip inaccessible
tag backup_db_level_0
filesperset 6
format 'df_t%t_s%s_p%p'
database;
execute script rel_all_tapes;
execute script archive_log_current;
execute script backup_al_all;
}
replace script backup_db_level_1 {
#
# This backup will only backup blocks which have been modified since the
# last level 0 backup was performed. Otherwise it is exactly the same
# backup as the level 0 above (note, the controlfile is always backed up in
# it's entirety i.e. control file backups are never compressed).
#
# Typically, a level 1 backup would be done at least once in between level
# 0 backups.
#
# Modified By Reason
# 961219 cd created
#
execute script alloc_all_tapes;
execute script set_maxcorrupt;
backup
incremental level 1
# skip offline
# skip readonly
skip inaccessible
tag backup_db_level_1
filesperset 6
format 'df_t%t_s%s_p%p'
database;
execute script rel_all_tapes;
execute script archive_log_current;
execute script backup_al_all;
}
replace script backup_db_level_2 {
#
# This backup will only backup blocks which have been modified since the
# last level 0 or 1 backup was performed. Otherwise it is exactly the same
# backup as the level 0 or 1 backups above.
#
# Typically, a level 2 backup would be done at least once in between level
# 0 and 1 backups.
#
# Modified By Reason
# 961219 cd created
#
execute script alloc_all_tapes;
execute script set_maxcorrupt;
backup
incremental level 2
# skip offline
# skip readonly
skip inaccessible
tag backup_db_level_2
filesperset 6
format 'df_t%t_s%s_p%p'
database;
execute script rel_all_tapes;
execute script archive_log_current;
execute script backup_al_all;
}
思科路由器引起北京断网事故 反思安全问题
| http://www.sina.com.cn 2005年07月14日 06:50 北京晨报 | |
晨报讯 (记者 张旭光) 20万网通用户宽带断网事故仍在查找原因,北京网通路由器提供商美国思科昨天仍未公布具体原因。 前天下午2时35分,承载着超过200万用户的北京网通ADSL和LAN宽带网,突然同时大面积中断。北京网通随即投入大量人力物力紧急抢修,至3时30分左右开始逐渐恢复正常。这次事故大约影响了20万北京网民。 对于这起几年来最严重的一起技术事故,北京网通并未发布正式声明。但其有关负责人昨天澄清说,此事故并非像有人所说的由网通员工操作失误所引起,而是互联网路由器的原因。但他并未明确解释具体的技术原因。 他同时表示:“类似故障导致的服务事故,今后不会出现,这种大规模的断网现象也不可能再次发生,用户可以放心。” 到昨天下午,思科系统 (中国 )网络技术有限公司仍然没有就这一事故给出一个明确技术解释。思科中国公关经理商容昨天表示:“思科正与网通一起查找故障原因,以确保网络通信今后的通畅运行,目前北京宽带服务已经恢复正常,思科没有更多的消息可以披露。”商容说,应该等待北京网通的正式公告。 此次事故也引起了业界的深度反思。中国互联网骨干网从架网开始,大部分使用的都是思科的路由器设备,包括硬件和软件。昨天,新浪网就此次事故进行的网络调查中,超过70%的网民认为,我国电信部门在关键设备上如果过度使用国外产品将带来安全问题。 这一事故也引起专家们对于中国互联网安全问题的关注。 此前,美国商务部表态说,将坚持保留对互联网域名根服务器的监控权,其隐含信息是:美国将继续掌握全球互联网的最终控制权。ICANN(互联网域名与地址管理机构)惟一一位中国籍理事、中国科学院计算机网络信息中心研究员钱华林昨天表示,美国的这一表态打破了全球对互联网安全的幻想,如果ICANN事实上只向美国“一个政府”负责,那么一旦美国与其他国家发生激烈冲突,就意味着对方国家的网络有可能失去安全保障。 |
徐小平:不做人生规划,你离挨饿只有三天
罪恶之城(Sin City)
| 罪恶之城(Sin City) |
片 名:罪恶之城(Sin City) 剧 情: 影片由Frank Miller的小说改编而成。影片讲述三个故事:Sin City,The Big Fat Kill 和 That Yellow Bastard。这三个故事都发生在一个虚构的城市:罪恶之城。在这座被暴力所摧残的城市中,警察已经被黑帮所腐化。影片将有三条故事主线,最主要的Sin City讲的是Mickey扮演的暴力警察Marv,因为一个与他有过一夜情的漂亮女人死于因他而起的复仇,他准备在这个城市里大开杀戒…… |