Report on the Train Ticketing System

Size: px
Start display at page:

Download "Report on the Train Ticketing System"

Transcription

1 Report on the Train Ticketing System Author: Zaobo He, Bing Jiang, Zhuojun Duan 1.Introduction Intentions Background Overview of the Tasks Modules of the system Query module Registration module Login module Ticket sales module Ticket return module Personal information module Reservation module Design of the Database The table of User Table of Train Schedule Table of ticketing record Table of Massage Boards Table of News Algorithm for implementing the system Query algorithm for the remaining tickets External Row Lock: B-Tree Index How to select the route... 9

2 1.Introduction 1.1 Intentions Advanced database technologies play a critical role in information management system. How to search, maintain and modify the large scale data set efficiently becomes a core problem. Especially, the coming of big data promotes amounts of novel database technologies coming out, which are related to index, concurrency and so on. Those data models or algorithms, however, are still purely theoretical so that some practical applications are necessary to verify those models of algorithms. Most importantly, it is well to propose some novel technologies in this process. In this project, based on the practical condition of train ticketing selling, we propose several new algorithms of the remaining tickets and build a complete train tickets selling system. Our contribution can be classified two parts as follows: Firstly, we apply the B-tree to index on station search. Practical train system consists of thousands of train routes schedule, where each route has many stations. On the other hand, some routes will intersect at some stations, so these stations can be used as transfer stops to form new routes facilitate the customs to choose other available routes if the direct one does not exist. So mounts of information stored in our database makes it take lots of time when doing search. In order to solve this, we construct index on the station information and combine the hash function and B-tree for searching. We also apply the hash function and B-tree to direct train schedule. Input S=String of starting stop Input D= String of destination stop; KeyS=Hash(InputS), KeyD=Hash(InputD) Construct index on the station name using B-tree with the keys computed by the hash function. Secondly, when doing search, there is no direct train schedule which can satisfy the customer, or the tickets has been sold out, our system will computer the shortest way using Dijkstra algorithm. 1.2 Background Current train ticketing system confront with kinds of complex problems, for the reason that it directly related to the normal operation of the train system which is one of the basic business for a country. Moreover, with the rapid development of economy, the requirements of travelling put huge pressure on the performance of train ticketing system. Thus, a novel train ticketing system based on advanced database technologies is highly needed. Management and customer service are two basic function modules of the train ticketing system. An efficient ticketing system

3 can lower the workload and enhance work efficiency. Meanwhile, find information rapidly and quickly is significant to customer. To conquer the above problems, we develop a train ticketing system based on novel indexing algorithms to make it possible to maintain, update, and search a huge dynamic data set. 2. Overview of the Tasks 2.1 Modules of the system Our train ticketing system plan to implement a new human-computer interactive system for the ordering the tickets by customs and the management of train companies, which should be open architectures, easy to extend and easy-maintenance in database and advanced platform Query module This part provides two ways for query, one is based on train schedule, another is based on station. In the first case, if the needed train route is found, the custom can order the ticket directly through clicking the button. In the second case, according to the information input by customers, such that departure time, starting and destination stations, the system will return all the train schedule which can satisfy the requirements of the custom directly, that is there is no transfer station in this route. At the same time, the number of remaining tickets, and the price will be returned. When no direct route from the starting point to the destination point, the system will find some path which combining some stations which can send the passenger to the destination. We use algorithm of Dijkstra to compute the shortest path, but our system not only return the shortest path for customs to choose but also some path which may be cheaper ways. Based on the information returned, the custom can decide whether buying or not, if buying, the number of remaining tickets minus one. The system will set a proper position for customer automatically Registration module Registration is one part that every information system needs. Till now, there are mainly two kinds of solutions being used widely: The user login ID and password are directly assigned by administrator, the only thing that can be revised is the password by user. The user should input the basic information, and the username will be recorded in the system after the information is validated by the system. We

4 use this way to registration. And both the username and the password can be changed by the user online Login module When user gets into our system, the index page is for user login. This page is mainly for user information validation, if user gets into other web pages of our system, he will also be redirected to the user login page. There is an entry for user registration if it is the first time for that user to use our system. The principle is registration first then login to use Ticket sales module The ticket sales module is the most critical and essential part of the whole system, other auxiliary modules are all serve for it in different ways. When getting into this module, users are asked to choose or input train number, departure time, originating station, destination station, class level, student or not and remaining ticket number correspondingly. Then, users can click price calculation button and order button to buy tickets. After payment, system will generate user receipt, in other words, ticket. This system simulated a real ticket as well as print button on it. When user clicks the print button, the ticket will be printed out in theory. This function needs to implement connection to printer, which is not realized in our system Ticket return module Some users need to return and refund tickets due to different kinds of reasons, like some user changes their mind and do not want their previously ordered ticket, therefore; the ticket return module is indispensable for the entire system. The current principle for ticket refund is eighty percent of the original receipt price before train departs. Our system sets the refund ration is also eighty percent of the original price on ticket. After user finishing his return successfully, our system will increase the available ticket number and delete the record of this order in database immediately and automatically Personal information module The function of personal information module is help the customers look up or modify their own information. After the users logging into the main interface, click the button Personal information, then the information of current customers will be showed.

