+ Types of Data IST210 Class Lecture. + What kind of data do you have? Class Schedules Contacts Names Phone Numbers Address Email Food Specials Movies,

Slides:



Advertisements
Similar presentations
Database Basics I101 Summer 2006 Copyright 2004, Matt Hottell.
Advertisements

IS605/606: Information Systems Instructor: Dr. Boris Jukic
Structured Query Language - SQL Carol Wolf Computer Science.
CSCI 260 Database Applications Chapter 1 – Getting Started.
CSCI 150 Database Applications Chapter 1 – Getting Started.
Using Templates Object-Oriented Programming Using C++ Second Edition 11.
Fundamentals, Design, and Implementation, 9/e Chapter 7 Using SQL in Applications.
Getting Started Chapter One DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 5 th Edition.
Getting Started Chapter One DATABASE CONCEPTS, 7th Edition
Database Software Application
Working with Mail Merge
N. J. Taylor Database Management Systems (DBMS) 1.
Page 1 ISMT E-120 Desktop Applications for Managers Introduction to Microsoft Access.
Relational Database Need to Knows. What is a database? Data - is just a pile of numbers or stats. A business "organises" the data to be meaningful and.
McGraw-Hill/Irwin © 2004 by The McGraw-Hill Companies, Inc. All rights reserved. Chapter 9 Processing the Data.
Getting Started Chapter One DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 6 th Edition.
A SPREADSHEET: is an electronic version of a ledger. consists of a grid with columns and rows. is a computation tool. can accurately compute mathematical.
DAVID M. KROENKE’S DATABASE PROCESSING, 10th Edition © 2006 Pearson Prentice Hall 7-1 David M. Kroenke’s Chapter Seven: SQL for Database Construction and.
Databases. Database A database is an organized collection of related data.
1 Advanced Databases (CM036): Lecture # 5 ( Object-Relational and Nested-Relational Databases) Introduction to Object-Relational features of Oracle 9i.
IST 210: ORGANIZATION OF DATA Chapter 1. Getting Started IST210 1.
Chapter 4 Introduction to MySQL. MySQL “the world’s most popular open-source database application” “commonly used with PHP”
2 pt 3 pt 4 pt 5pt 1 pt 2 pt 3 pt 4 pt 5 pt 1 pt 2pt 3 pt 4pt 5 pt 1pt 2pt 3 pt 4 pt 5 pt 1 pt 2 pt 3 pt 4pt 5 pt 1pt Word- processing Spreadsheets Databases.
Storing Organizational Information - Databases
Chapter 17 Creating a Database.
Dimu' Rumpak © 2009 by Prentice Hall 1 Getting Started Didimus Rumpak, M.Si. Database Concepts Chapter 1 1.
Plotting in Microsoft Excel. 1) Enter your data into the Excel spreadsheet in table format. Your data should have column headers, row headers and data.
Getting Started Chapter One DAVID M. KROENKE’S DATABASE CONCEPTS, 2 nd Edition.
Databases MIS 21. Some database terminology  Database: integrated collection of data  Database Management System (DBMS): environment that provides mechanisms.
SCUHolliday - coen 1788–1 Schedule Today u Modifications, Schemas, Views. u Read Sections (except and 6.6.6) Next u Constraints. u Read.
DATABASE SYSTEMS. DATABASE u A filing system for holding data u Contains a set of similar files –Each file contains similar records Each record contains.
BIS Database Systems School of Management, Business Information Systems, Assumption University A.Thanop Somprasong Chapter # 8 Advanced SQL.
DAY 15: ACCESS CHAPTER 1 Rahul Kavi October 6,
Course FAQ’s I do not have any knowledge on SQL concepts or Database Testing. Will this course helps me to get through all the concepts? What kind of.
Getting Started Chapter One DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 4 th Edition.
THE WEBMASTERS: SENG + WAVERING.  On account of construction, we will be having class in room 1248 next week.
1 Using Templates COSC 1567 C++ Programming Lecture 10.
Chapter 9: Advanced SQL and PL/SQL Guide to Oracle 10g.
ACIS Introduction to Data Analytics & Business Intelligence Database s Benefits & Components.
 Product Recommendations  Managing Product Recommendations  Types of Product Recommendations  Product Out of Stock  Out of Stock Management  Let.
