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. Windows Azure Service Bus (2) 队列(Queue)入门

    <Windows Azure Platform 系列文章目录> Service Bus 队列(Queue) Service Bus的Queue非常适合分布式应用.当使用Service Bu ...

  2. JAVA 设计模式 状态模式

    用途 状态模式 (State) 当一个对象的内在状态改变时允许改变其行为,这个对象看起来像是改变了其类. 状态模式是一种行为型模式. 结构

  3. MVC之前的那点事儿系列(6):动态注册HttpModule

    文章内容 通过前面的章节,我们知道HttpApplication在初始化的时候会初始化所有配置文件里注册的HttpModules,那么有一个疑问,能否初始化之前动态加载HttpModule,而不是只从 ...

  4. Swift的期待

    去年底苹果开源 Swift 之后,Google.Facebook和Uber三个互联网巨头就曾在伦敦召开会议讨论Swift在各自开发战略中的地位.近日业界有消息传出,谷歌有意考虑将Swift作为Andr ...

  5. Java中不同转换符实现不同数据类型到字符串的转换

    String类的format()方法用于创建格式化的字符串以及连接多个字符串对象.熟悉C语言的同学应该记得C语言的sprintf()方法,两者有类似之处.format()方法有两种重载形式. form ...

  6. Entity Framework 实体框架的形成之旅--利用Unity对象依赖注入优化实体框架(2)

    在本系列的第一篇随笔<Entity Framework 实体框架的形成之旅--基于泛型的仓储模式的实体框架(1)>中介绍了Entity Framework 实体框架的一些基础知识,以及构建 ...

  7. C#编程总结(九)字符编码

    C#编程总结(九)字符编码 相信大家一定遇到过乱码的问题,为什么会乱码呢?输出的数据怎么就跟输入的不一样呢? 最近在总结加密问题,也遇到了同样的困扰.所以今天来集中解决这个问题. 什么是字符? 字符是 ...

  8. Ajax中传递Json格式的参数

    $.ajax({ type: "post", url: baseUrl+"sys/login", dataType: "json", con ...

  9. 泛函编程(30)-泛函IO:Free Monad-Monad生产线

    在上节我们介绍了Trampoline.它主要是为了解决堆栈溢出(StackOverflow)错误而设计的.Trampoline类型是一种数据结构,它的设计思路是以heap换stack:对应传统递归算法 ...

  10. Java--如何使用sun.misc.Unsafe完成compareAndSwapObject原子操作

    package com; import sun.misc.Unsafe; import java.lang.reflect.Field; /** * Created by yangyu on 16/1 ...