版權說明:本文檔由用戶提供并上傳,收益歸屬內容提供方,若內容存在侵權,請進行舉報或認領
文檔簡介
1、<p> 畢業(yè)設計外文資料翻譯</p><p> 學 院: </p><p> 專 業(yè): </p><p> 姓 名: </p><p> 學 號:
2、 </p><p> 外文出處:The Design and Implementation of </p><p> ASP Web Site News Management Systems</p><p> 附 件: 1.外文資料翻譯譯文;2.外文原文。 </p><p> 附件1:外文資料翻譯譯文</p>&l
3、t;p> asp的網站新聞管理系統(tǒng)的設計與實現</p><p> 利用ASP和SQL技術開發(fā)的網站新聞管理系統(tǒng),實現了網站新聞的動態(tài)管理,使得對信息的管理更加及時、高效,提高了工作效率。同時對系統(tǒng)的開發(fā)原理、系統(tǒng)的功能特點和設計方案進行了介紹。</p><p> 隨著Internet的普及,越來越多的企業(yè)建立了自己的WWW網站,企業(yè)通過網站可以展示產品,發(fā)布最新動態(tài),與用戶進行
4、交流和溝通,與合作伙伴建立聯(lián)系,以及開展電子商務等。其中新聞管理系統(tǒng)是構成企業(yè)網站的一個重要組成部分,它擔負著雙層作用,一方面可以用來動態(tài)發(fā)布有關新產品或新開發(fā)項目,另一方面又可以及時向顧客公告企業(yè)經營業(yè)績、技術與研發(fā)進展、特別推薦或優(yōu)惠的工程項目、產品和服務,從而吸引顧客,擴大顧客群。</p><p> 傳統(tǒng)的網站新聞管理方式有兩種,一是靜態(tài)HTML頁面,更新信息時需要重新制作頁面然后上傳頁面并修改相應鏈接,
5、這種方式因為效率太低已不多用。二是基于ASP和腳本語言,將動態(tài)網頁和數據庫結合,通過應用程序來處理新聞,這是目前較為流行的做法。但是由于ASP本身的局限性使得系統(tǒng)有一些不可克服的缺陷,而采取了ASP.NET技術的系統(tǒng)性能上有了很大的改善,其主要表現在以下幾方面:</p><p> 1.由于ASP頁面每次打開都必須經過先編譯后解釋的過程,所以頁面在反復打開時速度沒有任何提升,而ASP.NET頁面只需要一次編譯后不
6、需要重新編譯,直到該頁面被修改或Web應用程序重新啟動。這使得在多次訪問時速度有了極大的提升。</p><p> 2.由于ASP沒有提供任何輸出數據為內容的元件,所以在使用ASP撰寫數據庫頁面時只能借助ADO的Record Set對象逐筆讀取記錄,而ASP通過ADO.NET提供的DataGrid等數據庫元件可以直接和數據庫聯(lián)系。</p><p> 3.ASP支持應用程序的實時更新。管理
7、員不必關掉網絡服務器或者甚至不用停止應用程序的運行就可以更新應用文件。應用程序文件永遠不會被加鎖,因此甚至在程序運行時文件就可以被覆蓋。當文件更新后,系統(tǒng)會溫和地轉換到新的版本。</p><p> 4.ASP采取"code-behind"方式編寫代碼使得代碼更易于編寫,結構更清晰,降低了系統(tǒng)的開發(fā)與維護的復雜度和費用。</p><p><b> 1系統(tǒng)的開
8、發(fā)原理</b></p><p> 1.1 基于ASP技術的系統(tǒng)結構模型</p><p> ASP結構是一個三層系統(tǒng):UI層、業(yè)務邏輯層和數據層。</p><p> UI層負責與用戶交互,接收用戶的輸入并將服務器端傳來的數據呈現給客戶。</p><p> 業(yè)務邏輯層負責接收瀏覽器傳來的請求并將請求傳給數據層,同時將請求處理結
9、果發(fā)給瀏覽器。它由Web表單、XML Web服務和組件服務組成。其中Web表單是ASP.NET應用程序的核心所在,它是向客戶呈現數據和信息的基礎,也是響應和處理客戶與顯示的Web表單交互生成的信息和數據的基礎。</p><p> 數據層是通過ADO.NET操縱數據為事務邏輯層提供數據服務,如存儲數據操作結果、返回數據檢索結果等。</p><p> 1.2 ADO.NET訪問數據庫的原理
10、</p><p> 與數據庫相連,ADO.NET提供了如下3種方式:通過ODBC相連;通過OLEDB相連;直接與SQL Server相連。3種方式由于應用層次的差異,使得效率由低到高,獨立性由高到低。對于相連數據庫的數據處理,也有2種方式,即一種是通過Dataset來隔離異構的數據源,另一種是以流方式從數據源讀取(Data Reader方式)。</p><p> 傳統(tǒng)的應用程序是通過先
11、建立到數據庫的連接,在程序的整個運行過程中維護連接的方式來設計的。ASP.NET采取了斷開連接方式的數據結構。當瀏覽器向Web服務器請求網頁時,服務器處理這個請求,并將所請求的網頁發(fā)送給瀏覽器,然后連接就被斷開,直到瀏覽器發(fā)出下一個請求。</p><p> ADO.NET的另一個創(chuàng)新是引入了數據集(Dataset)。一個數據集是內存中提供數據關系圖的高速緩沖區(qū)。數據集對數據源一無所知,它們可以由程序或通過從數據
12、倉庫中調入數據而被生成、填充。不論數據從何處獲取,數據集都是通過使用同樣的程序模板而被操作的,并且它使用相同的潛在的數據緩沖區(qū)。</p><p><b> 2 系統(tǒng)的功能設計</b></p><p> 2.1 系統(tǒng)的功能結構</p><p> 該新聞管理系統(tǒng)可以在Windows 2000 Server操作系統(tǒng)平臺上運行,Web服務器為II
13、S,數據庫服務器為Microsoft SQL Server2000,開發(fā)工具采用的Microsoft Visual Studio .NET和DreamWeaver。其工作流程為:用戶登錄通過權限判斷,普通用戶只能瀏覽、閱讀和查詢新聞,注冊用戶除了可以完成普通用戶的操作外,還可以進入新聞管理模塊進行新聞錄入、修改和刪除的操作。注冊用戶除系統(tǒng)管理員外只能對自己錄入的新聞進行刪改操作。</p><p> 2.2 系統(tǒng)
14、的功能特點</p><p> (1)操作簡單、界面友好:完全控件式的頁面布局,使得新聞的錄入工作更簡便;許多選項包括新聞類別、來源部門等只需要點擊鼠標就可以完成;另外,跟蹤出現的提示信息也讓用戶隨時清楚自己的操作情況。</p><p> ?。?)即時可見:對新聞的處理(包括錄入、修改、刪除)將立即在主頁的對應欄目顯示出來,達到“即時發(fā)布、即時見效”的功能。</p><
15、p> ?。?)功能完善:包括常見網站的新聞管理的各個方面:新聞錄入、瀏覽、刪除、修改、檢索等各個方面,完整地實現了網站對即時新聞的管理要求。</p><p> ?。?)方便移植:針對不同的企業(yè),只需要稍作修改就可以開發(fā)出適合本企業(yè)特點的網站新聞管理系統(tǒng)。 </p><p><b> 3 系統(tǒng)的詳細設計</b></p><p> 系統(tǒng)的
16、主要功能是通過幾個功能模塊來實現的。具體的設計過程如下:</p><p> ?。?)系統(tǒng)登錄:該模塊負責將用戶分為普通用戶和注冊用戶來實現用戶權限的管理。</p><p> ?。?)新聞瀏覽:該模塊負責分頁列出網站所有新聞的信息,包括標題、類型、來源部門字段及發(fā)布日期,每條新聞的標題被做成一個超鏈接,點擊它們就能跳轉頁面進行新聞閱讀。 </p><p> ?。?)新
17、聞閱讀:在其他頁面中點擊標題鏈接即進入新聞閱讀頁面,此時,每條新聞的詳細信息將被取出,包括內容、標題、關鍵字等,并按照相對固定的格式放置在頁面的不同區(qū)域,所有新聞使用大致相同的頁面布局,只是各字段對應的內容不同而已,另外,頁面其它位置,可以動態(tài)放置其他元件,如網站標志logo、頁面廣告banner等鏈接圖片,這樣可以很容易地實現圖文并茂的閱讀效果。</p><p> (4)新聞查詢:該模塊提供了新聞查詢功能,輸
18、入待查找的內容及選定分類信息可以快速地找到符合條件的新聞,并輸出查詢結果。</p><p> ?。?)新聞管理:該模塊負責分頁羅列登錄的注冊用戶曾發(fā)布過且未刪除的新聞信息,用戶可以對該條新聞進行刪除、修改。非新聞發(fā)布者除系統(tǒng)管理員外不具有對該條新聞的處理權限,所以不同用戶進入此頁面將顯示不同的內容。</p><p> (6)新聞錄入和修改:注冊用戶錄入一條新聞所需要的內容,包含標題、關鍵
19、字、類型、來源部門、發(fā)布日期等,同時從登錄模塊得到用戶名,這些信息將被寫入數據庫中保存。該模塊還負責編輯狀態(tài)下的更新,這時,它將根據取得的Title字段值對頁面控件初始化。</p><p> SQL server 簡介</p><p> 1.SQL Server關系數據庫簡介 </p><p> 1.SQL Server是由Microsoft開發(fā)和推廣的關系數
20、據庫系統(tǒng)(DBMS),它最初是由Microsoft、Sybase和Ashton-Tate三家公司共同開發(fā)的,并于1988年推出了第一個OS/2版本。 </p><p> 2.關系數據庫(RDBMS)管理系統(tǒng)功能: </p><p> 維護數據庫數據之間的關系; </p><p> 保證數據存儲的正確性; </p><p> 當出現系統(tǒng)
21、故障的時候,將所有數據恢復到能夠保證一致行的某種狀態(tài) </p><p> 3.RDBMS:SQL Server,Oracle,DB/2,Sybase,Informix </p><p> 4.Non-RDBMS(File-based):Foxpro,Access </p><p> 2、SQL Server 2000的版本 </p><p&
22、gt; SQL Server 2000常見版本有: </p><p> 企業(yè)版(Enterprise Edition) </p><p> 支持所有SQL Server 2000的功能。該版本多用于大中型產品數據庫服務器,并且可以支持大型網站,企業(yè)OLTP(聯(lián)機事務處理)和大型數據倉庫系統(tǒng)OLAP(聯(lián)機分析處理)所要求的性能。 </p><p> 標準版(S
23、tandard Edition) </p><p> 實用范圍是小型的工作組或部門。它支持大多數的SQL Server2000功能。但是,不具有支持大型數據庫,數據倉庫和網站的功能。而且,不支持所有的關系數據庫引擎的功能。 </p><p> 個人版(Personal Edition) </p><p> 主要適用于移動用戶,因為他們經常從網絡上斷開,而運行的
24、應用程序卻仍然需要SQL Server 2000的支持。除了事務處理復制功能以外,能夠支持所有SQL Server 2000標準版支持的特性。 </p><p> 開發(fā)者版(Developer Edition) </p><p> 適用于應用程序開發(fā)的版本,支持除圖形化語言設置以外的SQL Server2000的所有其它功能。該版本主要適用于程序員在開發(fā)應用程序時,將SQL Serve
25、r 2000作為其數據存儲區(qū)。雖然開發(fā)版的功能齊備,但是只被授權為一個開發(fā)和測試系統(tǒng),而不是一個產品服務器。 </p><p> 2.1 SQL Server特點 </p><p> 1.與因特網的集成: </p><p> SQL Server 2000的數據庫引擎全面支持XML(Extensive Markup Language,擴展標記語言),能使用戶很
26、容易地將數據庫中的數據發(fā)布到Web頁面上。 </p><p> 2.可伸縮性與可用性: </p><p> 可跨越從運行Windows 95/98的膝上型電腦到運行Windows 2000的大型多處理器等多種平臺使用。另外,對聯(lián)合服務器,索引視圖等的支持,使得SQL Server 2000企業(yè)版可以升級到最大Web站點所需的性能級別。 </p><p> 3.
27、企業(yè)級數據庫功能: </p><p> SQL Server 2000分布式查詢可以引用來自不同數據庫的數據,而且這些對于用戶來說是完全透明的;分布式數據庫將保證任何分布式數據更新時的完整性;復制可以使我們能夠維護多個數據復本,這些用戶能夠自主地進行工作,然后再將所做的修改合并到發(fā)布數據庫;SQL Server 2000關系數據庫引擎能夠充分保護數據完整性,還可以將管理并發(fā)修改數據庫開銷到最小。 </p&
28、gt;<p> 4.易于安裝,部署和使用: </p><p> SQL Server 2000由一系列的管理和開發(fā)工具組成,這些工具使得在多個站點上進行SQL Server的安裝,部署,管理和使用變得更加容易。開發(fā)人員可以更加快速地交付SQL Server應用程序,而且只需要進行最少的安裝和管理就可以實現這些應用程序。 </p><p><b> 5.數據倉庫
29、: </b></p><p> 數據倉庫是SQL Server 2000中包含的用于分析取和分析匯總數據以進行聯(lián)機分析處理的工具。這個功能只在Oracle和其他更昂貴的DBMS中才有。 </p><p> 2.1.1 SQL Server 2000新特性 </p><p> 全面擴展了SQL Server 7.0的性能,可靠性和易用性。增加了一系列
30、的功能,具體如下: </p><p> 1.在關系數據庫方面的增強 </p><p><b> 2.圖形管理增強 </b></p><p> 3.增強的聯(lián)合數據庫服務器 </p><p> 2.2 SQL Server 2000工具和實用程序 </p><p> SQL Server 2
31、000有8個工具,分別是:</p><p><b> 1.企業(yè)管理器; </b></p><p><b> 2.服務管理器;</b></p><p><b> 3.查詢分析器;</b></p><p><b> 4.事件探查器; </b></
32、p><p> 5.導入和導出數據; </p><p> 6.服務器網絡使用工具; </p><p> 7.客戶端網絡使用工具; </p><p><b> 8.聯(lián)機幫助文檔。</b></p><p> 2.2.1 企業(yè)管理器 </p><p> 企業(yè)管理器是基于一種
33、新的被稱為微軟管理控制臺(Microsoft Management Console)的公共服務器管理環(huán)境,它是SQL Server 2000中最重要的一個管理工具。 </p><p> 企業(yè)管理器不僅能夠配置系統(tǒng)環(huán)境和管理SQL Server,而且由于它能夠以層疊列表的形式來顯示所有的SQL Server對象,因而所有SQL Server對象的建立與管理都可以通過它來完成。 </p><p&
34、gt; 用企業(yè)管理可以完成的操作:</p><p> 1.管理SQL Server服務器;建立與管理數據庫;建立與管理表、視圖、存儲過程、觸發(fā)程序、角色、規(guī)則、默認值等數據庫對象,以及用戶定義的數據類型;備份數據庫和事務日志、恢復數據庫;復制數據庫;設置任務調度;設置警報;提供跨服務器的拖放控制操作;管理用戶賬戶;建立Transact-SQL命令語句以及管理和控制SQL Mail。 </p>&
35、lt;p> 2.在企業(yè)管理器中包含兩個窗口,左側的窗口是以“樹狀目錄”顯示的活動窗口,右側是顯示內容的窗口。 </p><p> 3.單擊左側窗口中的加號,可以展開各個項目包含的子項目。 </p><p> 4.通過選中的某個項目的節(jié)點,可以在右側的窗口中看到該項目包含的內容。 </p><p> 2.2.2服務管理器(Service Manager)
36、 </p><p> SQL Server服務管理器是在服務器端實際工作時最有用的實用程序,服務管理器用來啟動、暫停、繼續(xù)和停止數據庫服務器的實時服務,其提供的服務類型包括:SQL Server、SQL Server代理、Microsoft搜索和分布式事務協(xié)調器等。 </p><p> 附件2:外文原文(復印件)</p><p> The Design and
37、 Implementation of ASP Web Site News Management Systems</p><p> The use of ASP and SQL technology news site management system, to achieve the dynamic management of the news Web site, making the management o
38、f information more timely, efficient, improve the work efficiency. At the same time, the development of systems theory, systems and design features are introduced. </p><p> With the popularization of Intern
39、et, more and more companies set up their own WWW sites, enterprises can display products through the website, publishing the latest developments, with users sharing and communication to establish contact with partners, a
40、s well as e-commerce. Information Management System which is an enterprise Web site an important part of it bears a double role, on the one hand, the dynamic can be used to release the new product or new development proj
41、ects, on the other hand, th</p><p> Management of traditional news sites in two ways, one static HTML page, update the information needed to re-create the page and then upload the page and modify the corres
42、ponding links, the efficiency of this approach is too low because we have little use. The second is based on ASP and scripting languages, dynamic Web pages and databases, through the application of procedures to deal wit
43、h news, this is way more popular. However, due to the limitations of ASP allows the system itself, there are s</p><p> 1. ASP page to open as a result of each must be compiled to explain the process, so whe
44、n the page opens in the rate of repeated there is no upgrade, and only need a ASP.NET page do not need to recompile compiled until the page has been modified or Web Application process restarted. This makes the speed in
45、a number of visits has greatly improved. </p><p> 2. As the ASP does not provide any output data for the content of the components, so writing a database using ASP page can use the Record Set Object ADO to
46、read records of transaction, while the ASP provided through the DataGrid, such as ADO.NET database and database components can be directly Contact. </p><p> 3. ASP support real-time application updates. Adm
47、inistrators do not have to turn off the network server or even do not have to stop running the application can update the application on file. Application documents will never be locked, so even when the program runs in
48、the paper can be overwritten. When the document is updated, the system will convert to the new moderate version. </p><p> 4. ASP take the "code-behind" approach to the preparation of the code make
49、s the code easier to prepare, structure more clearly, reducing the system development and maintenance of the complexity and the cost of.</p><p> 1 System Development Principle</p><p> 1.1 The
50、System Architecture Model of ASP-based Technology</p><p> ASP is a three-tier system structure: UI Layer, Business Logic Tier and data layer.</p><p> UI layer is responsible for interaction wi
51、th the user, receiving user input and server-side data from present to clients. </p><p> Business Logic Tier is responsible for receiving requests from browser requests to the data layers and at the same ti
52、me the results of the request sent to the browser. It consists of Web Forms, XML Web services and service composition components. Web Forms ASP.NET which is the core of the application, it is presented to customers based
53、 on data and information as well as to respond to and deal with customers and display interactive Web form generated based on information and data. </p><p> Data layers to manipulate data through the ADO.NE
54、T layer for business logic to provide data services, such as storing the results of data manipulation and return to the results of data retrieval.</p><p> 1.2 The principle of access to the database ADO.NET
55、</p><p> Connected with the database, ADO.NET provide the following three kinds of ways: through ODBC connected; connected through OLEDB; directly connected with the SQL Server. Application of three kinds o
56、f ways as a result of differences in levels, making the efficiency from low to high, high to low independence. Connected to the database for data processing, there are two kinds of ways, that is, through a Dataset to the
57、 isolation of heterogeneous data sources, and the other is a stream to read from th</p><p> Traditional application is to create a connection to the database, in the process is running the whole way to main
58、tain connections to the design. ASP.NET taken disconnected mode data structure. When a browser requests a page to the Web server, the server to deal with this request, the requested page and send to your browser, and the
59、n connection was disconnected until the next browser request issued. </p><p> ADO.NET Another innovation is the introduction of a data set (Dataset). A data set is the relationship between memory map to pro
60、vide high-speed data buffer. Data set of data sources know that they can be adopted by the program or transferred from the data warehouse data were generated, to fill. Regardless of where the data acquisition, data sets
61、are the same procedure through the use of templates to be operated, and it's potential to use the same data buffer.</p><p> 2 Systems Functional Designs</p><p> 2.1 Systems Function Struct
62、ures</p><p> The news management system in Windows 2000 Server operating system platforms, Web server IIS, the database server for Microsoft SQL Server2000, development tools used in Microsoft Visual Studio
63、. NET and DreamWeaver. Its work processes as follows: the user login through the authority to determine the general user can only browse, read and query information, registered users can be completed in addition to the o
64、rdinary user, but also can enter information for news management module input, modify, </p><p> 2.2 Systems Function Characteristics</p><p> (1) Simple, user-friendly: complete control of page
65、 layout, making information easier entry work; many options including news categories, such as the source of departments only need to click the mouse can be completed; In addition, the follow-up message also appears allo
66、w users to clear their own operations. </p><p> (2) Can be seen immediately: the handling of the press (including the entry, modify, delete) will be the corresponding column on the home page is displayed to
67、 "immediate release, immediate results" function. </p><p> (3) Function: include common site in all aspects of information management: information input, browse, delete, modify, search and other a
68、spects, the full realization of the Web site of the real-time information management requirements. </p><p> (4) To facilitate transplantation: for different enterprises, with some slight modifications need
69、to be able to develop for the company's Web site features news management system.</p><p> 3 Systems Detailed Designs</p><p> Core functions of the system through a number of functional mod
70、ules achieved. Specific design process is as follows: </p><p> ?、?System login: The module responsible for the user are divided into general users and registered users to achieve the management of user right
71、s. </p><p> (2) News View: The module is responsible for all the news page web site lists information, including the title, type, source and date field departments, and each title has been made news a hyper
72、link, click the page they will be able to Jump news reader. </p><p> (3) News reader: in other pages or click the title link to read into the news pages, at this time, detailed information of each informati
73、on will be removed, including the content, title, keywords, and relatively fixed in accordance with the format placed in different pages region, the use of all the news about the same page layout, only the contents of th
74、e field corresponding to different In addition, the location of other pages can be dynamically placed in other components, such as web site log</p><p> (4) News Inquiry: The module provides a press inquiry,
75、 type to be selected to find the content and classification of information can quickly find the information in line with the conditions and results output. </p><p> (5) News Management: The module listed in
76、 the registry is responsible for the registration page the user has issued a news and information and did not delete, the user can press to delete the article, modify. In addition to non-news publisher is not outside the
77、 system administrator has the authority to deal with information which, so different users access to this page will display different content. </p><p> (6) News entry and modification: a press registered us
78、ers need to input the content, including title, keyword, type, source of departments, such as release date, at the same time from the login module to be user name, this information will be saved into the database. The mo
79、dule is also responsible for editing the updated state, then, it will light the Title field values on the page to initialize the control.</p><p> SQL Server Introduction</p><p> 1. SQL Server
80、Relational Database Introduction</p><p> 1.SQL Server is the development and promotion of Microsoft's relational database system (DBMS), it was originally proposed by Microsoft, Sybase and Ashton-Tate t
81、hree companies jointly developed and launched in 1988, the first OS / 2 version. </p><p> 2.Relational database (RDBMS) Management System features: </p><p> The maintenance of the relationship
82、 between the database data; </p><p> Guarantee the correctness of data storage; </p><p> When system failures occur when all the data back to the line to ensure a consistent state </p>
83、<p> 3.RDBMS: SQL Server, Oracle, DB / 2, Sybase, Informix </p><p> 4.Non-RDBMS (File-based): Foxpro, Access</p><p> 2. The Version of SQL Server 2000 </p><p> Common versi
84、on of SQL Server 2000 are: </p><p> Enterprise Edition (Enterprise Edition) </p><p> Support all the functions of SQL Server 2000. The version number of products for large and medium-sized da
85、tabase server, and can support large-scale Web site, enterprise OLTP (online transaction processing) and large-scale data warehouse systems OLAP (Online Analytical Processing) performance required. </p><p>
86、 Standard Edition (Standard Edition) </p><p> Practical scope of the work of small groups or departments. It supports most features of SQL Server2000. However, do not have to support large databases, data w
87、arehouses and web site functionality. Also, do not support all the functions of relational database engine. </p><p> Personal Edition (Personal Edition) </p><p> Mainly applied to mobile users
88、 because they are often disconnected from the network, and run the application still needs the support of SQL Server 2000. In addition to transaction processing functions other than reproduction, to support all SQL Serve
89、r 2000 Standard Edition features support. </p><p> Developers Edition (Developer Edition) </p><p> Apply to the version of application development and support in addition to graphical language
90、 settings other than the SQL Server2000 all other functions. This version is mainly applied to applications programmers in the development, it will be SQL Server 2000 as its data storage area. Although the development of
91、 full-featured version, but only have been authorized to develop and test a system, rather than a product server.</p><p> 2.1 SQL Server Features </p><p> 1. Integration with the Internet: <
92、;/p><p> SQL Server 2000 database engine full support of XML (Extensive Markup Language, Extensible Markup Language), enables users to easily publish the data in the database to the Web page. </p><p
93、> 2. Scalability and availability: </p><p> Across from the laptop running Windows 95/98 computers running the Windows 2000 and other large-scale multi-processor platform. In addition, the Joint server,
94、 view the index and so on, making SQL Server 2000 Enterprise Edition can upgrade to the largest Web site of the performance levels required. </p><p> 3. Enterprise-level database functions: </p><
95、p> SQL Server 2000 distributed query by invoking the data from different databases, and these for the user is completely transparent; distributed database will ensure that any updates to distributed data integrity; c
96、opy will enable us to the maintenance of multiple data Copies of these users to work independently, and then changes into the release database; SQL Server 2000 relational database engine can fully protect data integrity,
97、 management of complications can also modify the database to minimi</p><p> 4. Easy installation, deployment and use: </p><p> SQL Server 2000 from a series of management and development tools
98、, these tools made in a number of sites on the SQL Server installation, deployment, management and use easier. Developers can more quickly deliver SQL Server applications, and only require minimal installation and manage
99、ment of these applications can be achieved. </p><p> 5. Data Warehouse: </p><p> Data Warehouse is included in SQL Server 2000 for analysis of aggregate data access and analysis for online ana
100、lytical processing tool. This feature is only in Oracle and other DBMS in the more expensive can.</p><p> 2.1.1 New Features of SQL Server 2000 </p><p> Comprehensive SQL Server 7.0 extends th
101、e performance, reliability and ease of use. Increase in a series of functions, as follows: </p><p> 1. In regard to the strengthening of relational database </p><p> 2. Enhanced graphical mana
102、gement </p><p> 3. Enhance the joint database server</p><p> 2.2 Tools and utilities of SQL Server 2000 </p><p> SQL Server 2000 there are eight tools are: </p><p>
103、 1. Enterprise Manager;</p><p> 2. Service Manager;</p><p> 3. Query Analyzer;</p><p> 4. Profiler; </p><p> 5 .import and export data;</p><p> 6. the
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網頁內容里面會有圖紙預覽,若沒有圖紙預覽就沒有圖紙。
- 4. 未經權益所有人同意不得將文件中的內容挪作商業(yè)或盈利用途。
- 5. 眾賞文庫僅提供信息存儲空間,僅對用戶上傳內容的表現方式做保護處理,對用戶上傳分享的文檔內容本身不做任何修改或編輯,并不能對任何下載內容負責。
- 6. 下載文件中如有侵權或不適當內容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 計算機類外文翻譯---asp的網站新聞管理系統(tǒng)的設計與實現
- 外文翻譯--asp.net的網站新聞管理系統(tǒng)設計與實現 英文版
- 基于asp.net的網站新聞管理系統(tǒng)的設計與實現
- asp.net的網站新聞管理系統(tǒng)設計與實現的探討
- 外文翻譯--基于.net的新聞管理網站系統(tǒng)設計與實現
- 外文翻譯--基于asp的最新公告與新聞發(fā)布系統(tǒng)
- 基于asp.net的網站群系統(tǒng)設計與實現
- 新聞視頻網站的后臺管理系統(tǒng)設計與實現.pdf
- 基于asp的旅游網站的設計與實現
- 基于asp的旅游網站的設計與實現
- 基于.net的網站新聞發(fā)布系統(tǒng)設計與實現
- 基于asp醫(yī)院管理系統(tǒng)—病歷管理系統(tǒng)的設計與實現
- 基于asp醫(yī)院管理系統(tǒng)—病歷管理系統(tǒng)的設計與實現
- 基于asp的玩友交流網站的設計與實現
- 基于asp的玩友交流網站的設計與實現
- 基于asp旅游網站設計與實現
- 基于asp的民航售票管理系統(tǒng)的設計與實現
- 基于asp的民航售票管理系統(tǒng)的設計與實現
- 基于MongoDB的新聞網站系統(tǒng)設計與實現.pdf
- 高校系新聞網站系統(tǒng)的設計與實現.pdf
評論
0/150
提交評論