Free Essay

Database

In:

Submitted By k0jo0912
Words 1906
Pages 8
Basic Relational Model
References:
Chapter 3: The Relational Data Model &
Relational Database Constraints
From Elmasri and avathe; Pearson ew
International Edition, 6th Edition
1

Outline
• The Relational Data Model and
Relational Database Constraints
• Relational Model Constraints and Relational Database Schemas
• Update Operations, Transactions, and Dealing with Constraint Violations

2

The Relational Data Model and
Relational Database Constraints
• Relational model
– First commercial implementations available in early 1980s
– Has been implemented in a large number of commercial systems

• Hierarchical and network models
– Preceded the relational model

3

Relational Model Concepts
• Represents data as a collection of relations
• Table of values
– Row
• Represents a collection of related data values
• Fact that typically corresponds to a real-world entity or relationship
• Tuple

– Table name and column names
• Interpret the meaning of the values in each row attribute 4

Relational Model Concepts (contd)

5

Domains, Attributes,
Tuples, and Relations
• Domain D
– Set of atomic values

• Atomic
– Each value indivisible

• Specifying a domain
– Data type specified for each domain

6

Domains, Attributes,
Tuples, and Relations (contd)
• Relation schema R
– Denoted by R(A1, A2, ...,An)
– Made up of a relation name R and a list of attributes, A1, A2, ..., An

• Attribute Ai
– Name of a role played by some domain D in the relation schema R

• Degree (or arity) of a relation
– Number of attributes n of its relation schema
7

Domains, Attributes,
Tuples, and Relations (contd)
• Relation (or relation state)
– Set of n-tuples r = {t1, t2, ..., tm}
– Each n-tuple t >
• Ordered list of n values t =
• Each value vi, 1 ≤ i ≤ n, is an element of dom(Ai) or is a special NULL value

8

Domains, Attributes, Tuples, and Relations (contd)
• Relation (or relation state) r(R)
– Mathematical relation of degree n on the domains dom(A1), dom(A2), ..., dom(An)
– Subset of the Cartesian product of the domains that define R:
• r(R) ⊆ (dom(A1) × dom(A2) × ... × dom(An))

9

Domains, Attributes, Tuples, and Relations (contd)
• Cardinality
– Total number of values in domain

• Current relation state
– Relation state at a given time
– Reflects only the valid tuples that represent a particular state of the real world

• Attribute names
– Indicate different roles, or interpretations, for the domain
10

Characteristics of Relations
• Ordering of tuples in a relation
– Relation defined as a set of tuples
– Elements have no order among them

• Ordering of values within a tuple and an alternative definition of a relation
– Order of attributes and values is not that important – As long as correspondence between attributes and values maintained
11

Characteristics of Relations
(contd)
• Alternative definition of a relation
– Tuple considered as a set of (, ) pairs – Each pair gives the value of the mapping from an attribute Ai to a value vi from dom(Ai)

• Use the first definition of relation
– Attributes and the values within tuples are ordered
– Simpler notation
12

Characteristics of Relations (contd)

Characteristics of Relations
(contd)
• Values and NULLs in tuples
– Each value in a tuple is atomic
– Flat relational model
• Composite and multivalued attributes not allowed
• First normal form assumption

– Multivalued attributes
• Must be represented by separate relations

– Composite attributes
• Represented only by simple component attributes in basic relational model
14

Types of Attributes (1)
• Simple
– Each entity has a single atomic value for the attribute. For example, SSN or Sex.