5 2.1.7 Reservation module In order to relief the stress of buying tickets at the same time, our system allow user to order the tickets in advance. Same as buying module, customer must input the information about the travel. In addition, if the customer decides to reserve one ticket, he or she should input his or her personal information. Then the number of remaining tickets will minus Design of the Database Our system adopts database software Sql Server We devise 9 tables. 3.1 The table of User This table is used to record the basic information of the users, the structure is as follows: Table 1 The Table of user ID Int 4 key User name Char 10 User name Password Char 10 Password Contact information Varchar 50 Telephone number Company name Varchar 50 Company name Address Varchar 20 Address Identity card Char 20 Identity card number Ticket agency Int 4 Ticket agency User type Int 4 Ticket agency is 1,business users is Table of Train Schedule This table is used to store the detail information of each section in train schedule. Table 2 Table of Train Schedule Sequence number Decimal 9 key Number of train Char 18 Number of train Departure time Datatime 8 Departure time Arrival time Datetime 8 Arrival time Starting time Char 50 Starting station Destination time Char 50 Arrival station

6 Distance Decimal 9 Distance between two stops 3.3 Table of ticketing record This table is used to store the tickets records and ordering information. Table 3 Table of ticketing record Sequence number Int 4 key Type Int 1 Buying tickets: 1, ordering tickets: Train number Char 10 Train number Departing station Char 10 Departing station Arrival station Char 10 Arrival station Seat type Char 10 Common:1, air-conditioned:2, 0 sleeper:3 Number of tickets Decimal 9 Number of tickets Price Decimal 9 Price User name Char 50 User name Contact information Decimal 20 Contact information Identity card Decimal 20 Identity card number Starting time Datetime 8 Starting time time Datetime 8 time Number of seat Int 4 Number of seat 3.4 Table of Massage Boards This table is used to store the information fed back by the customers. Table 4 Table of Massage Boards Sequence number Int 4 key Title Varchar 50 title Content Varchar 1000 content Writer Varchar 50 writer Time Datetime 8 time

7 3.5 Table of News This is used for the manager to publish the news about the train station. Table 5 Table of News Sequence number Int 4 key Title Varchar 100 title Time Datetime 8 time Content Varchar 5000 content 4. Algorithm for implementing the system 4.1 Query algorithm for the remaining tickets The remaining tickets sets are very large and complex so that querying tickets from these big data sets is nontrivial. Take China for example, there has about 5000 trains within a day and every train has 20 carriages, moreover, a carriage has about 100 seats. Therefore, the data scale is very large. Most complexly, one ticket is related to several continuous stations. These stations interact with each other. How to allocate the train seats optimally to employ the free seats becomes a critical problem. In this part, we present a dynamic allocation algorithm to free seats based on binary section values. Its basic idea can be described as follows. We use 1 to represent that one ticket is useful in this station interval, relatively, 0 represent that it is not useful. We first present the algorithm as follows and then do a detailed analysis. Input: Several M stations. Amount of free seats, denote the number with N Output: Allocation strategy to satisfy: 1) Lower storage cost; 2) Lower time cost; 3) Employ the free efficiently, do not waste. 1. Initially, section value (the number is M-1) is related to the free seats; 2. Transmit the user s requirement to corresponding section value; 3. Traverse the section value table find the first value that satisfy users section value;

8 4. Produce a sold tickets record and put it to the sold tickets table. Produce 0-2 remaining section values. 5. Compute the remaining section values based Step 4. And then If these new section values does not exist in remaining table, then insert these new records into the section value table from small to large; else Ignore it or them. 6. Correlate the remaining tickets with corresponding section value 7. When a new user comes, repeat the above steps. For clearly, now we give an example. Assume we have 7 stations in the railway network so we have 6 sections assume which is A, B, C, D, E, F and G respectively. This train have 3000 seats, and 1 represents there have a free seat, 0 represents there does not have a free seat. In the initial time, the remaining tickets have just one binary section value which is related to the whole 3000 free seats. Now a user comes, who wants to from C to E with section value Search from the section value table with section value which satisfies users request, so we allocate a ticket to this user. This process produces two new section values which are and Now insert these two values to section value table and which are also correlated to seat No. 1. This status can be described as follows, The sold tickets table Section value: (C E) Fig. 1 sold tickets table The remaining tickets table Section value: (E G) related to No.1 seat Section value: (A C) related to No.1 seat Section value: (A G) related to No.2 seat No.3 seat No seat Fig. 2 remaining tickets table Therefore, in this way, we can always allocate the seats optimally. And we just need to store the section value table in memory so this algorithm lower the storage cost. And our query also is based on the section value table so that our query is time consuming. 4.2 External Row Lock: Besides the basic row and page locks of database, we want to try some new technology. In the function module of buying tickets, to press the button price to

9 apply the train number and total tickets amount to the database. And the system would use the column remainder to judge how many tickets of the same train are being visited by customs. If then somebody else also wants to buy the tickets of the train and the column remainder is larger than the amount of the remainder tickets, the system would not access his order and would return the message No ticket left. Such lock is used to reduce the invalid visits to release the pressure to the database. It also can protect the database from the DDOS attack. 4.3 B-Tree Index To fasten the speed of select, B-tree is used to build the construction of train information by the train number. When customs want to choose which train to take, the system would be input the train number into. Because the amount of trains is not too large to be reload in memory, the B-tree would be faster than B+ tree. Each train number is unique and there is no conflict existing. 4.4 How to select the route Because the system would be only input the start station and the destination station, the route, which the passenger would take, is totally designed by the system. The whole train route map has been separated into 4 parts. Each end to the center (transport station: Beijing) is one route. And all the stations would be transformed into a tree. The transport station is the root and the son of each point is next station, which is also farther to Beijing than its father point. Then the system would travel from the start station to Beijing and from Beijing to the destination station. The system would create a temp table temp-route to record the route of all the stations.

User Manual - CFR Online Ticket. User Manual CFR Online Ticket