By max guerrero,bryan hernandez,caleb Portales  Spreadsheets are set up like tables with information running across rows and down columns. You could.
Oracle11g: PL/SQL Programming Chapter 3 Handling Data in PL/SQL Blocks.
Advanced Repetition Structure and String Functions (Unit 10) Visual Basic for Applications.
Excel-Introduction Business –E.g., Creating budget Chemistry –E.g., Analyzing chemical’s temperature vs. time Psychology –E.g., Test scores English –E.g.,
Ennis-Cole, AC 2.01, CECS Maintaining A Database By: Dr. Ennis-Cole.
Working With Database Library And Helpers. Connecting to your Database First you need to set parameters in you database.php file residing in config folder.
Howard Paul. Sequential Access Index Files and Data File Random Access.
DAY 14: ACCESS CHAPTER 1 RAHUL KAVI October 8,
Chapter 2 The Web and Business Applications. Agenda Cell referencing Fill handle Enter a formula using pointing method Comment Formatting Date arithmetic.
Decomposition and Normalization Fan Qi
INFORMATION TECHNOLOGY DATABASE MANAGEMENT. A database is a collection of information organized to provide efficient retrieval. The collected information.
Chapter 1. Getting Started IST 210: Organization of Data IST2101.
Database (Microsoft Access). Database A database is an organized collection of related data about a specific topic or purpose. Examples of databases include:
1. Advanced SQL Functions Procedural Constructs Triggers.
2b. Create an Access Database Lingma Acheson Department of Computer and Information Science IUPUI CSCI N207 Data Analysis with Spreadsheets 1.
Active Learning Lecture Slides
Introduction to Databases by Dr. Soper extended with more examples
Databases Chapter 16.
Lecture Notes for Chapter 2 Introduction to Data Mining
Accsess 2013 Creating Database.
Database Management Systems (DBMS)
Basic Work-Flow with SQL Server Standard
Website: Contact No: ID:
BUS 308 HELPS Perfect Education/ bus308helps.com.
Entity Relationships and Normalization
Database Fundamentals
2D Arrays October 12, 2007 ComS 207: Programming I (in Java)
Chapter 4 Introduction to MySQL.
Getting Started Chapter One DATABASE CONCEPTS, 5th Edition
Getting Started Chapter One DATABASE CONCEPTS, 4th Edition
Presentation transcript:

+ Types of Data IST210 Class Lecture

+ What kind of data do you have? Class Schedules Contacts Names Phone Numbers Address Food Specials Movies, Music Collect

+ How do you store data? Paper Post-it Notes Excel iTunes Address Book

+ List Activity Get in groups of 3 people Nominate one person as the scribe, and have them type your list Make a list of all the data you store and how it is stored

+ Problems with Lists Redundancy - In a list, each row is intended to stand on its own. As a result, the same information may be entered several times. For Example: A list of Projects may include the Project Manager’s Name, ID, and Phone Extension. If a particular person is managing 10 projects, his/her information would have to be entered 10 times.

+ Problems with Lists Multiple Themes - In a list, each row may contain information on more than one theme. As a result, needed information may appear in the lists only if information on other themes is also present. For Example: A list of Projects may include Project Manager information (Name, ID, and Phone Extension) and Project information (Name, ID, StartDate, Budget) in the same row

+ List Modification Issues Redundancy and multiple themes create modification problems: Deletion problems Update problems Insertion problems

+ List Modification Issues

+ Types of Data Objects that contain data have an associated data type that defines the kind of data. The following objects have data types: Columns in tables and views. Parameters in stored procedures. Variables. Transact-SQL functions that return one or more data values of a specific data type. Stored procedures that have a return code, which always has an integer data type.

+ Types of Data Assigning a data type to an object defines four attributes of the object: The kind of data contained by the object. The length or size of the stored value. The precision of the number (numeric data types only). The scale of the number (numeric data types only).