• Composite
– Attribute may be composed of several components.
For example:
• Address (Apt#, House#, Street, City, State, ZipCode, Country), or
• Name (FirstName, MiddleName, LastName).

• Composition may form a hierarchy where some components are themselves composite.

• Multi-valued
– An entity may have multiple values for that attribute. For example, Color of a CAR or PreviousDegrees of a
STUDENT.
• Denoted as {Color} or {PreviousDegrees}.
Slide 3- 15

Types of Attributes (2)
• In general, composite and multi-valued attributes may be nested arbitrarily to any number of levels, although this is rare.
– For example, PreviousDegrees of a STUDENT is a composite multi-valued attribute denoted by
{PreviousDegrees (College, Year, Degree,
Field)}
– Multiple PreviousDegrees values can exist
– Each has four subcomponent attributes:
• College, Year, Degree, Field
Slide 3- 16

Example of a Composite Attribute

Slide 3- 17

Characteristics of Relations
(contd)
• NULL values
– Represent the values of attributes that may be unknown or may not apply to a tuple
– Meanings for ULL values
• Value unknown
• Value exists but is not available
• Attribute does not apply to this tuple
(also known as value undefined)

18

Characteristics of Relations
(contd)
• Interpretation (meaning) of a relation
– Assertion
• Each tuple in the relation is a fact or a particular instance of the assertion

– Predicate
• Values in each tuple interpreted as values that satisfy predicate

19

Relational Model Notation
• Relation schema R of degree n
– Denoted by R(A1, A2, ..., An)

• Uppercase letters Q, R, S
– Denote relation names

• Lowercase letters q, r, s
– Denote relation states

• Letters t, u, v
– Denote tuples
20

Relational Model Notation
• Name of a relation schema: STUDENT
– Indicates the current set of tuples in that relation • Notation: STUDENT(Name, Ssn, ...)
– Refers only to relation schema

• Attribute A can be qualified with the relation name R to which it belongs
– Using the dot notation R.A
21

Relational Model Notation
• n-tuple t in a relation r(R)
– Denoted by t =
– vi is the value corresponding to attribute Ai

• Component values of tuples:
– t[Ai] and t.Ai refer to the value vi in t for attribute Ai
– t[Au, Aw, ..., Az] and t.(Au, Aw, ..., Az) refer to the subtuple of values from t corresponding to the attributes specified in the list 22

Relational Model Constraints
• Constraints
– Restrictions on the actual values in a database state – Derived from the rules in the miniworld that the database represents

• Inherent model-based constraints or implicit constraints
– Inherent in the data model

23

Relational Model Constraints (contd)
• Schema-based constraints or explicit constraints – Can be directly expressed in schemas of the data model • Application-based or semantic constraints or business rules
– Cannot be directly expressed in schemas
– Expressed and enforced by application program
24

Domain Constraints
• Typically include:









Numeric data types for integers and real numbers
Characters
Booleans
Fixed-length strings
Variable-length strings
Date, time, timestamp
Money
Other special data types
25

Key Constraints and Constraints on NULL Values
• No two tuples can have the same combination of values for all their attributes.
• Superkey
– No two distinct tuples in any state r of R can have the same value for SK

• Key
– Superkey of R
– Removing any attribute A from K leaves a set of attributes K that is not a superkey of R any more
26

Key Constraints and Constraints on NULL Values (contd)
• Key satisfies two properties:
– Two distinct tuples in any state of relation cannot have identical values for (all) attributes in key
– Minimal superkey
• Cannot remove any attributes and still have uniqueness constraint in above condition hold

27

Key Constraints and Constraints on NULL Values (contd)
• Candidate key
– Relation schema may have more than one key

• Primary key of the relation
– Designated among candidate keys
– Underline attribute

• Other candidate keys are designated as unique keys
28

Key Constraints and Constraints on
NULL Values (contd)

Relational Databases and
Relational Database Schemas
• Relational database schema S
– Set of relation schemas S = {R1, R2, ..., Rm}
– Set of integrity constraints IC

• Relational database state
– Set of relation states DB = {r1, r2, ..., rm}
– Each ri is a state of Ri and such that the ri relation states satisfy integrity constraints specified in IC
30

Relational Databases and Relational
Database Schemas (contd)
• Invalid state
– Does not obey all the integrity constraints

• Valid state
– Satisfies all the constraints in the defined set of integrity constraints IC

31

Integrity, Referential Integrity, and Foreign Keys
• Entity integrity constraint
– No primary key value can be NULL

• Referential integrity constraint
– Specified between two relations
– Maintains consistency among tuples in two relations 32

Integrity, Referential Integrity, and Foreign Keys (contd)
• Foreign key rules:
– The attributes in FK have the same domain(s) as the primary key attributes PK
– Value of FK in a tuple t1 of the current state r1(R1) either occurs as a value of PK for some tuple t2 in the current state r2(R2) or is NULL

33

Integrity, Referential Integrity, and Foreign Keys (contd)
• Diagrammatically display referential integrity constraints
– Directed arc from each foreign key to the relation it references

• All integrity constraints should be specified on relational database schema

34

Other Types of Constraints
• Semantic integrity constraints
– May have to be specified and enforced on a relational database
– Use triggers and assertions
– More common to check for these types of constraints within the application programs

35

Other Types of Constraints
(contd)
• Functional dependency constraint
– Establishes a functional relationship among two sets of attributes X and Y
– Value of X determines a unique value of Y

• State constraints
– Define the constraints that a valid state of the database must satisfy

• Transition constraints
– Define to deal with state changes in the database 36

Update Operations, Transactions, and Dealing with Constraint
Violations
• Operations of the relational model can be categorized into retrievals and updates
• Basic operations that change the states of relations in the database:
– Insert
– Delete
– Update (or Modify)
37

Example COMPANY Database
• We need to create a database schema design based on the following (simplified) requirements of the COMPANY Database:
– The company is organized into
DEPARTMENTs. Each department has a name, number and an employee who manages the department. We keep track of the start date of the department manager.
A department may have several locations.
– Each department controls a number of
PROJECTs. Each project has a unique name, unique number and is located at a single location.
Slide 3- 38

COMPANY Database (Contd.)
– We store each EMPLOYEE’s social security number, address, salary, sex, and birthdate.
• Each employee works for one department but may work on several projects.
• We keep track of the number of hours per week that an employee currently works on each project.
• We also keep track of the direct supervisor of each employee. – Each employee may have a number of
DEPENDENTs.
• For each dependent, we keep track of their name, sex, birthdate, and relationship to the employee.
Slide 3- 39

40

41

42

The Insert Operation
• Provides a list of attribute values for a new tuple t that is to be inserted into a relation R
• Can violate any of the four types of constraints • If an insertion violates one or more constraints – Default option is to reject the insertion

43

The Delete Operation
• Can violate only referential integrity
– If tuple being deleted is referenced by foreign keys from other tuples
– Restrict
• Reject the deletion

– Cascade
• Propagate the deletion by deleting tuples that reference the tuple that is being deleted

– Set null or set default
• Modify the referencing attribute values that cause the violation 44

The Update Operation
• Necessary to specify a condition on attributes of relation
– Select the tuple (or tuples) to be modified

• If attribute not part of a primary key nor of a foreign key
– Usually causes no problems

• Updating a primary/foreign key
– Similar issues as with Insert/Delete
45

The Transaction Concept
• Transaction
– Executing program
– Includes some database operations
– Must leave the database in a valid or consistent state • Online transaction processing (OLTP) systems – Execute transactions at rates that reach several hundred per second
46

Summary
• Characteristics differentiate relations from ordinary tables or files
• Classify database constraints into:
– Inherent model-based constraints, explicit schema-based constraints, and applicationbased constraints

• Modification operations on the relational model: – Insert, Delete, and Update
47

Similar Documents

Premium Essay

Database

...needed to build a database for the scheduling process. * Describe the advantages and disadvantages of moving the schedule to a database. * Create a graphical representation of your proposed database environment. * Explain how referential integrity can prevent mistakes in a database. Do the advantages outweigh the difficulty of setting it up? * Impress your boss by creating a database in Microsoft Access that will match trainers with courses and meet the following requirements: * Two (2) tables, one (1) containing trainer information and the other containing course information. Create data for five (5) instructors and five (5) courses. The trainer data should include: employee ID number, last name, first name, department, and email address. The course data should include: course number, course name, trainer employee ID number, and training location. * A relationship should exist between the tables. * Use referential integrity to make sure that each course has a valid trainer assigned to it. Week 7 Assignment 4 * Discuss the requirements needed to build a database for the scheduling process. The first step in creating a database is creating a plan that serves both as a guide to be used when implementing the database and as a functional specification after it has been implemented. The complexity and detail of a design is dictated by the complexity and size of the database application as well as the user population. A database can be relatively...

Words: 681 - Pages: 3

Premium Essay

Databases

...University of Phoenix Material Determining Databases and Data Communications Read Scenario 1 and Scenario 2 below. Write a paper of no more than 1,500 words in which you respond to the questions designated for both scenarios. Scenario 1: You are a marketing assistant for a consumer electronics company and are in charge of setting up your company’s booth at trade shows. Weeks before a show, you meet with the marketing managers and determine what displays and equipment they want to display. Then, you identify each of the components that need to be shipped and schedule a shipper to deliver them to the trade show site. You then supervise trade show personnel as they set up the booths and equipment. After the show, you supervise packing the booth and all the equipment as well as schedule its shipment back to your home office. When the equipment arrives, you check it into your warehouse to ensure that all pieces of the booth and all the equipment are returned. If there are any problems due to shipping damage or loss, you handle those problems. Your job is important; at a typical show you are responsible for more than a quarter-million dollars of equipment. • In Scenario 1: o You need to track data about booth components, equipment, shippers, and shipment. List typical fields for each type of data. Provide an example of two relationships that you need to track. o Do you need a database system? If not, can Excel® handle the data and the output? What...

Words: 436 - Pages: 2

Premium Essay

Database

...or the programs in such a way that they become in machine readable form. Once the system is done with the coding stage it tests the systems and sees to it that it is working as per the expectations or not. System implantation is one of the most vital phases as in this phase the analyst actually gives the system to the customer and expects for a positive feedback. Finally, the system maintenance is that the analyst needs to maintain the system and see to it that it working within the standards set. He needs to maintain the system by removing the defects of flaws occurred. I think this relates to database development because in 1960 the developers, Elliott and Strachan and Radford developed large scale functional business systems in an age of large scale business conglomerates. Information systems activities revolved around heavy data processing and number crunching routines. The database is also a design lie...

Words: 368 - Pages: 2

Premium Essay

Database

...DATABASE ASSIGNEMENT ONLINE STORE DATABSE TABLE NAME * STUDENT/CUSTOMER * ENROLLMENT * COURSES * CATEGORY * ORDERS * ORDER DETAILS * PAYMENT * PRODUCT * SHIPPERS * SUPPLIER/COMPANY TABLES ATTRIBUTES STUDENT/CUSTOMER STUDENT table contain attribute such as: * STUDENT ID-PRIMARY KEY * FIRST NAME * LAST NAME * ADDRESS * POSTAL CODE * CITY * STATE * COUNTRY * PHONE * EMAIL * PASSWORD * CREDIT CARD * CREDIT CARD TYPE ID * BILLING ADDRESS * SHIP ADDRESS * DATE ENTERED ENROLLMENT ENROLLMENT table contain attribute such as: * STU ID-PRIMARY KEY * COURSE ID-PRIMARY KEY * SEMESTER-PRIMARY KEY * INTAKE COURSES COURSE table contain attribute such as: * COURSE ID-PRIMARY KEY * COURSE NAME * FACULTY CATEGORY CATEGORY table contain attribute such as: * CATEGORY ID-PRIMARY KEY * CATEGORY NAME * DESCRIPTION * PICTURE * ACTIVE ORDERS ORDERS table contain attribute such as: * ORDER ID * STUDENT ID * PAYMENT ID * SHIPPER ID * ORDER NUMBER * ORDER DATE * SHIPDATE * REQUIRED DATE * SALE TAX * TIME STAMP * TRANSACTION STATUS * FULFILED * DELETED * PAID * PAYMENT DATE ORDER DETAILS ORDERDATAILS table contain attribute such as: * ORDER IDs-PRIMARY KEY * PRODUCT IDs * ORDER NUMBER * PRICE * QUANTITY * DISCOUNT * TOTAL * IDSKU *...

Words: 289 - Pages: 2

Premium Essay

Databases

...Examples of database and table creation The following examples use the create keyword to create the sample staff database and define the tables. These example OQL statements illustrate the use of the column constraints and the default keyword. Example 1 create database staff; // creates the staff database The following insert defines the managers table. create table staff.managers ( EmployeeID int NOT NULL PRIMARY KEY, Name text NOT NULL, Department text default "Sales", Gender text, Age int, unique ( EmployeeID ) // indicates that the data in the // EmployeeID column must be unique. ); For the managers table: • The EmployeeID and Name columns cannot be NULL. • The EmployeeID column is the primary key and must be unique. • If no value is inserted into the Department column for a given record it takes the value "Sales". Example 2 The following insert creates the staff.employees table. create table staff.employees ( EmployeeID int NOT NULL PRIMARY KEY, Name text NOT NULL, Skills list type text, Gender text, Age int // There is no comma here because this ...

Words: 978 - Pages: 4

Premium Essay

Database

...meet the problems or opportunities of the business. 1) ___A. database analysis____ A) Database analysts B) Users C) Systems analysts D) Programmers TRUE/FALSE. Write 'T' if the statement is true and 'F' if the statement is false. 2) Database development projects are never done in a bottom-up fashion. 2) __False_ 3) A well-structured database establishes the entities between relationships in order to derive the desired information. 3) _False_ ESSAY. Write your answer in the space provided or on a separate sheet of paper. 4) Provide a brief overview of the various components of the database environment. TRUE/FALSE. Write 'T' if the statement is true and 'F' if the statement is false. 5) Database processing programs are coded and tested during the design stage of the systems development life cycle. 5) __F__ MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. 6) Organizing the database in computer disk storage is done in the ________ phase. 6) _Design__ A) analysis B) design C) implementation D) maintenance 7) A workgroup database is stored on a central device called a(n): 7) __c. server_____ A) client. B) network. C) server. D) remote PC. TRUE/FALSE. Write 'T' if the statement is true and 'F' if the statement is false. 8) Many of the disadvantages of file processing systems can also be limitations of databases. 8) ___T____ MULTIPLE CHOICE. Choose the one alternative that...