User Manual - CFR Online Ticket. User Manual CFR Online Ticket User Manual CFR Online Ticket 1 Contents: A. Methodology for a registered user Registration B. Sale application of CFR online tickets Connecting I forgot my password Routes Train Information Traffic restrictions

More information

A QR Code Based Processing for Dynamic and Transparent Seat Allocation

A QR Code Based Processing for Dynamic and Transparent Seat Allocation International Journal of Scientific and Research Publications, Volume 3, Issue 10, October 2013 1 A QR Code Based Processing for Dynamic and Transparent Seat Allocation Mehul Yadav *, Sumedh Kurundkar

More information

Using SQL Server Management Studio

Using SQL Server Management Studio Using SQL Server Management Studio Microsoft SQL Server Management Studio 2005 is a graphical tool for database designer or programmer. With SQL Server Management Studio 2005 you can: Create databases

More information

Reference Document. SedonaOnline Support

Reference Document. SedonaOnline Support Document Overview This document is being provided to explain how to request a SedonaOnline password and how to use SedonaOnline to submit and view Support Tickets. Our company utilizes the SedonaOffice

More information

SCHS Frequently Asked Questions

SCHS Frequently Asked Questions SCHS Frequently Asked Questions 1. How do I apply? Applicants have following options to submit applications: ONLINE APPLICATION: Please visit the link https://dfscfhs.com/login.aspx and register as per

More information

User Guide and Tutorial Central Stores Online Ordering System. Central Stores Financial Services Western Washington University

User Guide and Tutorial Central Stores Online Ordering System. Central Stores Financial Services Western Washington University User Guide and Tutorial Central Stores Online Ordering System Central Stores Financial Services Western Washington University TABLE OF CONTENTS 1. Introduction... Page 3 2. Finding and Logging into Central

More information

Online Railway Reservation. Intel Easy Steps 1 2012 Intel Corporation All rights reserved.

Online Railway Reservation. Intel Easy Steps 1 2012 Intel Corporation All rights reserved. Online Railway Reservation Intel Easy Steps 1 2012 Intel Corporation Online Railway Reservation Introducing Online Railway Reservation System Technology has transformed many aspects of life in the 21st

More information

Gravity Forms: Creating a Form

Gravity Forms: Creating a Form Gravity Forms: Creating a Form 1. To create a Gravity Form, you must be logged in as an Administrator. This is accomplished by going to http://your_url/wp- login.php. 2. On the login screen, enter your

More information

City of Lincoln Emergency Alarm Registration

City of Lincoln Emergency Alarm Registration City of Lincoln Emergency Alarm Registration Contents New Emergency Alarm Registration... 2 Online Account Services... 7 Logging in... 7 Forgotten passwords... 7 Making Payments... 8 Viewing False Alarms...

More information

How to buy the ticket online

How to buy the ticket online How to buy the ticket online 1. Purchase 2. Purchase without registration 3. Payment options 4. Purchase summary e-mail 5. What to do if the transaction is not permitted or is refused 6. Online invoice

More information

AS DNB banka. DNB Link specification (B2B functional description)

AS DNB banka. DNB Link specification (B2B functional description) AS DNB banka DNB Link specification (B2B functional description) DNB_Link_FS_EN_1_EXTSYS_1_L_2013 Table of contents 1. PURPOSE OF THE SYSTEM... 4 2. BUSINESS PROCESSES... 4 2.1. Payment for goods and services...

More information

ODBC Client Driver Help. 2015 Kepware, Inc.

ODBC Client Driver Help. 2015 Kepware, Inc. 2015 Kepware, Inc. 2 Table of Contents Table of Contents 2 4 Overview 4 External Dependencies 4 Driver Setup 5 Data Source Settings 5 Data Source Setup 6 Data Source Access Methods 13 Fixed Table 14 Table

More information

Fax and Email. Fax & Email Monitor Application

Fax and Email. Fax & Email Monitor Application 22 You can fax and email statements and invoices directly from FTD Mercury. Additionally, you can email delivery confirmations. The FTD Document Center allows you create custom email templates you can

More information

Click-To-Talk. ZyXEL IP PBX License IP PBX LOGIN DETAILS. Edition 1, 07/2009. LAN IP: https://192.168.1.12 WAN IP: https://172.16.1.1.

Click-To-Talk. ZyXEL IP PBX License IP PBX LOGIN DETAILS. Edition 1, 07/2009. LAN IP: https://192.168.1.12 WAN IP: https://172.16.1.1. Click-To-Talk ZyXEL IP PBX License Edition 1, 07/2009 IP PBX LOGIN DETAILS LAN IP: https://192.168.1.12 WAN IP: https://172.16.1.1 Username: admin Password: 1234 www.zyxel.com Copyright 2009 ZyXEL Communications

More information

INSTRUCTIONS GUIDE FOR BLUE AIR TICKETS ISSUANCE

INSTRUCTIONS GUIDE FOR BLUE AIR TICKETS ISSUANCE INSTRUCTIONS GUIDE FOR BLUE AIR TICKETS ISSUANCE A. INTRODUCTION BLUE AIR Company is using an internet reservations system Open Booking, which is remarked for its simplicity, the easiness in utilization

More information

The Virtual Desktop. User s Guide

The Virtual Desktop. User s Guide The Virtual Desktop User s Guide Version 1.0 18 April, 2000 Table of contents 1. Registration... 2 2. Logging In... 4 3. Main Desktop... 5 3.1. Changing Information... 6 3.2. Selecting a File... 8 3.3.

More information

Process: Self Service

Process: Self Service How Do I Login to the Online Vendor Self-Service Application? 1. Using the information provided in the email sent to the primary Contact: Navigate to the URL for the application, the PeopleSoft Sign In

