SlideShare uma empresa Scribd logo
1 de 7
Report




   Transaction Processing
      System (TPS)



                    By
           Abdul-rehman Aslam




NATIONAL UNIVERSITY OF MODERN LANGUAGES
                ISLAMABAD

              13, December 2012

                                    3|Page
Table of Contents


1. Introduction:.....................................................................................................................5
2. History:............................................................................................................................5
3. List of TPS Systems:.......................................................................................................6
4. Transaction Processing Cycle:........................................................................................6
Data Entry Activities............................................................................................................6
Transaction Processing Activities........................................................................................6
File and Database Processing...............................................................................................6
Document and Report Generation.......................................................................................6
Inquiry Processing...............................................................................................................6
5. Processing types:..............................................................................................................7
   1.Batch processing:..........................................................................................................7
   2.Real-time processing:....................................................................................................7
   3.Time-sharing:................................................................................................................7
   4.Transaction processing:................................................................................................7
6. Transaction processing system features:..........................................................................7
Performance:..................................................................................................................................7
Continuous availability:...................................................................................................................8
Data integrity:.................................................................................................................................8
Ease of use:.....................................................................................................................................8
Modular growth:.............................................................................................................................8
7. Transaction Processing Modes:.......................................................................................8
   7.1. Characteristics of on-line transaction processing:....................................................8
   7.2. Characteristics of batch transaction processing:.......................................................9
8. Transaction Processing Activities:...................................................................................9
9. Transaction Processing Subsystems in a Firm:..............................................................10
10. Outputs Provided by Transaction Processing Systems:...............................................10
11. Types of Transactions:.................................................................................................11
   11.1. Internal Transactions:............................................................................................11
   11.2. External Transactions:..........................................................................................11
12. Characteristics of Transaction Processing Systems:....................................................11
13. Processes of Transaction Processing System:..............................................................11
14. References:...................................................................................................................12




                                                                                                                                                4
1. Introduction:

Transaction processing (or OLTP for online transaction processing) is a class of
information system in which the goal is to handle requests for updates to shared data
from multiple clients. A crucial requirement is that the processing be completed while the
client waits and an immediate response given. The automated teller machine (ATM)
network is a typical example.

Transaction processing applications typically have some or all of these requirements:

   •   data is shared among multiple clients
   •   requests are processed while a user is waiting
   •   multiple requests may be in progress at once
   •   scalability to large volumes of requests
   •   high reliability (few errors)
   •   high availability (minimal down-time)

So, what exactly is a transaction? A transaction is a series of operations on shared data
taken together as a logical unit of work. It must succeed or fail as a unit and must proceed
independently from other transactions that may be running at the same time. In other
words, a transaction is a short program that accesses shared data and that must be
executed in a way that obeys the ACID properties.

The standard example of a transaction is a transfer of funds from one account to another.
The transaction has two parts. Crediting one account and debiting another. Clearly, it
would be bad if one of these parts were to happen without the other.

Transaction processing is a key piece of computing infrastructure that enables
applications in e-commerce, airline reservations, banking, and securities trading. When
buzzwords like "enterprise" and "middleware" are thrown about, the meaning often boils
down to transactional capabilities.

2. History:
       One of the first transaction processing systems was American Airline SABRE
system, which became operational in 1960. Designed to process up to 83,000 transactions
a day, the system ran on two IBM 7090 computers. SABRE was migrated to IBM
System/360 computers in 1972, and became an IBM product first as Airline control
Program (ACP) and later as Transaction Processing Facility (TPF). In addition to airlines
TPF is used by large banks, credit card companies, and hotel chains.




                                                                                            5
