Software Engineering Requires A Decent Multiple Chapters

This approach brings down the costs involved, the chances of delay in product release and the gives the user an option to update their requirements in successive iterative steps (Jacobson & Rumbaugh 1999, pp. 3-13). CHAPTER 2

Oracle and Microsoft SQL Server are among the most widely used databases with a large range of features with regards to their techniques of development and deployment. Both the Oracle 10g and SQL Server 2005 are equipped with a similar feature set with regards to how they aid in SOA (service Oriented Architecture) based application development. They vary in their simplicity of usage. SQL Server 2005 has its different features combined in the database server. Oracle has sections of its functionality distributed among its different products. The application server is not integrated with the database to the same extent as SQL Server. Most of its API's use Java-based services. Oracle does not have any of their editions offered for free as compared to SQL Server 2005 which has its Express edition available for free. Oracle Lite is the least expensive among all its editions but still not free. It does not offer any support for PL/SQL which is the main language for its database and is required to execute the procedures and triggers.

Blob (or Binary Large Object) data is a type of field which has the ability to contain a large quantity of data in each record. This can exist in either text or binary format. Using SQL Server to work on Blob data can have developers encounter with over 8k of data in one record. Many kinds of data types have been used to store blob data over the years. These have been static for a long time until the introduction of SQL Server 2005 where Microsoft came up with several new data types. In earlier versions of SQL Server, such as the 2000 and before, the only data types available were Image, Text and Ntext. The data type Text is meant to store blob data of the non-unicode type while Ntext is meant to store the Unicode type. The Image data type is used for the files in the binary format such as data in compressed form, images and general documents. These can be both in Unicode and non-unicode form. Varchar, Varbinary, NVarchar and Xml are some of the data types used for blob in SQL Server 2005. Most of these require the size of the maximum data which can be stored, to be specified. The maximum field size needs to be decided before blob data can be allocated to them. This can reach as high as 2 gigabytes for each record. This can be 2^31bytes in case the data is of binary or character type or 2^30 in case it is of Unicode type. The costs associated with the SQL Server blob storage can be lowered by using a kind of design known as tiered storage. This method allows the data which is regularly used to be saved on more expensive storage. The remaining inactive data can be saved on cheaper storage. Blob data is not used that frequently. Slower hard drives are utilized to create a Raid array. These Raid arrays developed from the cheaper hard drives are used for storing the second group of files. Considering the amount of data accumulated in the blob columns, tiered storage is the best option in terms of cost. In Tiered storage, the blob data is organized inside a file group created separately. This is done at the time of table creation with the help of the Textimage_On parameter. Each SQL Server table has its blob data stored discrete file group. If the blob data needs to be separated into more than one file, the table can be divided into 2 tables followed by assigning a file group to each.

Oracle has introduced features to support large objects as well. They help in dealing with files such as video, audio and pictures. In versions before Oracle 8, these kinds of media types were associated to Long Raw data types. However it had a several restrictions which made it easier for large object data to be stored outside the database and apply Oracle to link to those locations. Since the advent of Oracle 8, developers have had the option to choose from various new data types for large objects along with the related tools and techniques used to deal with them. Large object data types in oracle can be broadly classified into external and internal. The Binary large object or Blob, Character large object or Clob and the National character large object or Clob constitute the internal type. The...

...

The internal data types can be saved in line with a limit of up to 4k bytes or externally up to 4 gigabytes (based on the size available).
Both Oracle 10g and SQL Server 2005 support the development of XML based applications. XML has come forth as an effective method of exchanging data with its applicability ranging over several applications. It is used in different areas of SOA and web services. These databases support XML based applications by storing XML-based documents for future updates and queries. Both SQL Server and Oracle have the option to authenticate XML documents according to an XML schema before being stored in the database. XQuery and Xpath can be used to query the XML documents which are saved.