More information

Using the enclosed installation diagram, drill three holes in the wall with the lower hole 1150mm from the floor.

Using the enclosed installation diagram, drill three holes in the wall with the lower hole 1150mm from the floor. Terminal Installation When choosing the location of the terminal, care should be taken to select an area with consistent light levels throughout the day and avoid areas where the unit may be subjected

More information

Contents PAYMENTS...1 PAYMENT TABLES...67

Contents PAYMENTS...1 PAYMENT TABLES...67 Payments Guide 062212 2012 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any form or by any means, electronic, or mechanical, including photocopying, recording,

More information

How To Understand The Error Codes On A Crystal Reports Print Engine

How To Understand The Error Codes On A Crystal Reports Print Engine Overview Error Codes This document lists all the error codes and the descriptions that the Crystal Reports Print Engine generates. PE_ERR_NOTENOUGHMEMORY (500) There is not enough memory available to complete

More information

Contents 1. Introduction... 3 2. Login... 4 3. Order Status... 5. 3.1 Search for pre-advice and orders... 5 3.2 View pre-advice or order...

Contents 1. Introduction... 3 2. Login... 4 3. Order Status... 5. 3.1 Search for pre-advice and orders... 5 3.2 View pre-advice or order... Contents 1. Introduction... 3 2. Login... 4 3. Order Status... 5 3.1 Search for pre-advice and orders... 5 3.2 View pre-advice or order... 5 3.2.1 Coli... 7 3.2.2 Coli and Tracking and Tracing... 8 3.2.3

More information

OVERVIEW SALES END OF DAY TIMECLOCK LOGIN PRACTICE. QuickBooks Point Of Sale User Manual

OVERVIEW SALES END OF DAY TIMECLOCK LOGIN PRACTICE. QuickBooks Point Of Sale User Manual OVERVIEW SALES END OF DAY TIMECLOCK LOGIN PRACTICE QuickBooks Point Of Sale User Manual Overview QuickBooks Point of Sale (POS) is used to ring up sales, manage customers, provide inventory control, and

More information

Wind River Financial iprocess Setup Guide for IOS Devices

Wind River Financial iprocess Setup Guide for IOS Devices Wind River Financial iprocess Setup Guide for IOS Devices (Requires ios 4.3 or later. Compatible with iphone, ipad, and ipod touch. This app is optimized for iphone 5.) Table of Contents (Clickable Links):

More information

ESMO Online event registration instructions Register someone else or few participants (1-9 persons)

ESMO Online event registration instructions Register someone else or few participants (1-9 persons) ESMO Online event registration instructions Register someone else or few participants (1-9 persons) INDEX Registration requirements... Page 2 1. Account with ESMO... Page 3 2. Login into your personal

More information

Using MS-SQL Server with Visual DataFlex March, 2009

Using MS-SQL Server with Visual DataFlex March, 2009 Using MS-SQL Server with Visual DataFlex March, 2009 All rights reserved. Target Audience It is assumed that the reader of this white paper has general knowledge of the Visual DataFlex development environment.

More information

BlackBerry Enterprise Service 10. Secure Work Space for ios and Android Version: 10.1.1. Security Note

BlackBerry Enterprise Service 10. Secure Work Space for ios and Android Version: 10.1.1. Security Note BlackBerry Enterprise Service 10 Secure Work Space for ios and Android Version: 10.1.1 Security Note Published: 2013-06-21 SWD-20130621110651069 Contents 1 About this guide...4 2 What is BlackBerry Enterprise

More information

1) After login WinTonenet Securities Trading System, a window named WinTonenet Securities Trading will be shown.

1) After login WinTonenet Securities Trading System, a window named WinTonenet Securities Trading will be shown. (A) BUY STOCKS WinTonenet Securities Trading Guidelines (2) TRANSACTION (STANDARD VERSION) 1) After login WinTonenet Securities Trading System, a window named WinTonenet Securities Trading will be shown.

More information

How to Copy A SQL Database SQL Server Express (Making a History Company)

How to Copy A SQL Database SQL Server Express (Making a History Company) How to Copy A SQL Database SQL Server Express (Making a History Company) These instructions are written for use with SQL Server Express. Check with your Network Administrator if you are not sure if you

More information

College of Continuing Education Video Production Room

College of Continuing Education Video Production Room College of Continuing Education Video Production Room To Begin a Session: Step 1: Turn on the Station by pressing the red switch near the desktop monitor. By doing this the following equipment will be

More information

SQL Server Setup for Assistant/Pro applications Compliance Information Systems

SQL Server Setup for Assistant/Pro applications Compliance Information Systems SQL Server Setup for Assistant/Pro applications Compliance Information Systems The following document covers the process of setting up the SQL Server databases for the Assistant/PRO software products form

More information

How to set up your NMC Online account. How to set up your NMC Online account

How to set up your NMC Online account. How to set up your NMC Online account How to set up your NMC Online account 1 Introduction NMC Online is a secure service which allows you to manage your registration with us online. This guidance explains how you can set up your account.

More information

Vision Document Airline Reservation System

Vision Document Airline Reservation System Vision Document Airline Reservation System Submitted in partial fulfillment of the requirements of the degree of Master of Software Engineering Kaavya Kuppa CIS 895 MSE Project Department of Computing

More information

USER MANUAL Students Entry Form

USER MANUAL Students Entry Form Pharmacy Council of India USER MANUAL Students Entry Form Release 0.1 dated -- September 2012 All rights reserved. Logicsoft International Private Limited, New Delhi, INDIA Table of Contents 1. INTRODUCTION...