3. List of TPS Systems:
      Some of the common TPS systems are as follow:
  •   IBM Transaction Processing Facility (TPF) - 1960. Unlike most other transaction
      processing systems TPF is a dedicated operating system for transaction
      processing running on IBM System z mainframes.
  •   IBM Information Management System (IMS) - 1966. A joint hierarchical database
      and information management system with extensive transaction processing
      capabilities. Runs on OS/360 and successors.
  •   IBM Customer Information Control System (CICS) - 1969. A transaction manager
      designed for rapid, high-volume online processing, CICS originally used standard
      system datasets, but now has a connection to IBM's DB/2 relational database
      system. Runs on OS/360 and successors and DOS/360 and successors, IBM AIX,
      VM, and OS/2. Non-mainframe versions are called TX Series.
  •   Tuxedo - 1980s. Transactions for UNIX, Extended for Distributed Operations
      developed by AT&T Corporation, now owned by Oracle Corporation. Tuxedo is a
      cross-platform TPS.
  •   UNIVAC Transaction Interface Package (TIP) - 1970s. A transaction processing
      monitor for UNIVAC 1100/2200 series computers.

4. Transaction Processing Cycle:

  • Data Entry Activities
  • Transaction Processing Activities
  • File and Database Processing
  • Document and Report Generation
  • Inquiry Processing




                                                                                    6
5. Processing types:
   1. Batch processing:

        Batch processing is execution of a series of programs (jobs) on a computer
without manual intervention. Several transactions, called a batch are collected and
processed at the same time. The results of each transaction are not immediately
available when the transaction is being entered there is a time delay.

   2. Real-time processing:

    "Real time systems attempt to guarantee an appropriate response to a stimulus or
request quickly enough to affect the conditions that caused the stimulus. Each
transaction in real-time processing is unique; it is not part of a group of transactions.

   3. Time-sharing:

    Time sharing is the sharing of a computer system among multiple users, usually
giving each user the illusion that they have exclusive control of the system. The users
may be working on the same project or different projects, but there are usually few
restrictions on the type of work each user is doing.

   4. Transaction processing:

    Transaction processing systems also attempt to provide predictable response times
to requests, although this is not as critical as for real-time systems. Rather than allowing
the user to run arbitrary programs as time-sharing, transaction processing allows only
predefined, structured transactions. Each transaction is usually short duration and the
processing activity for each transaction is programmed in advance.



6. Transaction processing system features:

       The following features are considered important in evaluating transaction
processing systems.

   •   Performance:

       Fast performance with a rapid response time is critical. Transaction processing
systems are usually measured by the number of transactions they can process in a given
period of time.



                                                                                          7
•   Continuous availability:

        The system must be available during the time period when the users are
entering transactions. Many organizations rely heavily on their TPS. A breakdown will
disrupt operations or even stop the business.

   •   Data integrity:

        The system must be able to handle hardware or software problems without
corrupting data. Multiple users must be protected from attempting to change the same
piece of data at the same time, for example two operators cannot sell the same seat on
an airplane.

   •   Ease of use:

       Often users of transaction processing systems are casual users. The system
should be simple for them to understand, protect them from data-entry errors as much
as possible, and allow them to easily correct their errors.

   •   Modular growth:

        The system should be capable of growth at incremental costs, rather than
requiring a complete replacement. It should be possible to add, replace, or update
hardware and software components without shutting down the system.

7. Transaction Processing Modes:

Transaction processing may be accomplished in one of two modes:

   1. On-line mode
   2. Batch mode

   7.1. Characteristics of on-line transaction processing:

       1. Each transaction is completely processed immediately upon entry.

       2. OLAP is the most common mode of used today.

       3. More costly than batch processing.

       4. Database is always up to date.

       5. Require the use of fast secondary storage such as magnetic disks.


                                                                                    8
7.2. Characteristics of batch transaction processing:

       1. Relies on accumulating transaction data over a period of time and then
       processing the entire batch at once.

       2. Batch processing is usually cyclic: daily, weekly, or monthly run cycle is
       established depending on the nature of the transactions

       3. Cheaper than on-line processing

       4. Easier to control than on-line processing

       5. Database is constantly out of date

       6. Batch processing is now being captured using disk files




8. Transaction Processing Activities:

        The processing of individual transactions, of course, depends to a degree on
their nature. The general elements of transaction processing include:

1. Data capture and validation

2. Transaction - dependent processing steps

3. Database maintenance




                                                                                   9

Mais conteúdo relacionado

Mais procurados

Transaction processing system
Transaction processing systemTransaction processing system
Transaction processing systemuday sharma
 
