22 presentation

27

Upload: foziamunaquib

Post on 07-Apr-2018

219 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: 22 Presentation

8/6/2019 22 Presentation

http://slidepdf.com/reader/full/22-presentation 1/27

Page 2: 22 Presentation

8/6/2019 22 Presentation

http://slidepdf.com/reader/full/22-presentation 2/27

Acknowledgement I owe a great thanks to my teachers whohelped and supported me for this project.

My deepest thanks to Jyoti Mamwho guided me and helped in makingcorrections in the project.I also express my thanks to Rita Mam forextending her support without whom theproject would have been a distant reality.

Page 3: 22 Presentation

8/6/2019 22 Presentation

http://slidepdf.com/reader/full/22-presentation 3/27

Page 4: 22 Presentation

8/6/2019 22 Presentation

http://slidepdf.com/reader/full/22-presentation 4/27

C ontents

Page 5: 22 Presentation

8/6/2019 22 Presentation

http://slidepdf.com/reader/full/22-presentation 5/27

Page 6: 22 Presentation

8/6/2019 22 Presentation

http://slidepdf.com/reader/full/22-presentation 6/27

A n Overview of MS A ccess

MS A ccess is a relational database management system(DBMS or RDBMS).A t the very core it is a software

engine that provides an interface between physicaldata & user application queries.

Other examples of DBMS applications include:

Oracle

mySQLSQL Server (Microsoft)DB2 (IBM)Informix

Page 7: 22 Presentation

8/6/2019 22 Presentation

http://slidepdf.com/reader/full/22-presentation 7/27

W hat is an MS A ccess File

A lthough the term database typically refers to acollection of related data tables, an A ccess databaseincludes more than just data. In addition to tables,

you can add:Saved queries(stored procedures)-organizing and/ormanipulating data.Forms- Gui interaction with data, event programmingReports- customized results for printing (~ staticforms)Macros and VB programs for extending functionality

Page 8: 22 Presentation

8/6/2019 22 Presentation

http://slidepdf.com/reader/full/22-presentation 8/27

U nless advanced techniques areemployed, all entities are stored in one*.mdb file.

Page 9: 22 Presentation

8/6/2019 22 Presentation

http://slidepdf.com/reader/full/22-presentation 9/27

Tables Overview in A ccess

Gener al s e tupfo r tabl e sd e sc r ib e

gener al optio n s

Tabl e Pr op er ti e s

Page 10: 22 Presentation

8/6/2019 22 Presentation

http://slidepdf.com/reader/full/22-presentation 10/27

W orking with Queries

A n MS- A ccess query is a set of stored SQL instructionsthat manipulate and/or select data from one or moretables.Select Query- Data grouping and/or filtering.Make table Query- Select + creates/populates newtable.U pdate Query- U pdates fields from specified table data.

A ppend Query- Runs query on one table, appendsresults to a table.Delete Query- Delete selected records from table.

Page 11: 22 Presentation

8/6/2019 22 Presentation

http://slidepdf.com/reader/full/22-presentation 11/27

Example of Query

Q u er y typ e s a n dSQL view s

Dr ag a n d D r opFie lds

Page 12: 22 Presentation

8/6/2019 22 Presentation

http://slidepdf.com/reader/full/22-presentation 12/27

Introducing Excel

Mic r osoft Offic e Exce l 2007 (or Exce l) is a computerprogram used to enter, analyze, and presentquantitative dataA sp re adsh ee t is a collection of text and numberslaid out in a rectangular grid.

± Often used in business for budgeting, inventorymanagement, and decision making

W hat-if a n alysis lets you change one or more valuesin a spreadsheet and then assess the effect thosechanges have on the calculated values

Page 13: 22 Presentation

8/6/2019 22 Presentation

http://slidepdf.com/reader/full/22-presentation 13/27

Exploring Excel

Page 14: 22 Presentation

8/6/2019 22 Presentation

