Question  95 
Your development team has asked you to help them determine the cause of an error in a document conversion in SharePoint 2010. Your team has checked the Unified Logging Service (ULS) and Event logs, but cannot find the error. You need to direct them to discover more information in the ULS and Event logs to help identify the error. Which approach should you recommend?
A. Examine the ULSTraceLog view in the SharePoint logging database.
B. Disable the Event Log Flood Protection property and test the conversion again.
C. Adjust the throttling of document conversion events and test the conversion again.
D. Adjust the trace log disk space usage setting and test the conversion again.

解析:
  你被要求帮助你的开发小组查找一个关于Sharepoint2010的Document Convertion错误。你的开发小组已经检查了ULS服务及Event Logs,但并没找到相关错误信息。因此你需要指导他们如何进一步利用ULS与Event Logs以识别出相关错误信息。
  选项A,检查日志记录数据库中的各个视图,这种方法既不安全(因为日志数据库不是随便对哪个程序开发人员都能开放的),也不方便(因为你会发现日志记录数据库中有太多的视图了,你一时半会儿很难确定哪个视图是作什么用的,哪个视图包含有你想要的信息)
 选项B,关闭事件日志淹没保护(Event Log Flood Protection)。我们知道,此设置可将系统配置为检测 Windows 事件日志中的重复事件。在重复记录同一个事件时,将会检测到重复事件并加以阻止,直到条件返回某个典型状态。很明显,此设置项与本题没有太大关系。
 选项D,限制日志磁盘空间使用率。默认情况下,诊断日志记录可使用的磁盘空间量是不受限制的。因此,限制日志记录使用的磁盘空间量可确保磁盘不会被填满,尤其是在将日志记录配置为写入详细级别的事件时。在使用完限定的磁盘空间量后,将删除最早的记录并记录新的日志记录数据信息。很明显,此设置项也与本题没有太大关系。
 选项C, 是指在SharePoint Central Administration的Diagnostics Logging 页面上设置Event Throttling节,通过此节的设置可以大大排除众多无关的事件,从而缩小了分析范围。
因此本题答案应该选 C

参考 
http://msdn.microsoft.com/en-us/library/ff647362.aspx
http://weblogs.asp.net/erobillard/archive/2008/07/31/sharepoint-trace-logs-and-the-unified-logging-service-uls.aspx

Question  96
You are creating a plan to add new functionality into a SharePoint 2010 farm. Several artifacts must be created to provide the new capabilities. The artifacts required include the following:
.A custom site definition with company branding
.A Web Part to provide a graph of business statistics
.Custom code to calculate the business statistics
Your plan needs to include a process to create and deploy the new functionality.
Which approach should you recommend?
A. Define the new site definition, including the company branding and all the required artifacts. Create a site using this new site definition.
B. Define a site template built on a new site definition, which includes the company branding. Implement it on the site that includes the new artifacts. Reset IIS.
C. Develop and test the required artifacts. Build the artifacts into a solution package. Deploy the solution package to the farm.
D. Build the company branding and the new artifacts into a feature. Staple the new feature to an existing site definition in the farm. Reset IIS.

解析:
  你准备向一个Sharepoint2010场中添加新的功能,此新功能包含如下需求:
  需求1.一个包含了公司风格设计的网站定义。
  需求2.一个包含了商务统计图表的Web Part
  需求3.客户代码用来实现商务统计信息的相关计算
  你该如何计划并实施这个新的功能呢?
 首先,本题题干要求是” add new functionality into a SharePoint 2010 farm”,而选项A.B均无添加此功能到Farm的明确操作,所以直接排除。
 选项D是使用功能附加,所谓功能附加:是通过一项专门用于将其他功能附加到一个或多个网站定义的功能实现。通过执行功能附加,可以将一项功能附加到通过任何网站定义或通过特定网站定义(基于在相应的 WEBTEMP.xml 文件中标识的模板名称)创建的任何新网站。所以很明显,此方式其实并非创建一个新功能,而且它也无法更改已经存在网站的网站风格。
  选项C.开发要求的功能并部署到场中,符合本题的要求。
因此本题答案应该选 C

参考 
http://msdn.microsoft.com/zh-cn/library/ff648422.aspx
http://msdn.microsoft.com/zh-cn/library/bb861862(v=office.12).aspx