Words: 336 - Pages: 2

Premium Essay

Database

...Software Requirements Specification October 28, 2013 Window App for Sending SMS to mobiles via internet from your computer Submitted by: Muhammad Gulfam Submitted to: Engr. Natasha Nigar Software Engineering Table of Contents Table of contents……………………………………………………………………. List of figures……………………………………………………………………….. 1. Introduction………………………………………………………………….3 1. Purpose……………………………………………………………...3 2. Scope of project……………………………………………………...3 3. Glossary……………………………………………………………...3 4. Overview of document……………………………………………….4 2. Overall Description……..…………………………………………………......5 2.1. System Environment...……………………………………………….5 2.2. Functional Requirement Specification ……………...……………….6 2.2.1. User use cases………………………………………………...6 2.3. User characteristics …………………………………………………….11 2.4. Non Functional Requirements ……………………………….…………11 3. Requirement Specification …………………………………………………..12 3.1 Functional Requirements ……………………………………………12 List of diagrams Fig.1 System Environment ………………………………………………………….3 1.0. Introduction 1.1. Purpose The purpose of this document is to present a detailed description of the Window App for Sending SMS to mobiles via internet from your computer. It will explain the purpose and features of the system, the interfaces of the system, what the system will do, the constraints under which it must...

Words: 2905 - Pages: 12