Transaction processing systems
Transaction processing systems Transaction processing systems
Transaction processing systems greg robertson
 
Management information system-MIS
Management information system-MISManagement information system-MIS
Management information system-MISSarmad Ali
 
Transaction Processing System (TPS).pptx
Transaction Processing System (TPS).pptxTransaction Processing System (TPS).pptx
Transaction Processing System (TPS).pptxOsareme Erhomosele
 
12 ipt 0501 transaction processing systems 01
12 ipt 0501   transaction processing systems 0112 ipt 0501   transaction processing systems 01
12 ipt 0501 transaction processing systems 01ctedds
 
Transaction Processing System (TPS)
Transaction Processing System (TPS)Transaction Processing System (TPS)
Transaction Processing System (TPS)Anvesh Sharma
 
Transaction processing system
Transaction processing systemTransaction processing system
Transaction processing systemVidhu Arora
 
Six major types of information systems
Six major types of information systemsSix major types of information systems
Six major types of information systemsMohanraj V
 
TRANSACTION PROCESSING SYSTEMS (TPS)
TRANSACTION PROCESSING SYSTEMS (TPS)TRANSACTION PROCESSING SYSTEMS (TPS)
TRANSACTION PROCESSING SYSTEMS (TPS)Nicholas Coley
 
TPS Characteristics
TPS CharacteristicsTPS Characteristics
TPS Characteristicsbmasawan
 
Management Information System [Kenneth Laudon]
Management Information System [Kenneth Laudon]Management Information System [Kenneth Laudon]
Management Information System [Kenneth Laudon]mmuser2014
 
Types o f information systems
Types o f information systemsTypes o f information systems
Types o f information systemsBimbashree K.G
 
Information Systems in Global Business Today
Information Systems in Global Business TodayInformation Systems in Global Business Today
Information Systems in Global Business Todaytvto1381
 
MIS-CH15: Managing Global Systems
MIS-CH15: Managing Global SystemsMIS-CH15: Managing Global Systems
MIS-CH15: Managing Global SystemsSukanya Ben
 

Mais procurados (20)

Transaction processing system
Transaction processing systemTransaction processing system
Transaction processing system
 
Transaction processing system
Transaction processing systemTransaction processing system
Transaction processing system
 
Transaction processing systems
Transaction processing systems Transaction processing systems
Transaction processing systems
 
Management information system-MIS
Management information system-MISManagement information system-MIS
Management information system-MIS
 
Data Warehousing
Data WarehousingData Warehousing
Data Warehousing
 
Transaction Processing System (TPS).pptx
Transaction Processing System (TPS).pptxTransaction Processing System (TPS).pptx
Transaction Processing System (TPS).pptx
 
12 ipt 0501 transaction processing systems 01
12 ipt 0501   transaction processing systems 0112 ipt 0501   transaction processing systems 01
12 ipt 0501 transaction processing systems 01
 
Transaction Processing System (TPS)
Transaction Processing System (TPS)Transaction Processing System (TPS)
Transaction Processing System (TPS)
 
Transaction processing system
Transaction processing systemTransaction processing system
Transaction processing system
 
Six major types of information systems
Six major types of information systemsSix major types of information systems
Six major types of information systems
 
TRANSACTION PROCESSING SYSTEMS (TPS)
TRANSACTION PROCESSING SYSTEMS (TPS)TRANSACTION PROCESSING SYSTEMS (TPS)
TRANSACTION PROCESSING SYSTEMS (TPS)
 
TPS Characteristics
TPS CharacteristicsTPS Characteristics
TPS Characteristics
 
Management Information System [Kenneth Laudon]
Management Information System [Kenneth Laudon]Management Information System [Kenneth Laudon]
Management Information System [Kenneth Laudon]
 
Mis chapter 3
Mis chapter 3Mis chapter 3
Mis chapter 3
 
Types o f information systems
Types o f information systemsTypes o f information systems
Types o f information systems
 
Data Management
Data Management Data Management
Data Management
 
Laudon mis14 ch01
Laudon mis14 ch01Laudon mis14 ch01
Laudon mis14 ch01
 