Indexing is important to speed up the query processing. SQL server 2005 has the option of B*Tree indexing for the attributes of the XML field such as its paths and values. Apart from that, Path, Property and Value have their individual indexing options available. Oracle on the other hands has the option of text and functional indexing, none of which are directed towards XML. XQuery in its usual form has the option to obtain the XML content without caring about its updates in the database. Oracle uses two methods to face this issue. In a situation where the document is saved in the database as a text object, Oracle allows the complete document to be substituted by another one. Another approach causes the XML document to be broken down and saved in the database as an object-relational object so that traditional methods can be used to revise different sections of the XML document. Both have disadvantages as the former one does not work that well on larger documents where updates be carried out on all parts and the latter one need the developer to have an accurate understanding of how the XML document is related to the underlying objects. SQL server solves this issue by broadening the XQuery functionality by allowing functionalities for updating, adding and deleting values. SQL Server 2005 is capable of storing discrete XML documents in a single XML column. The SQL server XML schema collection confines the kinds of XML documents which can be stored in that column. Additional schema components can be attached onto the existing namespaces. Oracle lacks any equivalent feature. It has another schema where top level element needs to be changed to make room for the updated schema.

The SQL server 2005 and Oracle 10g can both serve as providers and consumers of web services. However some differences show up with regards to the .NET platform. Oracle needs another application known as the Oracle Application Server to act as a web service producer and consumer. This is available for purchase and not included in the Oracle package. This asks the users to devote extra time to learn how it works and lowers productivity. SQL server 2005 on the other hand does not need any such products. The web service functionality of Oracle 10g requires the users to be proficient in Java along with PL/SQL. These functionalities are not combined with Visual studio but instead require the use of the JDeveloper IDE provided by Oracle.

Asynchronous communication linking distributed segments of a program is an essential constituent of SOA based applications. Both SQL server 2005 and Oracle 10 g offer the basic functionalities in this regard. SQL server allows a greater abstraction by making the use of Service Broker easier for developers. Oracle on the other hand uses its advanced queuing method has API's which use enqueue and dequeue based on the Java Messaging Service interface.

SQL server 2005 allows developers to create applications which notify users about events and updates. It can be produced and delivered to the user every time the event associated to it occurs or in a scheduled format decided by the user. There is no exact equivalent feature available in Oracle. It can be organized when multiple technologies such as job scheduling, advanced queuing, triggering and its application server are brought together.

SQL server 2005 allows its queries to be equipped with the notification support system. Every time a command is directed to the SQL server, a notification is produced when that command executes. Oracle does not…

Sources Used in Documents:

REFERENCE LIST

The waterfall model explained Available from:< http://www.buzzle.com/editorials/1-5-2005-63768.asp> [1 July,2010]

What is the waterfall model? Available from:< http://www.selectbs.com/adt/analysis-and-design/what-is-the-waterfall-model> [1 July,2010]

Jacobson, I, Grady, B & Rumbaugh, J. 1999 The Unified Software Development Process, Addison-Wesley Professional, pp.3-13