Premium Essay

Database

...Jackie Tau PT2520/Database March 23, 2013 Lab 1.2 –Define Major Topics for a Database Nouns | Major Topic | Hospitals | Conducting a double blind test of a new depression drug | Doctors | Need to be able to see their own patient’s information and be able to enter blood pressures, blood results, depressions indicators, notes, etc. | Patients | Should be able to see their own medical profile, doctor notes | Drugs | A new drug will be dispersed in generic bottles, given to half of the patients for depression & to test the side effects. | Lab1.3- Create a Statement of Work Grandfield College: There is a law that requires businesses’ including schools, track their software. It is important to know what software the school owns, the versions, & license agreement. They’re a several licensing schemes. The least restrictive is a site that allows am institution to have a copy of the software in any machine in the school property. It is also important for the school to know which software is installed on the machine, location & which users have access. The school just wants to track the faculty & staff computers & software. For students it will be separate & treated as a second project later. Lab 1.4 –Challenge Activity 1. Describe a situation in which the database might become inconsistent. * Transaction failure, database system failure, 2. How could a relational database ensure data consistency? * Data integrity 3. What...

Words: 262 - Pages: 2

Free Essay

Database

...SOURCES FOR INDUSTRIES AND COMPANIES 1. Plunkett Research Online http://cufts2.lib.sfu.ca/CRDB4/BVAS/resource/10747 This is actually a collection of "industry almanac" ebooks from one publisher, rather than a normal article or report database.  Each title will have a general overview of the industry, followed by a long directory of key companies, all in a downloadable ebook format. 2. IBISWorld http://cufts2.lib.sfu.ca/CRDB4/BVAS/resource/10535 IBISWorld includes Canadian, US, China, and Global report modules.  It provides industry reports that touch on things like barriers to entry and concentration, and it includes a list of a few top companies in each industry.  3. MarketLine There are hundreds of MarketLine industry reports in both our ORBIS and Business Source Complete databases. We could also use the same database to extract company reports on major firms in that field. http://cufts2.lib.sfu.ca/CRDB4/BVAS/resource/6022   4. Factiva and LexisNexis are some of the best places to start if you want to start understanding who the key publishers (government agencies, industry associations, etc.) are in a given field.  You may get lots of press releases on strategic alliances, M&As, joint ventures, etc. 5. International Market Research http://www.lib.sfu.ca/help/subject-guides/business/international-market  6. Industry Surveys http://www.lib.sfu.ca/help/subject-guides/business/industry-surveys 7. Passport GMID http://cufts2...