Information Systems in Global Business Today
Information Systems in Global Business TodayInformation Systems in Global Business Today
Information Systems in Global Business Today
 
MIS-CH15: Managing Global Systems
MIS-CH15: Managing Global SystemsMIS-CH15: Managing Global Systems
MIS-CH15: Managing Global Systems
 
Lecture 2: Information system
Lecture 2: Information systemLecture 2: Information system
Lecture 2: Information system
 

Destaque

Tps Presentation
Tps PresentationTps Presentation
Tps PresentationApex
 
Office automation system report
Office automation system reportOffice automation system report
Office automation system reportAmit Kulkarni
 
Management information system
Management information systemManagement information system
Management information systemAnamika Sonawane
 
Advantages and Disadvantages of MIS
Advantages and Disadvantages of MISAdvantages and Disadvantages of MIS
Advantages and Disadvantages of MISNeeti Naag
 
Strategic evaluation & control
Strategic evaluation & controlStrategic evaluation & control
Strategic evaluation & controlBandri Nikhil
 
Office automation system
Office automation systemOffice automation system
Office automation systemMilan Padariya
 
MIS Presentation
MIS PresentationMIS Presentation
MIS PresentationDhiren Gala
 
Management Information System (Full Notes)
Management Information System (Full Notes)Management Information System (Full Notes)
Management Information System (Full Notes)Harish Chand
 
Management information system
Management information systemManagement information system
Management information systemSikander Saini
 
Management Information System (MIS)
Management Information System (MIS)Management Information System (MIS)
Management Information System (MIS)Navneet Jingar
 

Destaque (13)

Tps Presentation
Tps PresentationTps Presentation
Tps Presentation
 
Office automation system report
Office automation system reportOffice automation system report
Office automation system report
 
Office Automation & System
Office Automation & SystemOffice Automation & System
Office Automation & System
 
Management information system
Management information systemManagement information system
Management information system
 
Office Automation System
Office Automation SystemOffice Automation System
Office Automation System
 
Advantages and Disadvantages of MIS
Advantages and Disadvantages of MISAdvantages and Disadvantages of MIS
Advantages and Disadvantages of MIS
 
Office automation sysmtems
Office automation sysmtemsOffice automation sysmtems
Office automation sysmtems
 
Strategic evaluation & control
Strategic evaluation & controlStrategic evaluation & control
Strategic evaluation & control
 
Office automation system
Office automation systemOffice automation system
Office automation system
 
MIS Presentation
MIS PresentationMIS Presentation
MIS Presentation
 
Management Information System (Full Notes)
Management Information System (Full Notes)Management Information System (Full Notes)
Management Information System (Full Notes)
 
Management information system
Management information systemManagement information system
Management information system
 
Management Information System (MIS)
Management Information System (MIS)Management Information System (MIS)
Management Information System (MIS)
 

Semelhante a Transaction Processing System

Pivotal gem fire_wp_hardest-problems-data-management_053013
Pivotal gem fire_wp_hardest-problems-data-management_053013Pivotal gem fire_wp_hardest-problems-data-management_053013
Pivotal gem fire_wp_hardest-problems-data-management_053013EMC
 
BCS APSG Enterprise Systems
BCS APSG Enterprise SystemsBCS APSG Enterprise Systems
BCS APSG Enterprise SystemsGeoff Sharman
 
Transaction ps
Transaction psTransaction ps
Transaction psMR Z
 
MIS CHAPTER FOUR.ppt
MIS CHAPTER FOUR.pptMIS CHAPTER FOUR.ppt
MIS CHAPTER FOUR.pptAynetuTerefe2
 
HSC Transaction processing systems
HSC Transaction processing systemsHSC Transaction processing systems
HSC Transaction processing systemsgreg robertson
 
A Study Of Real-Time Embedded Software Systems And Real-Time Operating Systems
A Study Of Real-Time Embedded Software Systems And Real-Time Operating SystemsA Study Of Real-Time Embedded Software Systems And Real-Time Operating Systems
A Study Of Real-Time Embedded Software Systems And Real-Time Operating SystemsRick Vogel
 
