180.B人事管理系统的设计与实现 翻译.doc
《180.B人事管理系统的设计与实现 翻译.doc》由会员分享,可在线阅读,更多相关《180.B人事管理系统的设计与实现 翻译.doc(12页珍藏版)》请在三一办公上搜索。
1、学校代码: XXX学 号:XXX 本科毕业设计外文文献翻译( 学生姓名:XXX学 院:信息工程学院系 别:计算机系专 业:软件工程班 级:软件06班指导教师:XXX 讲师本文源码索取,请联系qq:68661508二 一 年 六 月Pro SQL Server2008 XMLSQL Server 2008s native XML manipulation and querying facilities are particularly usefulin the following situations: You want to manipulate or share XML data while
2、 taking advantage of SQL Serverstransactional capabilities. You want to take advantage of SQL Servers administrative functionality to back up,recover, or replicate your XML data. You need to ensure that your server-side XML data is valid and well-formed. You want your XML and relational data to inte
3、roperate. You want to take advantage of SQL Servers XQuery and XPath capabilities. You want to optimize your queries of XML data using indexes and SQL Servers query optimizer.XML is a particularly good choice as a communication format for loosely coupled systemsor when trying to make legacy systems
4、communicate with modern servers. Its also an excellentchoice when storing data for applications that lend themselves to using data in a marked-upformat, such as document management and presentation applications. Modeling semistructured data in an ad hoc fashion also lends itself well to using XML. T
5、here are many standard applications for XML already defined in almost every industry, so XML is often an excellent choice when standard communication formats and data sharing are high priorities.Whether, and when, to use XML is the subject of much debate among SQL Server professionals.There are situ
6、ations where XML is not the best tool for the job, including the following: Your data is highly structured and dense (non-sparse). Order is unimportant to your data. You do not want to query data based on its structure. Your data is best represented using entity references.Additionally, if you do no
7、t intend to query or manipulate your XML data on SQL Server, but just want to store and retrieve it, you should use the varchar or nvarchar data types instead of SQL Servers xml data type. This is most often the case when you simply use SQL Server as a storage repository for your XML data and perfor
8、m all your XML querying and manipulation in the middle tier or in a client-side application. Also store your XML data as varchar or nvarchar if you need to store it exactly, as a character-for-character copy, for auditing purposes or for regulatory compliance. This is a common scenario when you are
9、storing data about digital financial transactions, and you need to maintain an audit trail of the transactions but do not need to manipulate or query the data in the XML.So far Ive covered quite a lot of ground discussing native SQL Server 2008 XML function ality.However, there are some things that
10、arent covered by the native Transact SQL (T-SQL) and xml data type enhancements in SQL Server. Using Extensible Stylesheet Language Transformations(XSLT) functionality is one area where you have to go outside of the built-in T-SQL functionality and access the .NET functionality available through the
11、 SQLCLR (SQL Common Language Runtime).XSLT is a W3C recommendation for a language for transforming XML documents into other XML documents. In this chapter, I will talk about the W3C XSLT recommendation and the SQLCLR functionality that will enable you to access XSLT functionality directly from withi
12、n SQLServer.XSLT gives you the ability to take an XML document as input, add or remove attributes,rearrange and sort elements, manipulate content, and make processing decisions based on the results of node tests and other logical constructs. One of the most common uses for XSLT is to transform XML d
13、ocuments into XHTML for presentation on the client tier. Another common use in the back end is to take XML data from different sources and convert it to a commonformat. Ill discuss both of these uses for XSLT and demonstrate performing XSL transformations directly from T-SQL in this chapter.During t
14、he XSL transformation process, an input XML document and an XSLT stylesheet are both fed into an XSLT processor. The XSLT processor uses the XSLT stylesheet to manipulate the contents of the XML document fed into it to produce the XML result document. The original source XML document is left unalter
15、ed by the process, with all transformations being outputto a new XML document.XSLT uses XPath to locate, navigate, and perform node tests in the source document.XPath is also the foundation for XQuery path expressions, which I talked about in Chapter 5.XSLT is a functional language, and XSLT stylesh
16、eets are XML documents that are composed of templates. XSLT stylesheet templates, in turn, are built from predefined XSLT elements.I will talk about how to create your own XSLT stylesheets in this chapter, but first I will address amore immediate issueaccessing XSLT from T-SQL.As I mentioned previou
17、sly, T-SQL does not provide built-in support for XSLT. The .NET Framework, however, offers an excellent XSLT transformation facility via its System.Xml.Xsl namespace. Fortunately, you can easily access this .NET Framework functionality through SQLServers SQLCLR integration. This requires you to crea
18、te and register a .NET assembly and create T-SQL functions and procedures to access the functionality exposed by the assembly. Before I get into the details of SQLCLR assembly creation and deployment, I need to do a little administrative work to ensure SQLCLR is enabled. I will also be implementing
19、some functionality that creates XML files in the file system.SQLCLR assemblies need the external access level of security in order to access the file system.To allow this functionality, you need to make sure the database is set to TRUSTWORTHY mode。After youve enabled the SQLCLR option in the databas
20、e, set the database to TRUSTWORTHY mode, andgranted external access assembly permissions to the principal, as described in this section, its time to compile and deploy the assembly. The source code for the assemblies used in the examples in this book is included in the download samples for this book
21、, available from the Apress web site at To compile and deploy a SQLCLR sample, open the appropriate Visual Studio solution file in Visual Studio. Once you have opened the solution, you will need to change the database connection string in the database properties page of the solution. Note that if yo
22、u are using Visual Studio 2005,deploying to SQL Server 2008 requires you to download and install a patch from Microsofts web site at .Once youve changed the database connection string for the assembly, choose the Deploy option on the Build menu. This option compiles the code, installs the assembly o
23、n the server, and creates the T-SQL user-defined functions and stored procedures necessary to access the SQLCLR functionality. Once youve deployed the code to the server, you can access the procedures and functions through SQL Server ManagementStudio (SSMS). Alternatively, the T-SQL scripts to insta
24、ll the precompiled assemblies, functions, and procedures are included with the sample downloads. This is useful if you want to install the sample SQLCLR code without compiling and deploying it yourself through Visual Studio.In the example for this section, deploying the sample code through Visual St
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 180.B人事管理系统的设计与实现 翻译 180. 人事管理系统 设计 实现

链接地址:https://www.31ppt.com/p-2324538.html