http://slidepdf.com/reader/full/22-presentation 14/27

Introducing Functions in Excel

A fu n ctio n is a named operation that returns avalueFor example, to add the values in the rangeA1 :A10 , you could enter the following longformula:=A1 +A 2+A3 +A4 +A5 +A6 +A7 +A8 +A9 +A10

Or, you could use the S U M function toaccomplish the same thing:=SU M(A1 :A10 )

Page 15: 22 Presentation

8/6/2019 22 Presentation

http://slidepdf.com/reader/full/22-presentation 15/27

Features of Excel

Page 16: 22 Presentation

8/6/2019 22 Presentation

http://slidepdf.com/reader/full/22-presentation 16/27

Maths and Statistical Functionsin Excel

Page 17: 22 Presentation

8/6/2019 22 Presentation

http://slidepdf.com/reader/full/22-presentation 17/27

Cha r ts i n Exce l

Makes it easy toU nderstand and

A nalyze data

U sed to presentC omplicated data in

anEasier manner

Page 18: 22 Presentation

8/6/2019 22 Presentation

http://slidepdf.com/reader/full/22-presentation 18/27

Page 19: 22 Presentation

8/6/2019 22 Presentation

http://slidepdf.com/reader/full/22-presentation 19/27

Excel is used forpaperwork where youcan arrange and

tabulate data properlyfor printing orpresentations.

A ccess is used as asystem of storing dataso that it can be

retrieved later.

Page 20: 22 Presentation

8/6/2019 22 Presentation

http://slidepdf.com/reader/full/22-presentation 20/27

Page 21: 22 Presentation

8/6/2019 22 Presentation

http://slidepdf.com/reader/full/22-presentation 21/27

Data Storage

Excel can only storeupto 1048576 recordson the same sheet

without having to use adifferent set of columnsor continue on withother worksheet(s). It

has 80 Mb RA M usagelimitation before itcrashes.

A ccess can store Xnumber of records andhas a 2 GB memory

usage limitation.

Page 22: 22 Presentation

8/6/2019 22 Presentation

http://slidepdf.com/reader/full/22-presentation 22/27

A ccess does notallow for data

corruption so easilyby a user, such asselecting all but

one column, A ccesswill still include allfields for sortings.

Page 23: 22 Presentation

8/6/2019 22 Presentation

http://slidepdf.com/reader/full/22-presentation 23/27

A ccess forms has lots of form events thatone can use while Excel user forms has verylittle events to work off from.

Page 24: 22 Presentation

8/6/2019 22 Presentation

http://slidepdf.com/reader/full/22-presentation 24/27

Excel is good for SHOR T TE RM solutions andsmall scale projects.

A ccess is good for LONGTE RM solutions andlarge scale projects.

Page 25: 22 Presentation

8/6/2019 22 Presentation

http://slidepdf.com/reader/full/22-presentation 25/27

W hy the comparison?

This is a fai r qu e stio n . A fter all, Excel is not adatabase management system. It is spreadsheetsoftware, and it stores units of information in rows

and columns of cells, called w o rk sh ee ts . The mostcommon task performed in Excel is the managementof lists such as telephone numbers and personneldata. In comparison, A ccess stores data in tabl e s that

look much the same as worksheets but are designedfor complex querying in relation to data stored inother tables and locations, and even in fields in othertables.

Page 26: 22 Presentation

8/6/2019 22 Presentation

http://slidepdf.com/reader/full/22-presentation 26/27

Both programs are great tools for Both programs are great tools for managing datamanaging data

and performing calculationsand performing calculations

So the QUESTION remains,So the QUESTION remains,

which program do I usewhich program do I use

Excel is going to be the betterchoice and use it unless it

accomplishes your objective inthe manner you want.

Page 27: 22 Presentation

8/6/2019 22 Presentation

http://slidepdf.com/reader/full/22-presentation 27/27