Question  97 
You are creating a plan to add new functionality to an existing application in a SharePoint 2010 farm. The original application uses a site definition for site creation. Your plan needs to specify how to deploy the new functionality to meet all these requirements:
.The new functionality must include a Web Part that displays sales statistics and graphs.
.New sites that use the site definition must contain the new Web Part.
.The new functionality must be added to several existing sites.
.Deploying the new functionality must not disrupt the current functionality of the sites.
Which two actions should you recommend? (Each correct answer presents part of the solution. Choose two.)
A. Build the new Web Part into a feature and deploy it to the farm. Activate the feature on all the existing sites that require the new functionality.
B. Create a new site template that includes the new Web Part. Use this template to add the new functionality to all sites that require it.
C. Create a new site definition that includes the feature. Regenerate the existing sites that require the new functionality using this site definition.
D. Create a new feature containing the Web Part. Staple the feature to the site definition that was used to create the existing sites.

解析:
 你需要向一个Sharepoint2010应用程序中添加新的功能,原来这个程序中使用了一个网站定义用于创建网站,你需要达到以下要求:
  要求1. 添加一个Web Part用以显示销售统计数据和图表
  要求2. 当用上面提到的那个网站定义创建网站时,则新创建的网站必须包含这个Web Part
  要求3. 此Web Part也必须添加到已经存在的网站中
  要求4. 当部署此功能时,必须不能影响已经存在的网站上其它功能的正常运行。
 你该如何操作才能达到上述要求呢?(两个选项答案)
  由于题干要求与要求4,原程序使用了一个网站定义创建网站,你需要“添加”新功能。而新功能不能影响已经存在的网站上其它功能的正常运行,所以选项B.C均可排除,因为不论是Site Template还是Site Definition,均是用来创建新的网站的,与原来的网站不再有关系。
  所以只剩下了选项A.D,而本题又要求有两个选项。
  选项A,把新功能部署到场中,再到已投入使用的网站中激活此功能。
  选项B,创建一个功能附加,即通过一项专门用于将其他功能附加到一个或多个网站定义的功能实现。通过执行功能附加,可以将一项功能附加到通过任何网站定义或通过特定网站定义(基于在相应的 WEBTEMP.xml 文件中标识的模板名称)创建的任何新网站。
因此本题答案应该选 A.D

参考 
http://msdn.microsoft.com/zh-cn/library/bb861862(v=office.12).aspx
http://msdn.microsoft.com/zh-cn/library/ms434313(v=office.12).aspx#中国(简体中文)
http://msdn.microsoft.com/zh-cn/library/bb802960(v=office.12).aspx#中国(简体中文)

Question  98 
The development team you manage has added new functionality to an application in the development environment that improves the application currently running in the production SharePoint 2010 farm. The added functionality includes several custom Web Parts. You need to create a plan to add the new functionality to the existing production SharePoint 2010 farm. Which approach should you recommend?
A. Create a new application that includes the Web Parts and deploy it to the farm as a .wsp package.
B. Export the site hosting the Web Parts as a .stp template file. Change the template file and import the .stp file back into the production farm.
C. Build the new functionality into a feature and use the Stsadm Upgrade command to update the application in the farm.
D. Build the new functionality into a feature in a new solution package and deploy it to the production farm.

解析:
  你负责的开发小组在Sharepoint开发环境中新开发了一个功能部署到Sharepoint2010场中,此功能包含了几个用户定义的Web Part,你需要实现把这个功能部署到Sharepoint2010生产环境中。你应该如何做呢?
 本题无需多说,1,由于是新功能,所以不存在Upgrade,因此,排除选项C。 2.由于此功能已经开发好并已在开发环境中测试,所以不在重新开发,因此排除选项A。部署功能到生产环境的方式并不是测试环境导出功能再部署到生产环境,所以排除选项B。
 我们只需要重新打包,然后再直接部署到服务器场即可。

因此本题答案应该选 D

参考 
http://msdn.microsoft.com/zh-cn/library/vstudio/ee231541.aspx
http://msdn.microsoft.com/zh-cn/library/vstudio/ee231544(v=vs.100).aspx