What is Prototyping ? Available from:< http://www.umsl.edu/~sauterv/analysis/prototyping/proto.html> [2 July,2010]
SDLC-Prototype Model Available from:< http://www.learn.geekinterview.com/it/sdlc/prototype-model.html> [2 July,2010]
Advantages of Prototyping Available from:< http://www.onestoptesting.com/sdlc-models/prototype-model/advantages.asp> [2 July,2010]
Introducing Visual Studio Available from:< http://msdn.microsoft.com/en-us/library/fx6bk1f4(VS.80).aspx > [3 July,2010]
Ruebush, M. April 2005 Comparing SQL Server 2005 and Oracle 10g as a Database Platform for Microsoft .NET Developers:A Comparison of Developer Productivity Available from:< http://webcache.googleusercontent.com/search?q=cache:5Nxax3BwYwAJ:download.microsoft.com/download/a/4/7/a47b7b0e-976d-4f49-b15d-f02ade638ebe/SQL2005andOracle10gasDBPlat.doc+SQL+Server+2005+vs.+oracle+10g&cd=5&hl=en&ct=clnk&gl=us>. [3 July,2010]
Cherry, D SQL Server blob data types for accessing and storing data Available from:< http://searchsqlserver.techtarget.com/tip/SQL-Server-blob-data-types-for-accessing-and-storing-data> [3 July,2010]
Oracle large object (LOB) support Available from:< http://www.dba-oracle.com/t_large_object_lob.htm> [3 July,2010]
< http://sunnytalkstech.blogspot.com/2007/09/visual-studio-2008-vs.-netbeans-60.html > [3 July,2010]
Netbeans 6.5 Vs. Visual Studio 2008 Available from:< http://forums.netbeans.org/topic7487.html>
Netbeans as a J2EE teaching IDE Available from:< http://jpz-log.info/archives/2006/01/04/netbeans-as-a-j2ee-teaching-ide / > [4 July,2010]
Matt. April 1, 2008 Netbeans 6.1 spanks Eclipse and challenges Visual Studio Available from:< http://www.bearfruit.org/2008/04/01/netbeans-6-1-spanks-eclipse-and-challenges-visual-studio/
< http://elegantcode.com/2008/07/10/5-things-i-like-better-about-netbeans-than-visual-studio/
Visual Studio 2010 Vs Netbeans 6.8 Available from:< http://answer2me.com/?p=103> [4 July,2010]


Cite this Document:

"Software Engineering Requires A Decent" (2010, July 06) Retrieved April 19, 2024, from
https://www.paperdue.com/essay/software-engineering-requires-a-decent-9557

"Software Engineering Requires A Decent" 06 July 2010. Web.19 April. 2024. <
https://www.paperdue.com/essay/software-engineering-requires-a-decent-9557>

"Software Engineering Requires A Decent", 06 July 2010, Accessed.19 April. 2024,
https://www.paperdue.com/essay/software-engineering-requires-a-decent-9557

Related Documents

If the sequence characteristic of the waterfall model implied a difficulty in reverting to phases that had been deemed as completed, with the UML structure, new phases can simply be added into the model and treated in connection to the phases that are actually impacted and to which these new phases relate to. One of the disadvantages of UML is that the entire modeling process is, in fact, just an

For example, a medicine related website will be different from bookstore advertisement site. Customers are also different as well as managerial staff. But it is observed that same it project manager is working on both projects simultaneously. In order to keep solve this versatility issue, an it professional will have to cover each and every knowledge in such a way that he can understand what are the requirements that user

To protect themselves, many Americans chose to avoid working with or becoming friends with those who immigrated. A lack of trust permeated everything that the Americans did in regards to the immigrants, at least with the men. This was not always true of the women, as they often got along together and shared the trials and difficulties of raising families. However, many men who owned shops and stores would not

competitive and global market, it is essential that companies have a means of continually making improvements to their products and services. This is called the total improvement process or quality management system (QMS). A QMS can take a variety of forms in order to consistently meet customer requirements. A QMS offers a number of benefits to an organization: enhanced customer satisfaction and confidence and improved market reputation and market

Similarly, the Air Force needed no only some intelligent reporting capabilities, but a way that Air Force personnel, government employees, and civilian IT contractors would work together in the evaluation of applications and reports in a more robust and real-time manner. "The intent was to provide the Keystone user community the ability to do more complex financial analysis and reporting on a "self-service" basis to reduce overall system maintenance and

Ford Motor Company
PAGES 10 WORDS 2561

Ford Motor Company Analysis Ford's History, Development and Growth As Ford Motor Company itself proudly declares, "The dream became a business." The inception of Ford is one of the critical steps in the industrialization of America and the West in general. According to Ford's public relations department, "Ford Motor Company entered the business world on June 16, 1903, when Henry Ford and 11 business associates signed the company's articles of incorporation. With