BCS CCS Enterprise Systems
BCS CCS Enterprise SystemsBCS CCS Enterprise Systems
BCS CCS Enterprise SystemsGeoff Sharman
 
Managing Complexity in the x86 Data Center: The User Experience
Managing Complexity in the x86 Data Center: The User ExperienceManaging Complexity in the x86 Data Center: The User Experience
Managing Complexity in the x86 Data Center: The User ExperienceIBM India Smarter Computing
 
Integration Approach for MES
Integration Approach for MESIntegration Approach for MES
Integration Approach for MESVinod Kumar
 
Revenue Cycle
Revenue CycleRevenue Cycle
Revenue CycleKim Moore
 
Regulatory compliance and system logging
Regulatory compliance and system loggingRegulatory compliance and system logging
Regulatory compliance and system loggingBalaBit
 
MYSQL DATABASE Operating System Part2 (1).pptx
MYSQL DATABASE Operating System Part2 (1).pptxMYSQL DATABASE Operating System Part2 (1).pptx
MYSQL DATABASE Operating System Part2 (1).pptxArjayBalberan1
 

Semelhante a Transaction Processing System (20)

Distributed Systems in Data Engineering
Distributed Systems in Data EngineeringDistributed Systems in Data Engineering
Distributed Systems in Data Engineering
 
Pivotal gem fire_wp_hardest-problems-data-management_053013
Pivotal gem fire_wp_hardest-problems-data-management_053013Pivotal gem fire_wp_hardest-problems-data-management_053013
Pivotal gem fire_wp_hardest-problems-data-management_053013
 
BCS APSG Enterprise Systems
BCS APSG Enterprise SystemsBCS APSG Enterprise Systems
BCS APSG Enterprise Systems
 
Transaction ps
Transaction psTransaction ps
Transaction ps
 
MIS CHAPTER FOUR.ppt
MIS CHAPTER FOUR.pptMIS CHAPTER FOUR.ppt
MIS CHAPTER FOUR.ppt
 
HSC Transaction processing systems
HSC Transaction processing systemsHSC Transaction processing systems
HSC Transaction processing systems
 
A Study Of Real-Time Embedded Software Systems And Real-Time Operating Systems
A Study Of Real-Time Embedded Software Systems And Real-Time Operating SystemsA Study Of Real-Time Embedded Software Systems And Real-Time Operating Systems
A Study Of Real-Time Embedded Software Systems And Real-Time Operating Systems
 
BCS CCS Enterprise Systems
BCS CCS Enterprise SystemsBCS CCS Enterprise Systems
BCS CCS Enterprise Systems
 
Copy of sec d (2)
Copy of sec d (2)Copy of sec d (2)
Copy of sec d (2)
 
Copy of sec d (2)
Copy of sec d (2)Copy of sec d (2)
Copy of sec d (2)
 
Tps revision 2017
Tps revision 2017Tps revision 2017
Tps revision 2017
 
1 introduction
1 introduction1 introduction
1 introduction
 
ITSM Approach for Clouds
 ITSM Approach for Clouds ITSM Approach for Clouds
ITSM Approach for Clouds
 
Managing Complexity in the x86 Data Center: The User Experience
Managing Complexity in the x86 Data Center: The User ExperienceManaging Complexity in the x86 Data Center: The User Experience
Managing Complexity in the x86 Data Center: The User Experience
 
Integration Approach for MES
Integration Approach for MESIntegration Approach for MES
Integration Approach for MES
 
Revenue Cycle
Revenue CycleRevenue Cycle
Revenue Cycle
 
Regulatory compliance and system logging
Regulatory compliance and system loggingRegulatory compliance and system logging
Regulatory compliance and system logging
 
MYSQL DATABASE Operating System Part2 (1).pptx
MYSQL DATABASE Operating System Part2 (1).pptxMYSQL DATABASE Operating System Part2 (1).pptx
MYSQL DATABASE Operating System Part2 (1).pptx
 
Types of computer
Types of computerTypes of computer
Types of computer
 
Operating System
Operating SystemOperating System
Operating System
 

Mais de Abdul Aslam