Sharepoint学习笔记—习题系列--70-576习题解析 -(Q95-Q98)的更多相关文章

  1. Sharepoint学习笔记—ECM系列—文档列表的Metedata Navigation与Key Filter功能的实现

    如果一个文档列表中存放了成百上千的文档,想要快速的找到你想要的还真不是件容易的事,Sharepoint提供了Metedata Navigation与Key Filter功能可以帮助我们快速的过滤和定位 ...

  2. Sharepoint学习笔记—ECM系列--文档集(Document Set)的实现

    文档集是 SharePoint Server 2010 中的一项新功能,它使组织能够管理单个可交付文档或工作产品(可包含多个文档或文件).文档集是特殊类型的文件夹,它合并了唯一的文档集属性以及文件夹和 ...

  3. Sharepoint学习笔记—习题系列--70-576习题解析 --索引目录

        Sharepoint学习笔记—习题系列--70-576习题解析  为便于查阅,这里整理并列出了70-576习题解析系列的所有问题,有些内容可能会在以后更新. 需要事先申明的是:     1. ...

  4. Sharepoint学习笔记—习题系列--70-573习题解析 --索引目录

                  Sharepoint学习笔记—习题系列--70-573习题解析 为便于查阅,这里整理并列出了我前面播客中的关于70-573习题解析系列的所有问题,有些内容可能会在以后更新, ...

  5. Deep Learning(深度学习)学习笔记整理系列之(五)

    Deep Learning(深度学习)学习笔记整理系列 zouxy09@qq.com http://blog.csdn.net/zouxy09 作者:Zouxy version 1.0 2013-04 ...

  6. Deep Learning(深度学习)学习笔记整理系列之(八)

    Deep Learning(深度学习)学习笔记整理系列 zouxy09@qq.com http://blog.csdn.net/zouxy09 作者:Zouxy version 1.0 2013-04 ...

  7. Deep Learning(深度学习)学习笔记整理系列之(七)

    Deep Learning(深度学习)学习笔记整理系列 zouxy09@qq.com http://blog.csdn.net/zouxy09 作者:Zouxy version 1.0 2013-04 ...

  8. Deep Learning(深度学习)学习笔记整理系列之(六)

    Deep Learning(深度学习)学习笔记整理系列 zouxy09@qq.com http://blog.csdn.net/zouxy09 作者:Zouxy version 1.0 2013-04 ...

  9. Deep Learning(深度学习)学习笔记整理系列之(四)

    Deep Learning(深度学习)学习笔记整理系列 zouxy09@qq.com http://blog.csdn.net/zouxy09 作者:Zouxy version 1.0 2013-04 ...

  10. Deep Learning(深度学习)学习笔记整理系列之(三)

    Deep Learning(深度学习)学习笔记整理系列 zouxy09@qq.com http://blog.csdn.net/zouxy09 作者:Zouxy version 1.0 2013-04 ...

随机推荐

  1. Javascript内存泄露

    在过去一些的时候,Web开发人员并没有太多的去关注内存泄露问题.那时的页面间联系大都比较简单,并主要使用不同的连接地址在同一个站点中导航,这样的设计方式是非常有利于浏览器释放资源的.即使Web页面运行 ...

  2. Mina工作原理分析

    Mina是Apache社区维护的一个开源的高性能IO框架,在业界内久经考验,广为使用.Mina与后来兴起的高性能IO新贵Netty一样,都是韩国人Trustin Lee的大作,二者的设计理念是极为相似 ...

  3. nodejs学习笔记三——nodejs使用富文本插件ueditor

    在做自己的nodejs项目的时候遇到需要使用ueditor.原来下载的是ueditor的jsp版本.目录如下  在ueditor.config.js中有配置服务器home路径(这个home路径能找到u ...

  4. SQL Server中的事务日志管理(7/9):处理日志过度增长

    当一切正常时,没有必要特别留意什么是事务日志,它是如何工作的.你只要确保每个数据库都有正确的备份.当出现问题时,事务日志的理解对于采取修正操作是重要的,尤其在需要紧急恢复数据库到指定点时.这系列文章会 ...

  5. JS魔法堂:元素克隆、剪切技术研究

    一.前言 当需要新元素时我们可以通过 document.createElement 接口来创建一个全新的元素,也可以通过克隆已有元素的方式来获取一个新元素.而在部分浏览器中,通过复制来获取新元素的效率 ...

  6. NOIP模拟赛-旅行者问题 解题报告

    旅行者问题 [问题描述] lahub是一个旅行者的粉丝,他想成为一个真正的旅行者,所以他计划开始一段旅行.lahub想去参观n个目的地(都在一条直道上).lahub在起点开始他的旅行.第i个目的地和起 ...

  7. easyui combobox 值怎样获取

    $('#com').combobox('getValue')获取当前选中的值$('#com').combobox('getText')获取当前选中的文字

  8. linux 新建文件的命令

    图形界面下就不用说了,终端下键入: touch test.java 就创建了一个新文件 test.java http://hovertree.com/menu/linux/ http://www.cn ...

  9. 扩展WPF的DataGrid按方向键移动焦点

    WPF的DataGrid默认的移动行为如下: (1)当前单元格不处于编辑状态时可使用方向键移动焦点. (2)当前单元格处于编辑状态时不可使用方向键移动焦点;按Enter键,当前单元格退出编辑状态,焦点 ...

  10. 点击一个div隐藏另一个div

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/ ...