More information

Offline Payment Methods

Offline Payment Methods Offline Payment Methods STRONGVON Tournament Management System 1 Overview The STRONGVON Tournament Management System allows you to collect online registration, while arranging for offline payment methods

More information

FTS Real Time Client: Equity Portfolio Rebalancer

FTS Real Time Client: Equity Portfolio Rebalancer FTS Real Time Client: Equity Portfolio Rebalancer Many portfolio management exercises require rebalancing. Examples include Portfolio diversification and asset allocation Indexation Trading strategies

More information

7.1 Transfers... 7.2 Cancellations & Refunds.. 8 - Net Rate Module for Agent Processing...

7.1 Transfers... 7.2 Cancellations & Refunds.. 8 - Net Rate Module for Agent Processing... OPERATOR USER MANUAL 2008 TABLE OF CONTENTS 1- Registration 1.1 Open Website... 1.2 Registration Type. 1.3 Welcome Page. 1.4 Log In Page.. 1.5 Company Information Page 1.6 Registration Confirmation Page.

More information

INSTRUCTIONS GUIDE FOR BLUE AIR TICKETS ISSUANCE

INSTRUCTIONS GUIDE FOR BLUE AIR TICKETS ISSUANCE INSTRUCTIONS GUIDE FOR BLUE AIR TICKETS ISSUANCE A. INTRODUCTION BLUE AIR has developed a transparent and dynamic business model addressed to its partner Agencies, by offering support and flexible conditions,

More information

Bitrix Site Manager. Quick Guide To Using The AD/LDAP Module

Bitrix Site Manager. Quick Guide To Using The AD/LDAP Module Bitrix Site Manager Quick Guide To Using The AD/LDAP Module Contents Introduction... 3 Chapter 1. The Principal Features Of The Module... 4 Chapter 2. How It Works... 6 Chapter 3. Configuring AD/LDAP Authorization...

More information

Implementing and Maintaining Microsoft SQL Server 2008 Integration Services

Implementing and Maintaining Microsoft SQL Server 2008 Integration Services Course 6234A: Implementing and Maintaining Microsoft SQL Server 2008 Integration Services Length: 3 Days Language(s): English Audience(s): IT Professionals Level: 200 Technology: Microsoft SQL Server 2008

More information

Single Sign-On Guide for Blackbaud NetCommunity and The Patron Edge Online

Single Sign-On Guide for Blackbaud NetCommunity and The Patron Edge Online Single Sign-On Guide for Blackbaud NetCommunity and The Patron Edge Online 062212 2012 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any form or by any

More information

User s Guide. Version 2.1

User s Guide. Version 2.1 Content Management System User s Guide Version 2.1 Page 1 of 51 OVERVIEW CMS organizes all content in a tree hierarchy similar to folder structure in your computer. The structure is typically predefined

More information

Chapter-15 -------------------------------------------- Replication in SQL Server

Chapter-15 -------------------------------------------- Replication in SQL Server Important Terminologies: What is Replication? Replication is the process where data is copied between databases on the same server or different servers connected by LANs, WANs, or the Internet. Microsoft

More information

Cre-X-Mice Database. User guide

Cre-X-Mice Database. User guide Cre-X-Mice Database User guide Table of Contents Table of Figure... ii Introduction... 1 Searching the Database... 1 Quick Search Mode... 1 Advanced Search... 1 Viewing Search Results... 2 Registration...

More information

Knocker main application User manual

Knocker main application User manual Knocker main application User manual Author: Jaroslav Tykal Application: Knocker.exe Document Main application Page 1/18 U Content: 1 START APPLICATION... 3 1.1 CONNECTION TO DATABASE... 3 1.2 MODULE DEFINITION...

More information

SOS SO S O n O lin n e lin e Bac Ba kup cku ck p u USER MANUAL

SOS SO S O n O lin n e lin e Bac Ba kup cku ck p u USER MANUAL SOS Online Backup USER MANUAL HOW TO INSTALL THE SOFTWARE 1. Download the software from the website: http://www.sosonlinebackup.com/download_the_software.htm 2. Click Run to install when promoted, or alternatively,

More information

SQL Server An Overview

SQL Server An Overview SQL Server An Overview SQL Server Microsoft SQL Server is designed to work effectively in a number of environments: As a two-tier or multi-tier client/server database system As a desktop database system

More information

MS SQL Performance (Tuning) Best Practices:

MS SQL Performance (Tuning) Best Practices: MS SQL Performance (Tuning) Best Practices: 1. Don t share the SQL server hardware with other services If other workloads are running on the same server where SQL Server is running, memory and other hardware

More information

Wireless Sensor Networks Database: Data Management and Implementation

Wireless Sensor Networks Database: Data Management and Implementation Sensors & Transducers 2014 by IFSA Publishing, S. L. http://www.sensorsportal.com Wireless Sensor Networks Database: Data Management and Implementation Ping Liu Computer and Information Engineering Institute,

More information

Welcome to CompanyBlue by JetBlue.

Welcome to CompanyBlue by JetBlue. Welcome to CompanyBlue by JetBlue. First we d like to thank you for considering CompanyBlue for your business travel needs. You ve recognized what a great fit JetBlue is for business travelers. JetBlue

More information

Performance Tuning for the Teradata Database

Performance Tuning for the Teradata Database Performance Tuning for the Teradata Database Matthew W Froemsdorf Teradata Partner Engineering and Technical Consulting - i - Document Changes Rev. Date Section Comment 1.0 2010-10-26 All Initial document

More information

Airline Flight and Reservation System. Software Design Document. Name:

Airline Flight and Reservation System. Software Design Document. Name: Airline Flight and Reservation System Software Design Document Name: Date: 15.01.2011 Table of Contents 1. Introduction... 3 1.1 Purpose...3 1.2 Scope...3 1.3 Overview...3 2. System Overview... 4 3. System

More information

Architecture and Data Flow Overview. BlackBerry Enterprise Service 10 721-08877-123 Version: 10.2. Quick Reference

Architecture and Data Flow Overview. BlackBerry Enterprise Service 10 721-08877-123 Version: 10.2. Quick Reference Architecture and Data Flow Overview BlackBerry Enterprise Service 10 721-08877-123 Version: Quick Reference Published: 2013-11-28 SWD-20131128130321045 Contents Key components of BlackBerry Enterprise

More information

USING MYWEBSQL FIGURE 1: FIRST AUTHENTICATION LAYER (ENTER YOUR REGULAR SIMMONS USERNAME AND PASSWORD)

USING MYWEBSQL FIGURE 1: FIRST AUTHENTICATION LAYER (ENTER YOUR REGULAR SIMMONS USERNAME AND PASSWORD) USING MYWEBSQL MyWebSQL is a database web administration tool that will be used during LIS 458 & CS 333. This document will provide the basic steps for you to become familiar with the application. 1. To

More information

A Tutorial on SQL Server 2005. CMPT 354 Fall 2007

A Tutorial on SQL Server 2005. CMPT 354 Fall 2007 A Tutorial on SQL Server 2005 CMPT 354 Fall 2007 Road Map Create Database Objects Create a database Create a table Set a constraint Create a view Create a user Query Manage the Data Import data Export

More information

ABSTRACT. would end the use of the hefty 1.5-kg ticket racks carried by KSRTC conductors. It would also end the

ABSTRACT. would end the use of the hefty 1.5-kg ticket racks carried by KSRTC conductors. It would also end the E-Ticketing 1 ABSTRACT Electronic Ticket Machine Kerala State Road Transport Corporation is introducing ticket machines on buses. The ticket machines would end the use of the hefty 1.5-kg ticket racks

More information

Contactegration for The Raiser s Edge

Contactegration for The Raiser s Edge Contactegration for The Raiser s Edge development@zeidman.info www.zeidman.info UK: 020 3637 0080 US: (646) 570 1131 Table of Contents Overview... 3 Installation... 3 Set up... 4 Activation... 5 Connecting

More information

Bookstore Inventory System Software Design Document. Version 1.0

Bookstore Inventory System Software Design Document. Version 1.0 Bookstore Inventory System Software Design Document Version 1.0 Revision History Date Version Description Author 17 November, 2010 0.1 Initial Draft Gerson Recinos Ho Nam Ho Jimar Miller Adam Wurtzel David

More information

HP Application Lifecycle Management

HP Application Lifecycle Management HP Application Lifecycle Management Software Version: 11.00 Microsoft Word Add-in Guide Document Release Date: November 2010 Software Release Date: October 2010 Legal Notices Warranty The only warranties

More information

ESMO ONLINE EVENT REGISTRATION INSTRUCTION REGISTER YOURSELF

ESMO ONLINE EVENT REGISTRATION INSTRUCTION REGISTER YOURSELF ESMO ONLINE EVENT REGISTRATION INSTRUCTION REGISTER YOURSELF INDEX Preliminary information Registration requirements... Page 2 Individual registration 1. Account with ESMO... Page 3 2. Login into your

More information

Contents INDEX...61 ECRM...1

Contents INDEX...61 ECRM...1 ecrm Guide 111011 2011 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any form or by any means, electronic, or mechanical, including photocopying, recording,

More information

A Guide to Connecting to FreePBX

A Guide to Connecting to FreePBX A Guide to Connecting to FreePBX FreePBX is a basic web Graphical User Interface that manages Asterisk PBX. It includes many features available in other PBX systems such as voice mail, conference calling,

More information

A PROJECT PRESENTATION ON ONLINE MOVIE TICKET BOOKING SYSTEM. Submitted To : Department Of Computer Science

A PROJECT PRESENTATION ON ONLINE MOVIE TICKET BOOKING SYSTEM. Submitted To : Department Of Computer Science A PROJECT PRESENTATION ON ONLINE MOVIE TICKET BOOKING SYSTEM Submitted To : Department Of Computer Science Developed By : Chirag Modi - 13084231061 Paresh Patel - 13084231165 M.Sc.(CA & IT) - III Sem.

More information

VDF Query User Manual

VDF Query User Manual VDF Query User Manual Page 1 of 25 Table of Contents Quick Start... 3 Security... 4 Main File:... 5 Query Title:... 6 Fields Tab... 7 Printed Fields... 8 Task buttons... 9 Expression... 10 Selection...

More information

Stock Trading System Software Design Document

Stock Trading System Software Design Document Stock Trading System Software Design Document Project Name: Stock Trading System Prepared by: Jin Li Student ID: 3062211079 Version: 1.2 Faculty adviser: Jin Bo CATALOG 1 Introduction...4 1.1 Purpose...

More information

WEB BASED Access Control/Time Attendance Software Manual V 1.0

WEB BASED Access Control/Time Attendance Software Manual V 1.0 WEB BASED Access Control/Time Attendance Software Manual V 1.0 2007/12/26 CONTENT 1. First Login...3 2. Terminal Setup...3 2.1 Add Terminal...4 2.2 Delete Terminal...5 2.3 Modify Terminal...5 2.4 List

More information

How to create an Expense Report through iexpense in the iphone Mobile App

