动态网站制作指南 [  QQ表情  ]
[ 投票调查 ]
[ 企业邮箱 ]
[ 网站空间 ]
网络编程 | 站长之家 | 网页制作 | 图形图象 | 操作系统 | 冲浪宝典 | 软件教学 | 网络办公 | 邮件系统 | 网络安全 | 认证考试 | 系统进程
ASP源码 | .Net源码 | PHP源码 | JSP源码 | JAVA源码 | CGI源码 | VB源码 | C++源码 | Delphi源码 | PB源码 | VF源码 | 汇编 | 服务器
电脑书籍下载:程序设计书籍 | 数据库教程书籍 | 平面与多媒体书籍 | 网络通讯书籍 | 系统管理书籍 | 网络安全书籍 | 认证考试书籍
Firefox | IE | Maxthon | 迅雷 | 电驴 | BitComet | FlashGet | QQ | QQ空间 | Vista | 输入法 | Ghost | Word | Excel | wps | Powerpoint
asp | .net | php | jsp | Sql | c# | Ajax | xml | Dreamweaver | FrontPages | Javascript | css | photoshop | fireworks | Flash | Cad | Discuz!
当前位置 > 网站建设学院 > 网络编程 > 数据库 > Oracle教程
Tag:注入,存储过程,分页,安全,优化,xmlhttp,fso,jmail,application,session,防盗链,stream,无组件,组件,md5,乱码,缓存,加密,验证码,算法,cookies,ubb,正则表达式,水印,索引,日志,压缩,base64,url重写,上传,控件,Web.config,JDBC,函数,内存,PDF,迁移,结构,破解,编译,配置,进程,分词,IIS,Apache,Tomcat,phpmyadmin,Gzip,触发器,socket
数据库:数据库教程,数据库技巧,Oracle教程,MySQL教程,Sybase教程,Access教程,DB2教程,数据库安全,数据库文摘
文章搜索服务
邮件订阅
输入你的邮件地址,
你将不会错过任何关于:
[ Oracle教程 ]的信息