Words: 402 - Pages: 2

Premium Essay

Database

...Database: Database is a group or collection of information which are assembled in such a way that a computer program can easily access the stored information and select required pieces of data. Databases are characterized in such a way that that it helps to store, retrieve, modify and delete data which is linked with various data processing operations. Advantages of Databases: • It helps to control data redundancy by centralizing databases although it is not necessary to eliminate all redundancy because sometimes it is used to store multiple copies of data due to business and technical reasons. • It helps to enforce integrity by enforcing specific integrity constraints which increases data integrity and independence of application programs. • It improves data security by restricting unauthorized access. • It helps to create an environment in which end users have easy access to data which helps them to respond quickly to changes in their environment. • It provides a backup for recovering from hardware or software failures. Disadvantages of Databases: • Database systems come at high cost which includes specific and sophisticated hardware, software and personnel for operating and maintaining this database system. • The complexity and breadth of functionality makes this system an extremely large piece of software which occupies large amount of disk space and requiring substantial amounts of memory to run efficiently. • There is a higher impact of failure due to the centralization...

Words: 252 - Pages: 2

Premium Essay

Database

...IST 792 paper 2 Database security is a growing concern evidenced by an increase in the number of reported incidencets of loss of unauthorized exposure to sensitive data. As the amount of data collected, retained, and shared electronically expands, so does the need to understand database security. (Murray, 2010) Database security concerns the use of a broad range of information security controls to protect databases (potentially including the data, the database applications or stored functions, the database systems, the database servers and the associated network links) against compromises of their confidentiality, integrity and availability. It involves various types or categories of controls, such as technical, procedural/administrative and physical. Database security is a specialist topic within the broader realms of computer security,information security and risk management. Security risks to database systems include, for example: * Unauthorized or unintended activity or misuse by authorized database users, database administrators, or network/systems managers, or by unauthorized users or hackers (e.g. inappropriate access to sensitive data, metadata or functions within databases, or inappropriate changes to the database programs, structures or security configurations); * Malware infections causing incidents such as unauthorized access, leakage or disclosure of personal or proprietary data, deletion of or damage to the data or programs, interruption or denial of...

