Sharepoint学习笔记—习题系列--70-576习题解析 -(Q9-Q12)
Question 9
You are designing an external binary large object (BLOB) store provider by implementing the ISP External Binary Provider interface. The farm has existing sites that contain content. Your implementation has been verified to be working correctly. You need to ensure that content within existing sites is moved using the external BLOB store provider. You also must ensure that the solution does not require further custom coding. Which approach should
you recommend?
A. Perform a backup and restore on each site.
B. Perform a backup and restore of each content database.
C. Perform a backup and restore on each site collection.
D. Perform a backup and restore of the configuration database.
解析:
这道题感觉仍然是基于Sharepoint2007在设计,因为它要开发人员开发实现external binary large object (BLOB) store provider。 微软在Windows SharePoint Services 3.0 SP1开始增加了一个External BLOB Storage(EBS)接口,但是微软并没有提供实现,而是需要开发人员自己来实现它。
到了SharePoint 2010虽然仍然对EBS提供兼容,但并不推荐使用EBS,而是推荐使用SQL Server 2008 Remote BLOB Storage(RBS)。所以本题你可以只作了解。
本题的场景是基于EBS:你试图设计一个“external binary large object (BLOB) store provider”来实现EBS。但当前Sharepoint场中已经已经有一些Site了,并且还存储了需要的内容,你需要把这些内容移到EBS的内容数据库中去.题目的要求是不需要代码实现。
根据如下一段描述:
“EBS is more natively granular as it provides a site collection context thru the interface whereas RBS provides a content database context.”
而且网上也有人通过Move-SPSite 命令(将网站集从一个内容数据库移到另一个内容数据库。)实现本题的场景。
因此本题答案应该选 C
参考
http://blogs.technet.com/b/vedant/archive/2009/06/17/external-blob-storage-in-sharepoint-2007.aspx
http://technet.microsoft.com/zh-cn/library/ff607915.aspx
Question 10
You are designing a SharePoint 2010 application that includes a Task list. You have the following requirements:
.For each task, allow users to specify one of three values for an item named Phase using a drop-down menu.
.Allow contributors to add new values for the Phase item. You need to design this application without using custom code. Which approach should you recommend?
A. Create a Multiple lines of text field type on the Task list.
B. Create a Single line of text field type on the Task list.
C. Create a Choice field type on the Task list that gets values from a custom list.
D. Create a Lookup field type on the Task list that gets values from a custom list.
解析:
本题题意是:你想在你的应用中包含一个任务列表,此列表有一个Phrase字段,这个字段允许用户从一个下拉框中选取值 ,而且待选取的值可以后续添加。要求是不能编码实现。
根据题意很快就能想到要把待选值放到另一个列表中去保存和维护,所以直接就排除了选项A.B。再因为要在一个列表中引用另一个列表中的值,很明显是Lookup字段干的事情,所以选项D为正解。至于选项C提到的Choice Field 也是一种选择值功能,但其值并不是来自于其它列表。
因此本题答案应该选 D
参考
Question 11
You are designing an asset management solution using SharePoint 2010. You need to design a solution that meets the following requirements:
.Binary large objects (BLOBs) cannot be stored in Microsoft SQL Server.
.There can be no custom development or third-party products.
Which approach should you recommend?
A. Install and configure Remote BLOB Storage and enable the content databases to use Remote BLOB Storage.
B. Install and configure Remote BLOB Storage and enable the configuration databases to use Remote BLOB
Storage.
C. Install and configure an external BLOB store provider and enable the content databases to use the external BLOB store provider.
D. Install and configure an external BLOB store provider and enable the configuration databases to use the external BLOB store provider.
解析:
本题题意:你想要使用Sharepoint实现资源管理,资源中包括一些大文件,你需要找一种方式来存储这些资源文件,要求是:
要求1. 这些文件不能直接被保存在SQL Server数据库中,
要求2. 不能使用编程方式或采用第三方软件方式实现。
看到要求2,马上就可以排除选项C.D。因为这两个选项都要求通过external BLOB store provider来实现,而external BLOB store provider是由用户使用微软提供的接口来编程实现的。
至于要求1,当然只有通过BLOB方式去实现了,但BLOB存取方式是建立在Sharepoint的内容数据库(Content Data Base)上的,这个很好理解,因为BLOB所存取的数据本身就应该是Sharepoint内容数据库的一部分,只不过被放置到其它位置。至于选项B提到的Configuration Database,那是Sharepoint的场配置数据库,是用来维护Sharepoint场的正常运行的。
因此本题答案应该选 A
参考
Question 12
You need to specify the correct artifacts to use in a SharePoint 2010 application for a school district. The school district’s administrator needs to be able to search for student information on an intranet SharePoint 2010 portal. Student information is currently available in another database, which supports an Open Database Connectivity (ODBC) driver. You need to design the solution to meet the following requirements:
.Provide a user interface to search for a student based on name.
.Enable the administrator to select the correct student name from the search results.
.Provide a student header section that displays the primary student identity information, which will enable the administrator to correlate any new information with the correct student.
.Provide additional data entry pages to add or update additional student information.
Which approach should you recommend?
A. Design HTML Web pages to render the student details. Install these pages under the /templates/_layouts/1033 folder and load these pages in Web Parts.
B. Design connected Web Parts to share information among search data entry, student header information, and new data entry information Web Parts.
C. Design a user control and load this control in a Web Part to search for a student. Then render the student details in a SharePoint page.
D. Design a Web Part to search for a student. Then render the student record details in a SharePoint page.
解析:
本题题意:你想为某校区提供一个Sharepoint解决方案,此方案属于Intranet应用,校区管理者可以在上面搜索本校区的学生信息,学生信息现在是存储在另外一个数据库中的,你可以通过ODBC驱动去访问里面的数据。方案同时要满足下面的要求:
要求1. 提供一个操作界面,允许在此界面上通过学生的姓名查找学生的信息
要求2. 允许管理者从返回的查找结果中,进一步选择想要查找的学生姓名(即:如果在要求1涉及的界面中输入Jack,则返回所有包含Jack的学生的姓名, eg. Jack Dorsey, Jack Reacher…….,在要求2中可以进一步选择具体哪个学生)
要求3. 在学生信息界面中,提供学生标识信息栏,以便于管理者根据关联的信息快速定位到想查找的学生。
要求4. 提供对学生信息的添加和修改界面。
根据上面的题意,首先,要求通过ODBC数据驱动去访问学生信息数据库,这就明显需要通过编程在后台代码中实现,所以可以排除选项A,因为选项A提供的HTML方式是不支持后台代码的。
其次,根据要求4,需要实现对学生信息的添加和修改,所以又可以进一步排除选项 C.D。因为这两个选项都只提供了搜索功能,没有提供修改功能。
只有选项B,通过不同的WebPart分别实现搜索和修改功能,并在WebPart之间通过Connect操作建立进一步筛选功能。
因此本题答案应该选B
参考
http://msdn.microsoft.com/zh-cn/library/ff597538(v=office.14).aspx
http://msdn.microsoft.com/zh-cn/library/ms469765(v=office.14).aspx
Sharepoint学习笔记—习题系列--70-576习题解析 -(Q9-Q12)的更多相关文章
- Sharepoint学习笔记—ECM系列—文档列表的Metedata Navigation与Key Filter功能的实现
如果一个文档列表中存放了成百上千的文档,想要快速的找到你想要的还真不是件容易的事,Sharepoint提供了Metedata Navigation与Key Filter功能可以帮助我们快速的过滤和定位 ...
- Sharepoint学习笔记—ECM系列--文档集(Document Set)的实现
文档集是 SharePoint Server 2010 中的一项新功能,它使组织能够管理单个可交付文档或工作产品(可包含多个文档或文件).文档集是特殊类型的文件夹,它合并了唯一的文档集属性以及文件夹和 ...
- Sharepoint学习笔记—习题系列--70-576习题解析 --索引目录
Sharepoint学习笔记—习题系列--70-576习题解析 为便于查阅,这里整理并列出了70-576习题解析系列的所有问题,有些内容可能会在以后更新. 需要事先申明的是: 1. ...
- Sharepoint学习笔记—习题系列--70-573习题解析 --索引目录
Sharepoint学习笔记—习题系列--70-573习题解析 为便于查阅,这里整理并列出了我前面播客中的关于70-573习题解析系列的所有问题,有些内容可能会在以后更新, ...
- Deep Learning(深度学习)学习笔记整理系列之(五)
Deep Learning(深度学习)学习笔记整理系列 zouxy09@qq.com http://blog.csdn.net/zouxy09 作者:Zouxy version 1.0 2013-04 ...
- Deep Learning(深度学习)学习笔记整理系列之(八)
Deep Learning(深度学习)学习笔记整理系列 zouxy09@qq.com http://blog.csdn.net/zouxy09 作者:Zouxy version 1.0 2013-04 ...
- Deep Learning(深度学习)学习笔记整理系列之(七)
Deep Learning(深度学习)学习笔记整理系列 zouxy09@qq.com http://blog.csdn.net/zouxy09 作者:Zouxy version 1.0 2013-04 ...
- Deep Learning(深度学习)学习笔记整理系列之(六)
Deep Learning(深度学习)学习笔记整理系列 zouxy09@qq.com http://blog.csdn.net/zouxy09 作者:Zouxy version 1.0 2013-04 ...
- Deep Learning(深度学习)学习笔记整理系列之(四)
Deep Learning(深度学习)学习笔记整理系列 zouxy09@qq.com http://blog.csdn.net/zouxy09 作者:Zouxy version 1.0 2013-04 ...
- Deep Learning(深度学习)学习笔记整理系列之(三)
Deep Learning(深度学习)学习笔记整理系列 zouxy09@qq.com http://blog.csdn.net/zouxy09 作者:Zouxy version 1.0 2013-04 ...
随机推荐
- 解决erlang节点启动失败报["inet_tcp",econnrefused]的问题
今天有同事说他机器上的leofs启动不了.我用console起了一下,发现报如下错: {error_logger,{{2015,11,3},{6,23,6}},"Protocol: ~tp: ...
- Android OpenGL 编写简单滤镜
Android 上使用Opengl进行滤镜渲染效率较高,比起单纯的使用CPU给用户带来的体验会好很多.滤镜的对象是图片,图片是以Bitmap的形式表示,Opengl不能直接处理Bitmap,在Andr ...
- URL格式
URL由三部分组成:资源类型.存放资源的主机域名.资源文件名. URL的一般语法格式为: (带方括号[]的为可选项): protocol :// hostname[:port] / path / [; ...
- UMeditor宽度自适应
百度编辑器UMeditor,生成富文本编辑框以后,改变窗口大小会出现横向滚动条,即使你调用接口设置了编辑器的宽度为100%.如: var um = UM.getEditor('<%=txtCon ...
- 阅读《LEARNING HARD C#学习笔记》知识点总结与摘要二
今天继续分享我的阅读<LEARNING HARD C#学习笔记>知识点总结与摘要二,仍然是基础知识,但可温故而知新. 七.面向对象 三大基本特性: 封装:把客观事物封装成类,并隐藏类的内部 ...
- UI自动化测试框架(项目实战)python、Selenium(日志、邮件、pageobject)
其实百度UI自动化测试框架,会出来很多相关的信息,不过就没有找到纯项目的,无法拿来使用的:所以我最近就写了一个简单,不过可以拿来在真正项目中可以使用的测试框架. 项目的地址:https://githu ...
- a[href^=""]的解释
a[href^="绝对路径"]这个算一种属性选择器,在这里是用来选择链接属性为“绝对路径”的a标签,其中的^其实是"以什么为开始"(begin with)的意思 ...
- 线程池ThreadPool的初探
一.线程池的适用范围 在日常使用多线程开发的时候,一般都构造一个Thread示例,然后调用Start使之执行.如果一个线程它大部分时间花费在等待某个事件响应的发生然后才予以响应:或者如果在一定期间内重 ...
- C# 委托和事件(二):使用.Net框架中的EventArgs和EventHandler
前面一篇里提到事件是通过委托来进行关联的,而委托是可以带各种各样的参数的,其中就可以用事件参数(EventArgs),同时,也可以用.Net框架里边提供的一个委托EventHandler来Handle ...
- 【Java每日一题】20161026
20161025问题解析请点击今日问题下方的"[Java每日一题]20161026"查看 package Oct2016; import java.util.Date; publi ...