本月文章推荐
.更新系统表(props$)修改字符集.
.Oracle在SUN Solaris和Linux平台.
.对于数据库系统中使用临时表的思.
.Linux应用方案集锦.
.关于 分布式oracle中 database l.
.如何使用户没有telnet和ftp权限.
.oracle 常用命令.
.ORACLE在HP-UX下的系列问题处理(.
.Logon Trigger Example 登陆例子.
.ORACLE7 用户之间数据拷贝的方法.
.Oracle 的位图索引.
.oracle数据库优化.
.数据库在ORACLE控制台进去不了.
.eval用法三例.
.ORACLE8i数据库体系结构.
.利用Oracle管理服务器将数据导入.
.取某一用户的密码,再原封不动的.
.Oracle10g 移植到 Oracle ASM.
.sqlplus 技巧 spool 指定格式的文.
.通过意向锁多粒度封锁机制进行并.

Oracle DBA数据库结构试题精选(1)

发表日期:2008-2-9 |



  Q. 1 : Physical Disk Resources in an Oracle Database are
  
  1. Control Files
  2. Redo Log Files
  3. Data Files
  4. All of the above
  
  
  4
  
  
  Q. 2 : What is a Schema
  
  1. A Physical Organization of Objects in the Database
  2. A Logical Organization of Objects in the Database
  3. A Scheme Of Indexing
  4. None of the above
  
  2
  
  
  Q. 3 : An Oracle Instance is
  
  1. Oracle Memory StrUCtures
  2. Oracle I/O Structures
  3. Oracle Background Processes
  4. All of the Above
  
  4
  
  
  Q. 4 : The SGA Consists of the Following Items
  
  1. Buffer Cache
  2. Shared Pool
  3. Redo Log Buffer
  4. All of the Above
  
  
  4
  
  Q. 5 : The area that stores the blocks recently used by SQL statements is called
  
  1. Shared Pool
  2. Buffer Cache
  3. PGA
  4. UGA
  
  2
  
  
  Q. 6 : Which of the following is not a Background Server Process in an Oracle Server
  
  1. DB Writer
  2. DB Reader
  3. Log Writer
  4. SMON
  
  2
  
  Q. 7 : Which of the following is a valid background server processes in Oracle
  
  1. ARCHiver
  2. LGWR ( Log Writer )
  3. DBWR ( Dbwriter )
  4. All of the above
  
  4
  
  
  Q. 8 : The process that writes the modified blocks to the data files is
  
  1. DBWR
  2. LGWR
  3. PMON
  4. SMON
  
  1 : Oracle does not modify the data in data file. Once the server process makes a change in the Memory, DBWR writes the modified blocks back to disk.
  
  
  Q. 9 : The process that records information about the changes made by all transactions that commit is
  
  1. DBWR
  2. SMON
  3. CKPT
  4. None of the above
  
  4 : LGWR process records the information about changes to database
  
  
  Q. 10 : Oracle does not consider a transaction committed until
  
  1. The Data is written back to the disk by DBWR
  2. The LGWR successfully writes the changes to redo
  3. PMON Process commits the process changes
  4. SMON Process Writes the data
  
  Q. 11 : The process that performs internal operations like Tablespace Coalescing is
  
  1. PMON
  2. SMON
  3. DBWR
  4. ARCH
  
  
  2
  
  
  Q. 12 : The process that manages the connectivity of user sessions is
  
  1. PMON
  2. SMON
  3. SERV
  4. NET8
  
  1
  
  
  Q. 13 : The ARCH process is enabled when the database runs in a
  
  1. PARALLEL Mode
  2. ARCHIVE LOG Mode
  3. NOARCHIVELOG Mode
  4. None of the above
  
  2
  
  
  Q. 14 : What performs the Check Point in the absence of a CKPT Process
  
  1. DBWR
  2. LGWR
  3. PMON
  4. SMON
  
  2 : At a check point dbwr writes all data to data files from memory. At this time the datafile headers have to be updated by LGWR in the absence of a CKPT process
  
  
  Q. 15 : If an application requests data that is already in the memory,
it is referred to as a
  
  1. Cache Read
  2. Cache Hit
  3. Cache Miss
  4. Cache Latch
  
  2
  
  
  Q. 16 : If the data requested is in the memory but had to be reloaded due to aging, it is referred to as
  
  1. CACHE HIT
  2. CACHE REFRESH
  3. CACHE RELOAD
  4. None of the above
  
  
  3
  
  
  Q. 17 : If the data requested is not in the servers memory, it is referred to as
  
  1. CACHE DISK
  2. CACHE MISS
  3. CACHE READ
  4. None of the above
  
  2
  
  
  Q. 18 : You can Dynamically resize the following Parameters in the SGA
  
  1. Buffer Cache
  2. Library Cache
  3. Dictionary Cache
  4. None of the above
  
  
  4
  
  
  Q. 19 : The memory area that stores the parsed representation of most recently executed Statements is
  
  1. BUFFER CACHE
  2. LIBRARY CACHE
  3. DICTIONARY CACHE
  4. NONE OF THE ABOVE
  
  2
  
  
  Q. 20 : The Most recently used data dictionary information is stored in
  
  1. DATA DICTIONARY CACHE
  2. SHARED CACHE
  3. BUFFER CACHE
  4. NONE OF THE ABOVE
  
  
  Q. 21 : The server memory that holds session-specific information is referred to as
  
  1. Program or Private Global Area
  2. Session Global Area
  3. Temp Space
  4. None of the above
  
  
  1
  
  
  Q. 22 : The area of memory used by the server as temporary area for sorting is called
  
  1. TEMP SPACE
  2. SORT AREA
  3. REDO BUFFER
  4. SORT BUFFER
  
  
  2
  
  
  Q. 23 : The fundamental unit of storage in a data file is
  
  1. BYTE
  2. BIT
  3. BLOCK
  4. None of the above
  
  
  3
  
  
  Q. 24 : The process that resolves the in-douBT transactions in a distributed environment is
  
  1. ARCH
  2. PROC
  3. RECO
  4. NONE OF THE ABOVE
  
  3
  
  
  Q. 25 : The size of each buffer in the database is set using this parameter
  
  1. DB_BLOCK_BUFFERS
  2. DB_BLOCK_SIZE
  3. DB_BYTE_SIZE
  4. NONE OF THE ABOVE
  
  2
  
  
  Q. 26 : The number of Block Buffers in the database is set in the init.ora using
  
  1. DB_BLOCK_SIZE
  2. DB_BLOCK_BUFFERS
  3. DB_BUFFER_CACHE
  4. NONE OF THE ABOVE
  
  2
  
  
  Q. 27 : The Parameter that sets the size of the shared SQL Area is
  
  1. SHARED_SQL_AREA
  2. SHARED_POOL_SIZE
  3. SHARED_CACHE_SIZE
  4. NONE OF THE ABOVE right">(出处:清风软件下载学院)
上一篇:Oracle DBA创建数据库试题精选 人气:354
下一篇:Oracle8分区功能研究与应用 人气:403
浏览全部Oracle教程的内容 Dreamweaver插件下载 常用网页广告代码全集
  最新网站源码 最新软件下载
2008-7-24 Sablog-X v2.0 预览版
2008-7-24 帝国备份王EmpireBak 2008 正式版
2008-7-24 网趣网上购物系统时尚版 v8.2
2008-7-24 纵横B2B电子商务系统XYECS!B2B v
2008-7-24 e路小说小偷 v1.2.0723
2008-7-24 凌风美女图片站程序 v2.2
2008-7-24 TOM15电影收索程序
2008-7-24 清风信息自动采集生成系统 v1.0
2008-7-24 QQ邮箱编辑器 v1.0 (小小菜刀ASP
2008-7-19 UltraEdit 简体中文增强版 14.10
2008-7-19 CentOS 5.2 i386 LiveCD
2008-7-19 Snapture多功能相机 v1.4
2008-7-19 iAcces中文输入法 v1.0Build016
2008-7-19 Cookbook烹饪秘籍 v2.5
2008-7-19 苹果专用DVD转换工具 v1.1.59汉化
2008-7-19 Modem修复软件ZiPhone修改版04.0
2008-7-19 AgileMessenger即时通讯工具美化
2008-7-19 Sketches画图软件 v0.7b6破解版


  发表评论
姓 名: 验证码:
内 容:
[ 汉字翻译拼音 ] [ 广告代码 ] [ 符号对照表 ] [ 进制转换 ] [ 经典小工具 ] [ 个税计算 ] [ 汉字简繁转换 ] [ 普通单位换算 ] [ 公制单位换算 ]
[ 生辰老黄历 ] [ 国内电话区号 ] [ 国家代码与域名缩写 ] [ 文字加密解密 ] [ 健康查询 ] [ 万年历 ] [ 手机号码查询 ] [ ip搜索 ] [ Google PR查询 ]
业务联系 | 广告刊登 | 频道合作 | 投稿荐稿 | 联系方式 | 加入收藏 | RSS订阅
Copyright © 2000-2008 www.knowsky.com All rights reserved | 网络实名:动态网站制作指南 | 沪ICP备05001343号
ホームページ制作 不動産検索システム 求人情報
防水工事·改修工事 フットサル大会 探偵