Words: 524 - Pages: 3

Premium Essay

Database

...Introduction $  $  • Purpose of Database Systems • Data Definition Language • Data Manipulation Language • Transaction Management & ' & • Storage Management • Database Administrator • Database Users • Overall System Structure 1.1 Silberschatz, Korth and Sudarshan c 1997 Database Systems Concepts Database Management System (DBMS) • Collection of interrelated data • Set of programs to access the data • DBMS contains information about a particular enterprise • DBMS provides an environment that it both convenient and efficient to use Database Systems Concepts 1.2 Silberschatz, Korth and Sudarshan c 1997 ' & ' & Purpose of Database Systems $  $  Database management systems were developed to handle the following difficulties of typical file-processing systems supported by conventional operating systems. • Data redundancy and inconsistency • Difficulty in accessing data • Data isolation – multiple files and formats • Integrity problems • Atomicity of updates • Concurrent access by multiple users • Security problems Database Systems Concepts 1.3 Silberschatz, Korth and Sudarshan c 1997 View of Data An architecture for a database system view level view 1 view 2 … view n logical level physical level Database Systems Concepts 1.4 Silberschatz, Korth and Sudarshan c 1997 ' & ' & Levels of Abstraction $  $  • Physical level: describes how a record (e.g., customer) is stored. • Logical level: describes data stored in database, and the relationships among the...