Challenges of cloud final
Challenges of cloud finalChallenges of cloud final
Challenges of cloud finalAbdul Aslam
 
Star ,Snow and Fact-Constullation Schemas??
Star ,Snow and  Fact-Constullation Schemas??Star ,Snow and  Fact-Constullation Schemas??
Star ,Snow and Fact-Constullation Schemas??Abdul Aslam
 
Job analysis of a reporter
Job analysis of a reporterJob analysis of a reporter
Job analysis of a reporterAbdul Aslam
 
Project Progress Report
Project Progress ReportProject Progress Report
Project Progress ReportAbdul Aslam
 
Components of a Data-Warehouse
Components of a Data-WarehouseComponents of a Data-Warehouse
Components of a Data-WarehouseAbdul Aslam
 
Difference between ER-Modeling and Dimensional Modeling
Difference between ER-Modeling and Dimensional ModelingDifference between ER-Modeling and Dimensional Modeling
Difference between ER-Modeling and Dimensional ModelingAbdul Aslam
 
Final Year Project (ISP),Project Demo
Final Year Project (ISP),Project DemoFinal Year Project (ISP),Project Demo
Final Year Project (ISP),Project DemoAbdul Aslam
 
Distributed Operating System,Network OS and Middle-ware.??
Distributed Operating System,Network OS and Middle-ware.??Distributed Operating System,Network OS and Middle-ware.??
Distributed Operating System,Network OS and Middle-ware.??Abdul Aslam
 
Software Testing Tool Report
Software Testing Tool ReportSoftware Testing Tool Report
Software Testing Tool ReportAbdul Aslam
 
Cloud Computing
 Cloud Computing Cloud Computing
Cloud ComputingAbdul Aslam
 
Work BreakDown Structure
Work BreakDown StructureWork BreakDown Structure
Work BreakDown StructureAbdul Aslam
 
Erd For Gift Shop
Erd For Gift ShopErd For Gift Shop
Erd For Gift ShopAbdul Aslam
 

Mais de Abdul Aslam (13)

Challenges of cloud final
Challenges of cloud finalChallenges of cloud final
Challenges of cloud final
 
Star ,Snow and Fact-Constullation Schemas??
Star ,Snow and  Fact-Constullation Schemas??Star ,Snow and  Fact-Constullation Schemas??
Star ,Snow and Fact-Constullation Schemas??
 
Job analysis of a reporter
Job analysis of a reporterJob analysis of a reporter
Job analysis of a reporter
 
Project Progress Report
Project Progress ReportProject Progress Report
Project Progress Report
 
Components of a Data-Warehouse
Components of a Data-WarehouseComponents of a Data-Warehouse
Components of a Data-Warehouse
 
Difference between ER-Modeling and Dimensional Modeling
Difference between ER-Modeling and Dimensional ModelingDifference between ER-Modeling and Dimensional Modeling
Difference between ER-Modeling and Dimensional Modeling
 
Final Year Project (ISP),Project Demo
Final Year Project (ISP),Project DemoFinal Year Project (ISP),Project Demo
Final Year Project (ISP),Project Demo
 
Distributed Operating System,Network OS and Middle-ware.??
Distributed Operating System,Network OS and Middle-ware.??Distributed Operating System,Network OS and Middle-ware.??
Distributed Operating System,Network OS and Middle-ware.??
 
Software Testing Tool Report
Software Testing Tool ReportSoftware Testing Tool Report
Software Testing Tool Report
 
Spm report
Spm reportSpm report
Spm report
 
Cloud Computing
 Cloud Computing Cloud Computing
Cloud Computing
 
Work BreakDown Structure
Work BreakDown StructureWork BreakDown Structure
Work BreakDown Structure
 
Erd For Gift Shop
Erd For Gift ShopErd For Gift Shop
Erd For Gift Shop
 

Último

