* Your assessment is very important for improving the workof artificial intelligence, which forms the content of this project
Download Data Modeling - Temple Fox MIS
Entity–attribute–value model wikipedia , lookup
Data Protection Act, 2012 wikipedia , lookup
Versant Object Database wikipedia , lookup
Concurrency control wikipedia , lookup
Expense and cost recovery system (ECRS) wikipedia , lookup
Data center wikipedia , lookup
Forecasting wikipedia , lookup
Relational model wikipedia , lookup
Data analysis wikipedia , lookup
Information privacy law wikipedia , lookup
Clusterpoint wikipedia , lookup
Data vault modeling wikipedia , lookup
3D optical data storage wikipedia , lookup
THE INFORMATION ARCHITECTURE OF THE ORGANIZATION MIS2502 Data Analytics A Brief Review Transactional Database Analytical Data Store Supports management of an organization’s data Supports managerial decision-making For everyday transactions For periodic analysis This is what is commonly thought of as “database management” This is the foundation for business intelligence The Information Architecture of an Organization Data entry Data extraction Transactional Database Data analysis Analytical Data Store Stores real-time transactional data Stores historical transactional and summary data Called OLTP: Called OLAP: Online transaction processing Online analytical processing The Transactional Database • Stores real-time, transactional data In business, a transaction is the exchange of information, goods, or services. • Examples of transactions • Purchase a product For databases, a transaction is an action performed in a database management system. Operational databases deal with both: they store information about business transactions using database transactions • Enroll in a course • Hire an employee • Data is in real-time • Reflects current state • How things are “now” The Relational Paradigm • How transactional data is collected and stored • Primary Goal: Minimize redundancy • Reduce errors Which of these do you think is more important today • Less space required ? • Most database management systems are based on the relational paradigm • Oracle, DB2, Access, SQL Server What Else is There? • “NoSQL” (Not Only SQL): a catch-all phrase for other stuff • Better geared toward “Big Data” storage • More scalable • Faster storage and retrieval • Cheaper hardware requirements • Less oversight/management (in theory) • Out of necessity, rather than preference • Data is unstructured, must be parsed • Does not lend itself well to analysis Further reading: http://www.techrepublic.com/blog/10things/10-things-you-should-know-about-nosql-databases/1772 Who is Using NoSQL? The Relational Database Airline Reservation Example • A series of tables Reservation with logical associations between them 1 PassengerID Name PassengerID Street SeatID n Name 1 FlightID (relationships) allow the data to be combined n FlightID Flight • The associations Passenger ReservationID AircraftID City State DatePurchased ZipCode Price n FlightNumber DepartureCity ArrivalCity DepartureTime ArrivalTime Aircraft Seat Aircraft 1 AircraftID Type Capacity 1 SeatID 1 n AircraftID RowNumber SeatNumber Class Why more than one table? Reservation • Every reservation has a passenger and a flight • Passengers and flights have an ID number • Split the details off into separate tables This is good because: n FlightID 1 PassengerID Name PassengerID Street SeatID n Name Flight 1 FlightID AircraftID City State DatePurchased ZipCode Price n FlightNumber DepartureCity ArrivalCity DepartureTime ArrivalTime Aircraft Seat Aircraft 1 AircraftID Type • Information is entered and stored once • Minimizes redundancy Passenger ReservationID Capacity 1 SeatID 1 n AircraftID RowNumber SeatNumber Class Analyzing transactional data • Can be difficult to do from a relational database • Having multiple tables is good for storage and data integrity, but bad for analysis • All those tables must be “joined” together before analysis can be done • The solution is the Analytical Data Store Operational databases are optimized for storage efficiency, not retrieval Analytical databases are optimized for retrieval and analysis, not storage efficiency and data integrity The Analytical Data Store • Stores historical and summarized data • “Historical” means we keep everything • Data is extracted from the operational database and reformatted for the analytical database • Most analytical databases use a dimensional paradigm Extract Operational Database Transform Query Data conversion Load Query We’ll discuss this in much more detail later in the course!! Analytical Database Dimension The Dimensional Paradigm Store Data is stored like this around a business event… StoreID StoreAddress StoreCity StoreState Fact StoreType …and can be summarized like this for analysis… M&Ms Ardmore, PA quantity & total price quantity & total price quantity & total price quantity & total price Temple Main quantity & total price quantity & total price quantity & total price quantity & total price Cherry Hill, NJ quantity & total price quantity & total price quantity & total price quantity & total price King of Prussia, PA quantity & total price quantity & total price quantity & total price quantity & total price ProductPrice ProductWeight TotalPrice Dimension Dimension QuantitySold Time TimeID Day Month Year Store TimeID ProductName Doritos Famous Amos SalesID StoreID ProductID Diet Coke Sales ProductID Product Product Mar. 2011 Feb. 2011 Jan. 2011 Dimensional Data and the Data Cube …or it can be expanded in detail like this so that data mining (complex statistical analysis) can be done. Sales ID Qty. Sold Total Price Prod. ID Prod. Name Prod. Price Prod. Weight Store ID Store Address Store City Store State Store Type Time ID Day Month Year 1000 1001 1002 Sales Fact Product Dimension Store Dimension Time Dimension Comparing Operational and Analytical Data Stores Operational Data Store Analytical Data Store Based on Relational paradigm Based on Dimensional paradigm Storage of real-time transactional data Storage of historical transactional data Optimized for storage efficiency and data integrity Optimized for data retrieval and summarization Supports day-to-day operations Supports periodic and on-demand analysis The agenda for the course Weeks 6 through 8 Weeks 1 through 5 Data entry Weeks 9 through 13 Data extraction Data analysis Transactional Database Analytical Data Store Stores real-time transactional data Stores historical transactional and summary data Weeks 14 and 15 Data Visualization