Words: 1023 - Pages: 5

Premium Essay

Database Environment

...The Getty Provenance Institute’s database (The Gettys research institute, 2012) contains 1.1 million records. All of these records can be used for a wide variety of research. According to the institute the database can be used for assistance in finding information for Projects, and for the Study of Collecting. According to the Database, “The J. Paul Getty Museum acquired The Entombment (ca. 1612) by Peter Paul Rubens in a Christie's sale in 1992. At that time, the provenance of the painting could only be traced as far back as the mid-19th century. The number 146, located on the face of the painting, appeared to be an inventory number (the Getty Research Institute, 2012). A search in the Provenance Index's Archival Inventories database retrieved a single record in which the artist name (Rubens) and item number (146) matched. The search lead to a 1651 inventory preserved in the Archivo de la Casa de Alba, Palacio de Liria in Madrid, which lists this Rubens painting. Possibly its first owner was Gaspar de Haro y Guzmán Carpio (1629–1687)”. Other Institutions are not as lucky some. Some Museums are not so fortunate to find the item number associated with the picture. When it is time to introduce the collections into a database, curators of small museums find themselves in a little bit of trouble. The features and capabilities offered by the newer commercial and professional collection systems are more than they will ever need, more than they can support and more than they...

Words: 1164 - Pages: 5

Premium Essay

Database Program

...New Database Program for ACCC Michele Ritchie SCI110 – Introduction to Physical Science Instructor Casey Bethel February 17, 2016 The Scientific Method The scientific method is a way to ask and answer scientific questions by making observations and doing experiments. The steps of the scientific method are to ask a question, do background research, construct a hypothesis, test your hypothesis by doing an experiment, analyze your data and draw a conclusion, and communicate your results. Problem Statement At American Classic Carpet Care, a nationwide commercial and retail carpet cleaner, we have several different databases that we use for our client base. Each database contains a certain type of business contact. For example, one database is for hotels only, another is for restaurants only. Then, we also have separate databases for local work and out of state work. As you can see, one restaurant or hotel could potentially be put in more than one database. Currently, we use the Pro 2011 version of ACT!. This version is not set up to transfer information from one database to the other automatically. Manually transferring information one client at a time is very time consuming. Overview of Alternatives Alternative #1- Upgrade to ACT! Premium: This application allows you to transfer data from one database to the other, along with many other updated features of the ACT! Program. For example, optimized template storage makes it easy to quickly navigate and locate all...

Words: 647 - Pages: 3

Free Essay

No Sql Databases

...INSY 5337 Data Warehousing – Term Paper NoSQL Databases: An Introduction and Comparison between Dynamo, MongoDB and Cassandra Authored ByNitin Shewale Aditya Kashyap Akshay Vadnere Vivek Adithya Aditya Trilok Abstract Data volumes have been growing exponentially in recent years, this increase in data across all the business domains have played a significant part in the analysis and structuring of data. NoSQL databases are becoming popular as more organizations consider it as a feasible option because of its schema-less structure along with its capability of handling BIG Data. In this paper, we talk about various types of NoSQL databases based on implementation perspective like key store, columnar and document oriented. This research paper covers the consolidated applied interpretation of NoSQL system, depending on the various database features like security, concurrency control, partitioning, replication, Read/Write implementation. We also would draw out comparisons among the popular products and recommend a particular NoSQL solution on the above mentioned factors. 1. Introduction Until recently, Relational database systems have been on the forefront of data storage and management operations. The advent of mobile applications that requires real time analysis like GPS based services, banking and social media has led to huge unstructured data being produced every second. Traditional RDBMS systems have found it difficult to cater to these huge chunks of unstructured...

Words: 4246 - Pages: 17