How to create an Expense Report through iexpense in the iphone Mobile App How to create an Expense Report through iexpense in the iphone Mobile App 1. Before you can submit Expense Reports through the mobile app, you need to access iexpense through the web application to set

More information

Apparo Fast Edit. Excel data import via email 1 / 19

Apparo Fast Edit. Excel data import via email 1 / 19 Apparo Fast Edit Excel data import via email 1 / 19 1 2 3 4 5 Definition 3 Benefits at a glance 3 Example 4 3.1 Use Case 4 3.2 How users experience this feature 4 Email ImportBusiness Case 6 4.1 Creating

More information

CHARTrunner Data Management System

CHARTrunner Data Management System PQ has a new quality data management and data entry system that stores data in SQL Server. If you are familiar with the way that SQCpack manages data then you will recognize a lot of similarity in this

More information

Once form has been completed by one or more employees the information can be entered on the employees direct deposit screen.

Once form has been completed by one or more employees the information can be entered on the employees direct deposit screen. Banyon Data Systems, Inc. DIRECT DEPOSIT MODULE BDS Direct Deposit or ACH (Automated Clearing House) allows your entity to transfer its employee s pay directly to their bank accounts. This module does

More information

Remote Sensitive Image Stations and Grid Services

Remote Sensitive Image Stations and Grid Services International Journal of Grid and Distributed Computing 23 Remote Sensing Images Data Integration Based on the Agent Service Binge Cui, Chuanmin Wang, Qiang Wang College of Information Science and Engineering,

More information

AUTOMATE CRAWLER TOWARDS VULNERABILITY SCAN REPORT GENERATOR

AUTOMATE CRAWLER TOWARDS VULNERABILITY SCAN REPORT GENERATOR AUTOMATE CRAWLER TOWARDS VULNERABILITY SCAN REPORT GENERATOR Pragya Singh Baghel United College of Engineering & Research, Gautama Buddha Technical University, Allahabad, Utter Pradesh, India ABSTRACT

More information

A Project Presentation on Online Car Rental System

A Project Presentation on Online Car Rental System A Project Presentation on Online Car Rental System Submitted To: Department of Computer Science, Ganpat University,384012 Group No: 74 Submitted By: Internal Guide: Khushbu Patel (13084231136) Niyati Patel

More information

DiskPulse DISK CHANGE MONITOR

DiskPulse DISK CHANGE MONITOR DiskPulse DISK CHANGE MONITOR User Manual Version 7.9 Oct 2015 www.diskpulse.com info@flexense.com 1 1 DiskPulse Overview...3 2 DiskPulse Product Versions...5 3 Using Desktop Product Version...6 3.1 Product

More information

SoftwarePlanner Active Directory Authentication

SoftwarePlanner Active Directory Authentication User s Guide SoftwarePlanner Active Directory Authentication This document provides an explanation of using Active Directory with SoftwarePlanner. 1 Narrative In some situations, it may be preferable to

More information

RightFax Internet Connector Frequently Asked Questions

RightFax Internet Connector Frequently Asked Questions RightFax Internet Connector Frequently Asked Questions What is the RightFax Internet Connector? The RightFax Internet Connector is a connector within RightFax 10.5 which provides an Internet connection

More information

CSSEA Helpdesk User Guide

CSSEA Helpdesk User Guide CSSEA Helpdesk User Guide Contents I. Creating tickets... 3 1. Creating a New Ticket via Email... 3 a. Email format... 3 b. New ticket reply... 3 2. Creating a New ticket via the Website... 4 a. Browse

More information

Fleet Management System FMS. User Manual

Fleet Management System FMS. User Manual Fleet Management System FMS User Manual Page 1 of 21 Disclaimer No part of this publication may be reproduced, or transmitted in any form or by any means without the written permission of Control Module,

More information

HP A-IMC Firewall Manager

HP A-IMC Firewall Manager HP A-IMC Firewall Manager Configuration Guide Part number: 5998-2267 Document version: 6PW101-20110805 Legal and notice information Copyright 2011 Hewlett-Packard Development Company, L.P. No part of this

More information

MySchoolBucks Parent User Guide

MySchoolBucks Parent User Guide MySchoolBucks Parent User Guide Table of Contents MySchoolBucks Parent User Guide... 3 Creating a Parent Account in MySchoolBucks... 4 Adding a Student... 5 Adding a Student on a New Account... 5 Adding

More information

The software shall provide the necessary tools to allow a user to create a Dashboard based on the queries created.

The software shall provide the necessary tools to allow a user to create a Dashboard based on the queries created. IWS BI Dashboard Template User Guide Introduction This document describes the features of the Dashboard Template application, and contains a manual the user can follow to use the application, connecting

More information

HP IMC Firewall Manager

HP IMC Firewall Manager HP IMC Firewall Manager Configuration Guide Part number: 5998-2267 Document version: 6PW102-20120420 Legal and notice information Copyright 2012 Hewlett-Packard Development Company, L.P. No part of this

More information

Toad for Oracle 8.6 SQL Tuning

Toad for Oracle 8.6 SQL Tuning Quick User Guide for Toad for Oracle 8.6 SQL Tuning SQL Tuning Version 6.1.1 SQL Tuning definitively solves SQL bottlenecks through a unique methodology that scans code, without executing programs, to

More information

Webapps Vulnerability Report

Webapps Vulnerability Report Tuesday, May 1, 2012 Webapps Vulnerability Report Introduction This report provides detailed information of every vulnerability that was found and successfully exploited by CORE Impact Professional during

More information

MyOra 3.0. User Guide. SQL Tool for Oracle. Jayam Systems, LLC