The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxheathfieldcps1
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Sapana Sha
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxmanuelaromero2013
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...Marc Dusseiller Dusjagr
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13Steve Thomason
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionSafetyChain Software
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingTechSoup
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdfSoniaTolstoy
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactdawncurless
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
MENTAL STATUS EXAMINATION format.docx
MENTAL     STATUS EXAMINATION format.docxMENTAL     STATUS EXAMINATION format.docx
MENTAL STATUS EXAMINATION format.docxPoojaSen20
 
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxContemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxRoyAbrique
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptxVS Mahajan Coaching Centre
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxGaneshChakor2
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfchloefrazer622
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsanshu789521
 

Último (20)

The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptx
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory Inspection
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdfTataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1
 
MENTAL STATUS EXAMINATION format.docx
MENTAL     STATUS EXAMINATION format.docxMENTAL     STATUS EXAMINATION format.docx
MENTAL STATUS EXAMINATION format.docx
 
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxContemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptx
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdf
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha elections
 

Transaction Processing System

  • 1. Report Transaction Processing System (TPS) By Abdul-rehman Aslam NATIONAL UNIVERSITY OF MODERN LANGUAGES ISLAMABAD 13, December 2012 3|Page
  • 2. Table of Contents 1. Introduction:.....................................................................................................................5 2. History:............................................................................................................................5 3. List of TPS Systems:.......................................................................................................6 4. Transaction Processing Cycle:........................................................................................6 Data Entry Activities............................................................................................................6 Transaction Processing Activities........................................................................................6 File and Database Processing...............................................................................................6 Document and Report Generation.......................................................................................6 Inquiry Processing...............................................................................................................6 5. Processing types:..............................................................................................................7 1.Batch processing:..........................................................................................................7 2.Real-time processing:....................................................................................................7 3.Time-sharing:................................................................................................................7 4.Transaction processing:................................................................................................7 6. Transaction processing system features:..........................................................................7 Performance:..................................................................................................................................7 Continuous availability:...................................................................................................................8 Data integrity:.................................................................................................................................8 Ease of use:.....................................................................................................................................8 Modular growth:.............................................................................................................................8 7. Transaction Processing Modes:.......................................................................................8 7.1. Characteristics of on-line transaction processing:....................................................8 7.2. Characteristics of batch transaction processing:.......................................................9 8. Transaction Processing Activities:...................................................................................9 9. Transaction Processing Subsystems in a Firm:..............................................................10 10. Outputs Provided by Transaction Processing Systems:...............................................10 11. Types of Transactions:.................................................................................................11 11.1. Internal Transactions:............................................................................................11 11.2. External Transactions:..........................................................................................11 12. Characteristics of Transaction Processing Systems:....................................................11 13. Processes of Transaction Processing System:..............................................................11 14. References:...................................................................................................................12 4
  • 3. 1. Introduction: Transaction processing (or OLTP for online transaction processing) is a class of information system in which the goal is to handle requests for updates to shared data from multiple clients. A crucial requirement is that the processing be completed while the client waits and an immediate response given. The automated teller machine (ATM) network is a typical example. Transaction processing applications typically have some or all of these requirements: • data is shared among multiple clients • requests are processed while a user is waiting • multiple requests may be in progress at once • scalability to large volumes of requests • high reliability (few errors) • high availability (minimal down-time) So, what exactly is a transaction? A transaction is a series of operations on shared data taken together as a logical unit of work. It must succeed or fail as a unit and must proceed independently from other transactions that may be running at the same time. In other words, a transaction is a short program that accesses shared data and that must be executed in a way that obeys the ACID properties. The standard example of a transaction is a transfer of funds from one account to another. The transaction has two parts. Crediting one account and debiting another. Clearly, it would be bad if one of these parts were to happen without the other. Transaction processing is a key piece of computing infrastructure that enables applications in e-commerce, airline reservations, banking, and securities trading. When buzzwords like "enterprise" and "middleware" are thrown about, the meaning often boils down to transactional capabilities. 2. History: One of the first transaction processing systems was American Airline SABRE system, which became operational in 1960. Designed to process up to 83,000 transactions a day, the system ran on two IBM 7090 computers. SABRE was migrated to IBM System/360 computers in 1972, and became an IBM product first as Airline control Program (ACP) and later as Transaction Processing Facility (TPF). In addition to airlines TPF is used by large banks, credit card companies, and hotel chains. 5
  • 4. 3. List of TPS Systems: Some of the common TPS systems are as follow: • IBM Transaction Processing Facility (TPF) - 1960. Unlike most other transaction processing systems TPF is a dedicated operating system for transaction processing running on IBM System z mainframes. • IBM Information Management System (IMS) - 1966. A joint hierarchical database and information management system with extensive transaction processing capabilities. Runs on OS/360 and successors. • IBM Customer Information Control System (CICS) - 1969. A transaction manager designed for rapid, high-volume online processing, CICS originally used standard system datasets, but now has a connection to IBM's DB/2 relational database system. Runs on OS/360 and successors and DOS/360 and successors, IBM AIX, VM, and OS/2. Non-mainframe versions are called TX Series. • Tuxedo - 1980s. Transactions for UNIX, Extended for Distributed Operations developed by AT&T Corporation, now owned by Oracle Corporation. Tuxedo is a cross-platform TPS. • UNIVAC Transaction Interface Package (TIP) - 1970s. A transaction processing monitor for UNIVAC 1100/2200 series computers. 4. Transaction Processing Cycle: • Data Entry Activities • Transaction Processing Activities • File and Database Processing • Document and Report Generation • Inquiry Processing 6
  • 5. 5. Processing types: 1. Batch processing: Batch processing is execution of a series of programs (jobs) on a computer without manual intervention. Several transactions, called a batch are collected and processed at the same time. The results of each transaction are not immediately available when the transaction is being entered there is a time delay. 2. Real-time processing: "Real time systems attempt to guarantee an appropriate response to a stimulus or request quickly enough to affect the conditions that caused the stimulus. Each transaction in real-time processing is unique; it is not part of a group of transactions. 3. Time-sharing: Time sharing is the sharing of a computer system among multiple users, usually giving each user the illusion that they have exclusive control of the system. The users may be working on the same project or different projects, but there are usually few restrictions on the type of work each user is doing. 4. Transaction processing: Transaction processing systems also attempt to provide predictable response times to requests, although this is not as critical as for real-time systems. Rather than allowing the user to run arbitrary programs as time-sharing, transaction processing allows only predefined, structured transactions. Each transaction is usually short duration and the processing activity for each transaction is programmed in advance. 6. Transaction processing system features: The following features are considered important in evaluating transaction processing systems. • Performance: Fast performance with a rapid response time is critical. Transaction processing systems are usually measured by the number of transactions they can process in a given period of time. 7
  • 6. Continuous availability: The system must be available during the time period when the users are entering transactions. Many organizations rely heavily on their TPS. A breakdown will disrupt operations or even stop the business. • Data integrity: The system must be able to handle hardware or software problems without corrupting data. Multiple users must be protected from attempting to change the same piece of data at the same time, for example two operators cannot sell the same seat on an airplane. • Ease of use: Often users of transaction processing systems are casual users. The system should be simple for them to understand, protect them from data-entry errors as much as possible, and allow them to easily correct their errors. • Modular growth: The system should be capable of growth at incremental costs, rather than requiring a complete replacement. It should be possible to add, replace, or update hardware and software components without shutting down the system. 7. Transaction Processing Modes: Transaction processing may be accomplished in one of two modes: 1. On-line mode 2. Batch mode 7.1. Characteristics of on-line transaction processing: 1. Each transaction is completely processed immediately upon entry. 2. OLAP is the most common mode of used today. 3. More costly than batch processing. 4. Database is always up to date. 5. Require the use of fast secondary storage such as magnetic disks. 8
  • 7. 7.2. Characteristics of batch transaction processing: 1. Relies on accumulating transaction data over a period of time and then processing the entire batch at once. 2. Batch processing is usually cyclic: daily, weekly, or monthly run cycle is established depending on the nature of the transactions 3. Cheaper than on-line processing 4. Easier to control than on-line processing 5. Database is constantly out of date 6. Batch processing is now being captured using disk files 8. Transaction Processing Activities: The processing of individual transactions, of course, depends to a degree on their nature. The general elements of transaction processing include: 1. Data capture and validation 2. Transaction - dependent processing steps 3. Database maintenance 9