MyOra 3.0. User Guide. SQL Tool for Oracle. Jayam Systems, LLC MyOra 3.0 SQL Tool for Oracle User Guide Jayam Systems, LLC Contents Features... 4 Connecting to the Database... 5 Login... 5 Login History... 6 Connection Indicator... 6 Closing the Connection... 7 SQL

More information

Wrightstown School District

Wrightstown School District Wrightstown School District Overview E-help desk gives you the ability to create your own Help Desk tickets. It also allows you to be able to check the status of your requests, and add updates (comments)

More information

EFFICIENT TRAVEL TICKETING SYSTEM USING QUICK RESPONSE CODE ON AN ANDROID

EFFICIENT TRAVEL TICKETING SYSTEM USING QUICK RESPONSE CODE ON AN ANDROID EFFICIENT TRAVEL TICKETING SYSTEM USING QUICK RESPONSE CODE ON AN ANDROID 1 Mr. Shrikant R. Kokate, 2 Sunaina Badgelwar, 3 Madhuri Dahake, 4 Deepali More, 5 Samruddhi Patankar 1 Assistant Professor, 2,3,4,5

More information

pset 7: C$50 Finance Zamyla Chan zamyla@cs50.net

pset 7: C$50 Finance Zamyla Chan zamyla@cs50.net pset 7: C$50 Finance Zamyla Chan zamyla@cs50.net Toolbox permissions HTML PHP SQL permissions use chmod in the Terminal to change permissions of files and folders chmod a+x folder folder executable by

More information

Contents COMBO SCREEN FOR THEPATRON EDGE ONLINE...1 TICKET/EVENT BUNDLES...11 INDEX...71

Contents COMBO SCREEN FOR THEPATRON EDGE ONLINE...1 TICKET/EVENT BUNDLES...11 INDEX...71 Combo Screen Guide 092311 2011 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any form or by any means, electronic, or mechanical, including photocopying,

More information

Video Administration Backup and Restore Procedures

Video Administration Backup and Restore Procedures CHAPTER 12 Video Administration Backup and Restore Procedures This chapter provides procedures for backing up and restoring the Video Administration database and configuration files. See the following

More information

Application Note SORCUS Support System. Using the SORCUS Support System (Customers)

Application Note SORCUS Support System. Using the SORCUS Support System (Customers) AN-0137 Application Note SORCUS Support System Using the SORCUS Support System (Customers) This application note gives a short introduction how to use the SORCUS Support System. 1. Purpose To be able to

More information

Database Design Patterns. Winter 2006-2007 Lecture 24

Database Design Patterns. Winter 2006-2007 Lecture 24 Database Design Patterns Winter 2006-2007 Lecture 24 Trees and Hierarchies Many schemas need to represent trees or hierarchies of some sort Common way of representing trees: An adjacency list model Each

More information

Using DOTS as Apache Derby System Test

Using DOTS as Apache Derby System Test Using DOTS as Apache Derby System Test Date: 02/16/2005 Author: Ramandeep Kaur ramank@yngvi.org Table of Contents 1 Introduction... 3 2 DOTS Overview... 3 3 Running DOTS... 4 4 Issues/Tips/Hints... 6 5

More information

Partizan Access Control Management User Manual. Version 2.0.0, 14 August 2015

Partizan Access Control Management User Manual. Version 2.0.0, 14 August 2015 Partizan Access Control Management User Manual Version 2.0.0, 14 August 2015 Abstract This document is the Software User Manual (SUM) for the Partizan Access Control Management project and was made according

More information

Overview of Databases On MacOS. Karl Kuehn Automation Engineer RethinkDB

Overview of Databases On MacOS. Karl Kuehn Automation Engineer RethinkDB Overview of Databases On MacOS Karl Kuehn Automation Engineer RethinkDB Session Goals Introduce Database concepts Show example players Not Goals: Cover non-macos systems (Oracle) Teach you SQL Answer what

More information

MSD IT High Compliance system Fact sheet

MSD IT High Compliance system Fact sheet MSD IT High Compliance system Fact sheet The MSD IT High Compliance system is a service for Clinical Trials Units (CTUs) and Medical Division Departments or Units who need to securely access critical applications,

More information

A Brief Introduction to MySQL

A Brief Introduction to MySQL A Brief Introduction to MySQL by Derek Schuurman Introduction to Databases A database is a structured collection of logically related data. One common type of database is the relational database, a term

More information

2) What is the structure of an organization? Explain how IT support at different organizational levels.

2) What is the structure of an organization? Explain how IT support at different organizational levels. (PGDIT 01) Paper - I : BASICS OF INFORMATION TECHNOLOGY 1) What is an information technology? Why you need to know about IT. 2) What is the structure of an organization? Explain how IT support at different

More information

Easy Data Centralization with Webster. User Guide

Easy Data Centralization with Webster. User Guide Easy Data Centralization with Webster User Guide CONTENTS 3-4 1 Introducing Webster Webster - An Introduction 5-14 2 Installing & Configuring Webster Installing the System Configuring Webster 15-18 3 Managing

More information

HP Quality Center. Software Version: 10.00. Microsoft Word Add-in Guide

HP Quality Center. Software Version: 10.00. Microsoft Word Add-in Guide HP Quality Center Software Version: 10.00 Microsoft Word Add-in Guide Document Release Date: February 2012 Software Release Date: January 2009 Legal Notices Warranty The only warranties for HP products

More information

Employer Quick User Guideline

Employer Quick User Guideline The Hong Kong Institute of Education Employer Quick User Guideline URL: http://edjobplus.ied.edu.hk Step 1: Registration and Login Ed Job Plus 1. Select > Employer panel 2. Register a new account with

More information