SlideShare a Scribd company logo
1 of 17
Download to read offline
[COMPANY NAME] REGISTRATION SYSTEM

                                                 TABLE OF CONTENTS
                                                                                                                                                 Page #

1.0   GENERAL INFORMATION .......................................................................................................... 1-1
      1.2    Purpose ................................................................................................................................... 1-1
      1.3    Problem Statement ................................................................................................................. 1-1
      1.3    Solution Statement ................................................................................................................. 1-1
      1.4    Scope & System Overview..................................................................................................... 1-2
      1.5    Points of Contact .................................................................................................................... 1-2

2.0   DATABASE IDENTIFICATION AND DESCRIPTION ............................................................... 2-1
      2.1    System Using the Database .................................................................................................... 2-1
      2.2    Relationship to Other Database .............................................................................................. 2-1
      2.3    Database Information ............................................................................................................. 2-1
      2.4    Relationship to Other Databases ............................................................................................ 2-1
      2.5    ERD Diagram ......................................................................................................................... 2-2
      2.6    Data Dictionary ...................................................................................................................... 2-5
      2.7    Data Process Flow .................................................................................................................. 2-7

3.0   DATABASE ADMINISTRATIVE INFORMATION .................................................................... 3-1
      3.1    System Information ................................................................................................................ 3-1
      3.2    Database Management System (DBMS) Configuration ........................................................ 3-1
      3.3    Hardware Configuration ......................................................................................................... 3-2
      3.4    Database Software Utilities .................................................................................................... 3-3
      3.5    Security................................................................................................................................... 3-3
      3.6    Storage Requirements............................................................................................................. 3-3
      3.7    Recovery................................................................................................................................. 3-3
      3.7    Error Handling........................................................................................................................ 3-3




[COMPANY NAME] Registration System                                                                                                                 Page i
1.0 General Information




                                     1.0   GENERAL INFORMATION




[COMPANY NAME] Registration System
1.0 General Information



1.0     GENERAL INFORMATION

The European Innovation, Technology, and Science Center Foundation ([COMPANY NAME])

The European Chamber of Commerce of the Philippines, the German Development Cooperation, and the
Asia-Europe Foundation of the Philippines gathered together to promote innovation, technology and
science thus forming European Innovation, Technology and Center Foundation ([COMPANY NAME]) –
a training center aimed at providing training courses and seminars for students, graduates, teachers, and
IT/BPO professionals in cooperation with leading providers.

Training programs include soft skills such as customer relations and leadership as well as technical skills
like basic and advanced desktop applications and computer programming.

In cooperation with non-government organizations and local social services departments, the
[COMPANY NAME] also provides high school awareness seminars and out-of-school youth
development programs.
 

1.1     Purpose

Design a dynamic Database System for [COMPANY NAME] Registration process.

1.2     Problem Statement

The current process of [COMPANY NAME] when it comes to storing data such as training manuals,
trainees’ and facilitators’ records, progress and performance reports solely relies on manual encoding.
[COMPANY NAME] does not have a centralized database or system that will easily track all their
records and data. A lot of paper work needs to be accomplished and records/data are manually encoded by
the employee, trainees and facilitators. Duplication and loss of data has been inevitable and employees
also find it difficult and time consuming to consolidate records and reports. 

1.3     Solution Statement

To design a Content Management System that will:

        Automate the entire documentation process from trainee registration, facilitator schedule
        arrangement, down to invoicing since the system is integrated to [COMPANY NAME]’s billing
        system.
        Allow easy tracking for all types of data such as training schedules, trainees’ personal details,
        success rate of event, etc.
        Centralize all records, trackers, manuals and files.
        Allow automatic consolidation of all data thus eliminating duplication and loss of pertinent
        information.
        Faster turn-around time when it comes to accomplishing tasks.




[COMPANY NAME] Registration System                                                                Page 1-1
1.0 General Information




[COMPANY NAME] Registration System                 Page 1-2
1.0 General Information


1.4     Scope & System Overview

Project Name: [COMPANY NAME] Registration System

[COMPANY NAME] CMS web based System is designed to:

        •   Automate business process
        •   Easy Tracking
        •   Data Consolidation
        •   Report Generation

The system uses Hypertext Pro-Processor (PHP) as its core scripting language, MySQL as the database
storage, plus several client scripting languages such as AJAX, JQuery and CSS for other add-on designs
and features.

The main functionalities of the system are the following:

        •   Adding, editing, and deleting data
        •   User authentication for data access control
        •   Logs to track user activities
        •   Filter bar for searching of records
        •   RTE: Rich Text Editor tool bar (similar to Word document features)



1.5     Points of Contact

    Joana Narciso – Business Development Manager

    Contact Numbers: 845-1324 loc. 224 / 09151280383
    Email Address: joana@[company name].com

    European Innovation, Technology, and Science Center Foundation
    19/F Philippine AXA Life Centre, Sen. Gil Puyat Ave. cor. Tindalo St., Makati City
    Landline: 759-6680/ 759-2246 | Fax: 759-2247 |Website: info@[company name].com




[COMPANY NAME] Registration System                                                             Page 1-3
2.0 Database Identification and Description




                   2.0    DATABASE IDENTIFICATION AND DESCRIPTION




[COMPANY NAME] Registration System
2.0 Database Identification and Description



2.0    DATABASE IDENTIFICATION AND DESCRIPTION


2.1    Systems Using the Database

   1. [COMPANY NAME] Registration System as main data storage
   2. [COMPANY NAME] Accounting Database for invoice reference


2.2    Relationship to Other Databases

[COMPANY NAME] Registration System is connected to [COMPANY NAME] Accounting Database.


2.3    Database Information

Database Name: [COMPANY NAME]

Table Name        Description                                  Primary Key         Foreign Key
course            Course table                                 courseId            cousrcatId
coursecategory    Course category, look up table for courses   cousrcatId
facilitator       Facilitators profile table                   facilitatorId
training          Training table                               trainingId          coursed, facilitatorId
users             User Accounts table                          user_id
logs              Audit logs for user activities               logs_id
participant       Participants profile table                   participantId
registration      Registration table                           regId                trainingId, participantId




[COMPANY NAME] Registration System                                                           Page 2-1
2.0 Database Identification and Description

2.4      ERD Diagram




2.5      Data Dictionary

Table structure for table course

Field              Description                    Data Type             Null
courseId           Course ID                      int(11)               No
title              Course Title                   varchar(255)          No
intro              Course Introduction            varchar(100)          No
desc               Course Description             text                  No
dateposted         Course Date Posted             datetime              No
status             Course Status                  tinyint(4)            No
coursecatId        Course Category ID             int(11)               No

Table structure for table coursecategory

Field              Description                    Data Type             Null
coursecatId        Course Category ID             int(11)               No
title              Course Category Ttitle         varchar(225)          No
desc               Course Categorry Description   text                  No
dateposted         Course Category Date Posted    datetime              No
status             Course Category Status         tinyint(4)            No


[COMPANY NAME] Registration System                                                         Page 2-2
2.0 Database Identification and Description


Table structure for table facilitator

Field               Description                               Date Type          Null
facilitatorId       Facilitator’s ID                          int(11)            No
firstName           Facilitator’s First Name                  varchar(50)        No
midName             Facilitator’s Middle Name                 varchar(50)        No
titleName           Facilitator’s Title                       varchar(50)        No
midName             Facilitator’s Middle Name                 varchar(50)        No
address             Facilitator’s Address                     varchar(255)       No
email               Facilitator’s Email Address               varchar(100)       No
phoneno             Facilitator’s Phone Number                varchar(50)        No
mobile_1            Facilitator’s Mobile Number               varchar(50)        No
mobile_2            Facilitator’s Mobile Number 2             varchar(50)        No
fax                 Facilitator’s Fax Number                  varchar(50)        No
sex                 Facilitator’s Gender                      char(1)            No
birth_date          Facilitator’s Birth Date                  date               No
salary              Facilitator’s Salary                      decimal(9,2)       No
tin_number          Facilitator’s Tax Identification Number   int(11)            No
dateposted          Facilitator’s Date Posted                 datetime           No
status              Facilitator’s Status                      tinyint(4)         No




Table structure for table logs

Field               Description                                Data Type           Null
logs_id             Logs ID                                    int(11)             No
logs_table          Logs Table                                 varchar(50)         No
logs_rec_id         Logs Record ID                             int(11)             No
logs_action         Logs Action                                varchar(255)        No
logs_keyword        Logs Keyword                               varchar(255)        No
logs_user_id        Logs User ID                               int(11)             No
logs_username       Logs Username                              varchar(100)        No
logs_ipadd          Logs IP Address                            varchar(50)         No
logs_datepost       Logs Date Posted                           datetime            No




[COMPANY NAME] Registration System                                                                 Page 2-3
2.0 Database Identification and Description

Table structure for table participant

Field               Description                     Data Type          Null
participantId       Participant ID                  int(11)            No
firstName           Participant’s First Name        varchar(50)        No
midName             Participant’s Middle Name       varchar(50)        No
lastName            Participant’s Last Name         varchar(50)        No
address             Participant’s Address           varchar(255)       No
email               Participant’s Email             varchar(100)       No
phoneno             Participant’s Phone Number      varchar(50)        No
mobile_1            Participant’s Mobile Number     varchar(50)        No
mobile_2            Participant’s Mobile Number 2   varchar(50)        No
fax                 Participant’s Fax               varchar(50)        No
position            Participant’s position          varchar(100)       No
company_name        Participant’s Company Name      varchar(255)       No
company_address     Participant’s Company Address   varchar(255)       No
dateposted          Participant’s Date Posted       datetime           No
status              Participant’s Status            tinyint(4)         No



Table structure for table registration


Field              Description                      Data Type          Null
regId              Registration ID                  int(11)            No
reg_status         Registration Status              varchar(50)        No
reg_by             Registration Made By             varchar(150)       No
ORID               OR Id number                     int                No
reg_balance        Registration Amount Balance      decimal(9,2)       No
remarks            Registration Remarks             text               No
dateposted         Registration Date Posted         datetime           No
status             Registration Status              tinyint(4)         No
trainingId         Registration Training ID         int(11)            No
participantId      Registration Participant ID      int(11)            No




[COMPANY NAME] Registration System                                                     Page 2-4
2.0 Database Identification and Description

Table structure for table training


Field               Description                      Data Type          Null
trainingId          Training ID                      int(11)            No
regular_rate        Training Regular Rate            decimal(9,2)       No
early_bird_rate     Training Early Bird Date         decimal(9,2)       No
location            Training Location                varchar(255)       No
time                Training Time                    varchar(50)        No
start_date          Training Start Date              date               No
end_date            Training End Date                date               No
max_participants    Training Maximum Participants    tinyint(4)         No
contact_person      Training Contact Person          varchar(150)       No
contact_phone       Training Contact Phone Number    varchar(50)        No
contact_mobile      Training Contact Mobile Number   varchar(50)        No
remarks             Training Remarks                 text               No
dateposted          Training Date Posted             datetime           No
status              Training Status                  tinyint(4)         No
courseId            Training Course ID               int(11)            No
facilitatorId       Training Facilitator ID          int(11)            No



Table structure for table users

Field               Description                      Data Type          Null
user_id             User’s ID                        bigint(20)         No
user_lname          User’s Last Name                 varchar(50)        No
user_fname          User’s First Name                varchar(50)        No
user_mname          User’s Middle Name               varchar(50)        No
user_email          User’s Email Address             varchar(220)       No
user_mobile         User’s Mobile Number             varchar(50)        No
user_address        User’s Address                   text               No
user_level          User’s Level                     tinyint(4)         No
username            User’s Username                  varchar(200)       No
pwd                 User’s Password                  varchar(220)       No
ipadd               User’s IP Address                varchar(200)       No
user_status         User’s Record Status             tinyint(4)         No
user_datepost       User’s Date Posted               datetime           No
ckey                Cache                            varchar(220)       No
ctime               Session Cache                    varchar(220)       No




[COMPANY NAME] Registration System                                                      Page 2-5
2.0 Database Identification and Description

2.6     Special Instructions: Data Process Flow

Step 1: Create User Account for CMS access




Step 2: Create Course




Step 3: Create Facilitator Profile




[COMPANY NAME] Registration System                                             Page 2-6
2.0 Database Identification and Description

Step 4: Create Training Record




Step 5: Register Applicants




NOTE: Add Screen shots




[COMPANY NAME] Registration System                                     Page 2-7
3.0 Database Administrative Information




                        3.0    DATABASE ADMINISTRATIVE INFORMATION




[COMPANY NAME] Registration System
3.0 Database Administrative Information



3.0    DATABASE ADMINISTRATIVE INFORMATION


3.1 System Information

Run using Xammp 1.7.0 for windows.

XAMPP 1.7.0 for Windows offers a collection of libraries and other applications useful for management
and administration of a website, with all units that are essential for this. It includes, among other
functions, PEAR, MiniPerl, mod_ssl, OpenSSL, PHPMyAdmin, Webalizer, FileZilla FTP Server,
SQLite, Zend Optimizer, Mercury Mail, as well as a comprehensive control panel designed for XAMPP.

A web server, a MySQL database, PHP, an e-mail server, FTP server and Perl are the key elements of this
distribution. Apache 2 and also includes the latest versions of MySQL and PHP, Apache and MySQL will
be installed as services.

3.2 Database Management System (DBMS) Configuration

XAMPP 1.7.0

Apache 2.2.11
  + MySQL 5.1.30 (Community Server)
  + PHP 5.2.8 + PEAR(Support for PHP 4 has been discontinued)
  + PHP-Switch win32 1.0
    (use "php-switch.bat" in the xampp main directory)
  + XAMPP Control Version 2.5 from www.nat32.com
  + XAMPP Security 1.0
  + SQLite 2.8.15
  + OpenSSL 0.9.8i
  + phpMyAdmin 3.1.1
  + ADOdb 4.990
  + Mercury Mail Transport System v4.52
  + FileZilla FTP Server 0.9.29
  + Webalizer 2.01-10
  + Zend Optimizer 3.3.0
  + eAccelerator 0.9.5.3 for PHP 5.2.8
 (but not activated in the php.ini)


3.3    Hardware Configuration
       Download XAMPP 1.7.0
       Install XAMPP in the root of your hard drive. (C:XAMPP)
       Set up permission access

3.4    Database Software Utilities

       PhpMyadmin, SQLite & MySQL 5.1.30



[COMPANY NAME] Registration System                                                            Page 3-1
3.0 Database Administrative Information

3.5     Security

        Ensure these XAMPP pages are no longer accessible by the network for everyone.
        Set up MySQL admin user root password protection.
        Set up PhpMyAdmin password login is enabled.
        Database will be available via a local network only.

http://localhost/security/xamppsecurity.php




        NOTE: Add also user permission on the system




NOTE: Add Network design



3.6     Storage Requirements


[COMPANY NAME] Registration System                                                           Page 3-2
3.0 Database Administrative Information

       Windows 98
       Windows ME
       Windows XP Home
       Windows NT
       Windows 2000
       Windows XP Professional (Recommended)
       64 MB RAM (recommended)
       200 MB free Fixed Disk

NOTE: Define server & client requirements


3.7    Recovery

       Export database monthly for updated back up

       Restore Data from MySQL dump file.

         mysql -u #username# -p #database# < #dump_file#                       -

       Write-ahead logging (WAL) and the recovery protocol are used to undo the actions of aborted
       transactions and to restore the system to a consistent state after a crash.

       Rollback to SAVEPOINT for selected modules

   NOTE: This MySQL statement instructs the MySQL server to reverse SQL statements for the current
   transaction back to a point marked in the transaction by the MySQL statement, SAVEPOINT. Any
   transactions for the session made after the savepoint are undone.

   This is in contrast to the MySQL statement, ROLLBACK by itself, which undoes all changes since the
   start of the transaction. Transaction statements are currently supported by the InnoDB, NDB Cluster,
   and BDB storage engines and are ignored if used with MyISAM tables. Multple savepoints may be
   set up during a transaction.

3.8    Error Handling

       System has error catcher define on each module.




[COMPANY NAME] Registration System                                                            Page 3-3

More Related Content

What's hot

Capstone Project Student Management System
Capstone Project Student Management SystemCapstone Project Student Management System
Capstone Project Student Management SystemDonna Muller
 
Online Library Mangement System
Online Library Mangement SystemOnline Library Mangement System
Online Library Mangement SystemAmmar Azeem
 
Leave Management System: Software Requirements Specification Document(SRS)
Leave Management System: Software Requirements Specification Document(SRS) Leave Management System: Software Requirements Specification Document(SRS)
Leave Management System: Software Requirements Specification Document(SRS) Abhilasha Lahigude
 
Library management system presentation
Library management system presentation Library management system presentation
Library management system presentation Smit Patel
 
Software Requirements Specification for restaurant management system
Software Requirements Specification for restaurant management systemSoftware Requirements Specification for restaurant management system
Software Requirements Specification for restaurant management systemSM. Aurnob
 
Library Management System
Library Management SystemLibrary Management System
Library Management SystemMartins Okoi
 
Future scope of alumni project
Future scope of alumni projectFuture scope of alumni project
Future scope of alumni projectArchana Deoli
 
Library management system
Library management systemLibrary management system
Library management systemParesh Gosavi
 
Library management system
Library management systemLibrary management system
Library management systemArman Ahmed
 
DFD for E-Commerce Website
DFD for E-Commerce WebsiteDFD for E-Commerce Website
DFD for E-Commerce WebsiteRabart Kurrey
 
SRS Document Of Course management software system.doc
SRS Document Of Course management software system.docSRS Document Of Course management software system.doc
SRS Document Of Course management software system.docMaRwa Samih AL-Amri
 
Functional requirements-document
Functional requirements-documentFunctional requirements-document
Functional requirements-documentAnil Kumar
 
Project proposal of school managment software
Project proposal of school managment softwareProject proposal of school managment software
Project proposal of school managment softwareProshanta Halder
 
Leave management system chp 1 4
Leave management system chp 1 4Leave management system chp 1 4
Leave management system chp 1 4Einstein Balaara
 
Statement of the problem
Statement of the problemStatement of the problem
Statement of the problemAngelito Pera
 
Inventory management system
Inventory management systemInventory management system
Inventory management systemcopo7475
 
Library and member management system (lamms) by vikas sharma
Library and member management system (lamms) by vikas sharmaLibrary and member management system (lamms) by vikas sharma
Library and member management system (lamms) by vikas sharmaVikas Sharma
 
Library management system
Library management systemLibrary management system
Library management systemRaaghav Bhatia
 
AUTOMATED LIBRARY MANAGEMENT SYSTEM
AUTOMATED LIBRARY MANAGEMENT SYSTEMAUTOMATED LIBRARY MANAGEMENT SYSTEM
AUTOMATED LIBRARY MANAGEMENT SYSTEMAbhishek Kumar
 

What's hot (20)

Capstone Project Student Management System
Capstone Project Student Management SystemCapstone Project Student Management System
Capstone Project Student Management System
 
Online Library Mangement System
Online Library Mangement SystemOnline Library Mangement System
Online Library Mangement System
 
Leave Management System: Software Requirements Specification Document(SRS)
Leave Management System: Software Requirements Specification Document(SRS) Leave Management System: Software Requirements Specification Document(SRS)
Leave Management System: Software Requirements Specification Document(SRS)
 
Library management system presentation
Library management system presentation Library management system presentation
Library management system presentation
 
Software Requirements Specification for restaurant management system
Software Requirements Specification for restaurant management systemSoftware Requirements Specification for restaurant management system
Software Requirements Specification for restaurant management system
 
Library Management System
Library Management SystemLibrary Management System
Library Management System
 
Future scope of alumni project
Future scope of alumni projectFuture scope of alumni project
Future scope of alumni project
 
Library management system
Library management systemLibrary management system
Library management system
 
Srs sample
Srs sampleSrs sample
Srs sample
 
Library management system
Library management systemLibrary management system
Library management system
 
DFD for E-Commerce Website
DFD for E-Commerce WebsiteDFD for E-Commerce Website
DFD for E-Commerce Website
 
SRS Document Of Course management software system.doc
SRS Document Of Course management software system.docSRS Document Of Course management software system.doc
SRS Document Of Course management software system.doc
 
Functional requirements-document
Functional requirements-documentFunctional requirements-document
Functional requirements-document
 
Project proposal of school managment software
Project proposal of school managment softwareProject proposal of school managment software
Project proposal of school managment software
 
Leave management system chp 1 4
Leave management system chp 1 4Leave management system chp 1 4
Leave management system chp 1 4
 
Statement of the problem
Statement of the problemStatement of the problem
Statement of the problem
 
Inventory management system
Inventory management systemInventory management system
Inventory management system
 
Library and member management system (lamms) by vikas sharma
Library and member management system (lamms) by vikas sharmaLibrary and member management system (lamms) by vikas sharma
Library and member management system (lamms) by vikas sharma
 
Library management system
Library management systemLibrary management system
Library management system
 
AUTOMATED LIBRARY MANAGEMENT SYSTEM
AUTOMATED LIBRARY MANAGEMENT SYSTEMAUTOMATED LIBRARY MANAGEMENT SYSTEM
AUTOMATED LIBRARY MANAGEMENT SYSTEM
 

Viewers also liked

10 Project Proposal Writing
10 Project Proposal Writing10 Project Proposal Writing
10 Project Proposal WritingTony
 
Proposal sample 1
Proposal sample 1Proposal sample 1
Proposal sample 1Momy Saikia
 
Honours Project 40069944
Honours Project 40069944Honours Project 40069944
Honours Project 40069944Steve Joyce
 
Income generating ideas for Virtual Assistants
Income generating ideas for Virtual AssistantsIncome generating ideas for Virtual Assistants
Income generating ideas for Virtual AssistantsVA Placements
 
Benefits of a Community-Based Exhibition Project
Benefits of a Community-Based Exhibition ProjectBenefits of a Community-Based Exhibition Project
Benefits of a Community-Based Exhibition ProjectWest Muse
 
Final project proposal
Final project proposalFinal project proposal
Final project proposalridewan hilmi
 
Project proposal on income generating 1
Project proposal on income generating 1Project proposal on income generating 1
Project proposal on income generating 1berhanu taye
 
School activity and project proposals maryjoy nazaro
School activity and project proposals maryjoy nazaroSchool activity and project proposals maryjoy nazaro
School activity and project proposals maryjoy nazaroMaryjoy Nazaro
 
Proposal format
Proposal formatProposal format
Proposal formatMr SMAK
 

Viewers also liked (13)

10 Project Proposal Writing
10 Project Proposal Writing10 Project Proposal Writing
10 Project Proposal Writing
 
Proposal sample 1
Proposal sample 1Proposal sample 1
Proposal sample 1
 
Database Proposal
Database ProposalDatabase Proposal
Database Proposal
 
Honours Project 40069944
Honours Project 40069944Honours Project 40069944
Honours Project 40069944
 
Project proposal
Project proposalProject proposal
Project proposal
 
Income generating ideas for Virtual Assistants
Income generating ideas for Virtual AssistantsIncome generating ideas for Virtual Assistants
Income generating ideas for Virtual Assistants
 
Gantt chart months
Gantt chart monthsGantt chart months
Gantt chart months
 
Benefits of a Community-Based Exhibition Project
Benefits of a Community-Based Exhibition ProjectBenefits of a Community-Based Exhibition Project
Benefits of a Community-Based Exhibition Project
 
Final project proposal
Final project proposalFinal project proposal
Final project proposal
 
Project proposal on income generating 1
Project proposal on income generating 1Project proposal on income generating 1
Project proposal on income generating 1
 
School activity and project proposals maryjoy nazaro
School activity and project proposals maryjoy nazaroSchool activity and project proposals maryjoy nazaro
School activity and project proposals maryjoy nazaro
 
Gulayaan sa Paaralan Project [GPP] - Project Proposal for FY 2014
Gulayaan sa Paaralan Project [GPP] - Project Proposal for FY 2014Gulayaan sa Paaralan Project [GPP] - Project Proposal for FY 2014
Gulayaan sa Paaralan Project [GPP] - Project Proposal for FY 2014
 
Proposal format
Proposal formatProposal format
Proposal format
 

Similar to Project proposal

SAD-chap1-aa (new update Oct20).ppt
SAD-chap1-aa (new update Oct20).pptSAD-chap1-aa (new update Oct20).ppt
SAD-chap1-aa (new update Oct20).pptMOHAMADAZRULAIMANABD
 
SAS DATAFLUX DATA MANAGEMENT STUDIO TRAINING
SAS DATAFLUX DATA MANAGEMENT STUDIO TRAININGSAS DATAFLUX DATA MANAGEMENT STUDIO TRAINING
SAS DATAFLUX DATA MANAGEMENT STUDIO TRAININGbidwhm
 
Sas dataflux management studio Training ,data flux corporate trainig
Sas dataflux management studio Training ,data flux corporate trainig Sas dataflux management studio Training ,data flux corporate trainig
Sas dataflux management studio Training ,data flux corporate trainig bidwhm
 
School Database Management System
School Database Management SystemSchool Database Management System
School Database Management SystemHasSan Farooqi
 
Transfer pricing documentation for tax purposes of IT services for an interna...
Transfer pricing documentation for tax purposes of IT services for an interna...Transfer pricing documentation for tax purposes of IT services for an interna...
Transfer pricing documentation for tax purposes of IT services for an interna...Ole Kristian Gravrok
 
informatica mdm training | best informatica mdm Online training - GOT
informatica mdm training | best informatica mdm Online training - GOTinformatica mdm training | best informatica mdm Online training - GOT
informatica mdm training | best informatica mdm Online training - GOTGlobal Online Trainings
 
College management
College managementCollege management
College managementanandhan30
 
WEEK 2 OVERVIEW AND FUNCTIONS OF INFORMATION SYSTEM.pdf
WEEK 2 OVERVIEW AND FUNCTIONS OF INFORMATION SYSTEM.pdfWEEK 2 OVERVIEW AND FUNCTIONS OF INFORMATION SYSTEM.pdf
WEEK 2 OVERVIEW AND FUNCTIONS OF INFORMATION SYSTEM.pdfKathleenMaeAmadaTorr
 
Global Advertising, Inc.
Global Advertising, Inc.Global Advertising, Inc.
Global Advertising, Inc.Nicole Wells
 
eControl - Simplified management for Active Directory, Exchange, SAP, eDirect...
eControl - Simplified management for Active Directory, Exchange, SAP, eDirect...eControl - Simplified management for Active Directory, Exchange, SAP, eDirect...
eControl - Simplified management for Active Directory, Exchange, SAP, eDirect...Omni - www.omni-ts.com
 
IT Documents for IT Department
IT Documents for IT DepartmentIT Documents for IT Department
IT Documents for IT DepartmentAhmad Suhendro
 
IdM Reference Architecture
IdM Reference ArchitectureIdM Reference Architecture
IdM Reference ArchitectureHannu Kasanen
 
Assignment of database
Assignment of databaseAssignment of database
Assignment of databasera na
 

Similar to Project proposal (20)

Oracle hrms bg setup examples
Oracle hrms bg setup examplesOracle hrms bg setup examples
Oracle hrms bg setup examples
 
32 payroll setup_part_32_(skylark_group_pvt_ltd)
32 payroll setup_part_32_(skylark_group_pvt_ltd)32 payroll setup_part_32_(skylark_group_pvt_ltd)
32 payroll setup_part_32_(skylark_group_pvt_ltd)
 
0.3 aim phases_and_documentations
0.3 aim phases_and_documentations0.3 aim phases_and_documentations
0.3 aim phases_and_documentations
 
SAD-chap1-aa (new update Oct20).ppt
SAD-chap1-aa (new update Oct20).pptSAD-chap1-aa (new update Oct20).ppt
SAD-chap1-aa (new update Oct20).ppt
 
SAS DATAFLUX DATA MANAGEMENT STUDIO TRAINING
SAS DATAFLUX DATA MANAGEMENT STUDIO TRAININGSAS DATAFLUX DATA MANAGEMENT STUDIO TRAINING
SAS DATAFLUX DATA MANAGEMENT STUDIO TRAINING
 
Sas dataflux management studio Training ,data flux corporate trainig
Sas dataflux management studio Training ,data flux corporate trainig Sas dataflux management studio Training ,data flux corporate trainig
Sas dataflux management studio Training ,data flux corporate trainig
 
School Database Management System
School Database Management SystemSchool Database Management System
School Database Management System
 
Transfer pricing documentation for tax purposes of IT services for an interna...
Transfer pricing documentation for tax purposes of IT services for an interna...Transfer pricing documentation for tax purposes of IT services for an interna...
Transfer pricing documentation for tax purposes of IT services for an interna...
 
informatica mdm training | best informatica mdm Online training - GOT
informatica mdm training | best informatica mdm Online training - GOTinformatica mdm training | best informatica mdm Online training - GOT
informatica mdm training | best informatica mdm Online training - GOT
 
College management
College managementCollege management
College management
 
WEEK 2 OVERVIEW AND FUNCTIONS OF INFORMATION SYSTEM.pdf
WEEK 2 OVERVIEW AND FUNCTIONS OF INFORMATION SYSTEM.pdfWEEK 2 OVERVIEW AND FUNCTIONS OF INFORMATION SYSTEM.pdf
WEEK 2 OVERVIEW AND FUNCTIONS OF INFORMATION SYSTEM.pdf
 
Information system
Information systemInformation system
Information system
 
Global Advertising, Inc.
Global Advertising, Inc.Global Advertising, Inc.
Global Advertising, Inc.
 
eControl - Simplified management for Active Directory, Exchange, SAP, eDirect...
eControl - Simplified management for Active Directory, Exchange, SAP, eDirect...eControl - Simplified management for Active Directory, Exchange, SAP, eDirect...
eControl - Simplified management for Active Directory, Exchange, SAP, eDirect...
 
E Control Summary
E Control   SummaryE Control   Summary
E Control Summary
 
IT Documents for IT Department
IT Documents for IT DepartmentIT Documents for IT Department
IT Documents for IT Department
 
Pnadq681
Pnadq681Pnadq681
Pnadq681
 
IdM Reference Architecture
IdM Reference ArchitectureIdM Reference Architecture
IdM Reference Architecture
 
PDD Template.docx
PDD Template.docxPDD Template.docx
PDD Template.docx
 
Assignment of database
Assignment of databaseAssignment of database
Assignment of database
 

Recently uploaded

Nashik Call Girl Just Call 7091819311 Top Class Call Girl Service Available
Nashik Call Girl Just Call 7091819311 Top Class Call Girl Service AvailableNashik Call Girl Just Call 7091819311 Top Class Call Girl Service Available
Nashik Call Girl Just Call 7091819311 Top Class Call Girl Service Availablepr788182
 
Challenges and Opportunities: A Qualitative Study on Tax Compliance in Pakistan
Challenges and Opportunities: A Qualitative Study on Tax Compliance in PakistanChallenges and Opportunities: A Qualitative Study on Tax Compliance in Pakistan
Challenges and Opportunities: A Qualitative Study on Tax Compliance in Pakistanvineshkumarsajnani12
 
Quick Doctor In Kuwait +2773`7758`557 Kuwait Doha Qatar Dubai Abu Dhabi Sharj...
Quick Doctor In Kuwait +2773`7758`557 Kuwait Doha Qatar Dubai Abu Dhabi Sharj...Quick Doctor In Kuwait +2773`7758`557 Kuwait Doha Qatar Dubai Abu Dhabi Sharj...
Quick Doctor In Kuwait +2773`7758`557 Kuwait Doha Qatar Dubai Abu Dhabi Sharj...daisycvs
 
Paradip CALL GIRL❤7091819311❤CALL GIRLS IN ESCORT SERVICE WE ARE PROVIDING
Paradip CALL GIRL❤7091819311❤CALL GIRLS IN ESCORT SERVICE WE ARE PROVIDINGParadip CALL GIRL❤7091819311❤CALL GIRLS IN ESCORT SERVICE WE ARE PROVIDING
Paradip CALL GIRL❤7091819311❤CALL GIRLS IN ESCORT SERVICE WE ARE PROVIDINGpr788182
 
QSM Chap 10 Service Culture in Tourism and Hospitality Industry.pptx
QSM Chap 10 Service Culture in Tourism and Hospitality Industry.pptxQSM Chap 10 Service Culture in Tourism and Hospitality Industry.pptx
QSM Chap 10 Service Culture in Tourism and Hospitality Industry.pptxDitasDelaCruz
 
Uneak White's Personal Brand Exploration Presentation
Uneak White's Personal Brand Exploration PresentationUneak White's Personal Brand Exploration Presentation
Uneak White's Personal Brand Exploration Presentationuneakwhite
 
UAE Bur Dubai Call Girls ☏ 0564401582 Call Girl in Bur Dubai
UAE Bur Dubai Call Girls ☏ 0564401582 Call Girl in Bur DubaiUAE Bur Dubai Call Girls ☏ 0564401582 Call Girl in Bur Dubai
UAE Bur Dubai Call Girls ☏ 0564401582 Call Girl in Bur Dubaijaehdlyzca
 
Organizational Transformation Lead with Culture
Organizational Transformation Lead with CultureOrganizational Transformation Lead with Culture
Organizational Transformation Lead with CultureSeta Wicaksana
 
Horngren’s Cost Accounting A Managerial Emphasis, Canadian 9th edition soluti...
Horngren’s Cost Accounting A Managerial Emphasis, Canadian 9th edition soluti...Horngren’s Cost Accounting A Managerial Emphasis, Canadian 9th edition soluti...
Horngren’s Cost Accounting A Managerial Emphasis, Canadian 9th edition soluti...ssuserf63bd7
 
Falcon Invoice Discounting: Empowering Your Business Growth
Falcon Invoice Discounting: Empowering Your Business GrowthFalcon Invoice Discounting: Empowering Your Business Growth
Falcon Invoice Discounting: Empowering Your Business GrowthFalcon investment
 
Lundin Gold - Q1 2024 Conference Call Presentation (Revised)
Lundin Gold - Q1 2024 Conference Call Presentation (Revised)Lundin Gold - Q1 2024 Conference Call Presentation (Revised)
Lundin Gold - Q1 2024 Conference Call Presentation (Revised)Adnet Communications
 
GUWAHATI 💋 Call Girl 9827461493 Call Girls in Escort service book now
GUWAHATI 💋 Call Girl 9827461493 Call Girls in  Escort service book nowGUWAHATI 💋 Call Girl 9827461493 Call Girls in  Escort service book now
GUWAHATI 💋 Call Girl 9827461493 Call Girls in Escort service book nowkapoorjyoti4444
 
Al Mizhar Dubai Escorts +971561403006 Escorts Service In Al Mizhar
Al Mizhar Dubai Escorts +971561403006 Escorts Service In Al MizharAl Mizhar Dubai Escorts +971561403006 Escorts Service In Al Mizhar
Al Mizhar Dubai Escorts +971561403006 Escorts Service In Al Mizharallensay1
 
Katrina Personal Brand Project and portfolio 1
Katrina Personal Brand Project and portfolio 1Katrina Personal Brand Project and portfolio 1
Katrina Personal Brand Project and portfolio 1kcpayne
 
Arti Languages Pre Seed Teaser Deck 2024.pdf
Arti Languages Pre Seed Teaser Deck 2024.pdfArti Languages Pre Seed Teaser Deck 2024.pdf
Arti Languages Pre Seed Teaser Deck 2024.pdfwill854175
 
joint cost.pptx COST ACCOUNTING Sixteenth Edition ...
joint cost.pptx  COST ACCOUNTING  Sixteenth Edition                          ...joint cost.pptx  COST ACCOUNTING  Sixteenth Edition                          ...
joint cost.pptx COST ACCOUNTING Sixteenth Edition ...NadhimTaha
 
Berhampur Call Girl Just Call 8084732287 Top Class Call Girl Service Available
Berhampur Call Girl Just Call 8084732287 Top Class Call Girl Service AvailableBerhampur Call Girl Just Call 8084732287 Top Class Call Girl Service Available
Berhampur Call Girl Just Call 8084732287 Top Class Call Girl Service Availablepr788182
 

Recently uploaded (20)

HomeRoots Pitch Deck | Investor Insights | April 2024
HomeRoots Pitch Deck | Investor Insights | April 2024HomeRoots Pitch Deck | Investor Insights | April 2024
HomeRoots Pitch Deck | Investor Insights | April 2024
 
Nashik Call Girl Just Call 7091819311 Top Class Call Girl Service Available
Nashik Call Girl Just Call 7091819311 Top Class Call Girl Service AvailableNashik Call Girl Just Call 7091819311 Top Class Call Girl Service Available
Nashik Call Girl Just Call 7091819311 Top Class Call Girl Service Available
 
Challenges and Opportunities: A Qualitative Study on Tax Compliance in Pakistan
Challenges and Opportunities: A Qualitative Study on Tax Compliance in PakistanChallenges and Opportunities: A Qualitative Study on Tax Compliance in Pakistan
Challenges and Opportunities: A Qualitative Study on Tax Compliance in Pakistan
 
WheelTug Short Pitch Deck 2024 | Byond Insights
WheelTug Short Pitch Deck 2024 | Byond InsightsWheelTug Short Pitch Deck 2024 | Byond Insights
WheelTug Short Pitch Deck 2024 | Byond Insights
 
Quick Doctor In Kuwait +2773`7758`557 Kuwait Doha Qatar Dubai Abu Dhabi Sharj...
Quick Doctor In Kuwait +2773`7758`557 Kuwait Doha Qatar Dubai Abu Dhabi Sharj...Quick Doctor In Kuwait +2773`7758`557 Kuwait Doha Qatar Dubai Abu Dhabi Sharj...
Quick Doctor In Kuwait +2773`7758`557 Kuwait Doha Qatar Dubai Abu Dhabi Sharj...
 
Paradip CALL GIRL❤7091819311❤CALL GIRLS IN ESCORT SERVICE WE ARE PROVIDING
Paradip CALL GIRL❤7091819311❤CALL GIRLS IN ESCORT SERVICE WE ARE PROVIDINGParadip CALL GIRL❤7091819311❤CALL GIRLS IN ESCORT SERVICE WE ARE PROVIDING
Paradip CALL GIRL❤7091819311❤CALL GIRLS IN ESCORT SERVICE WE ARE PROVIDING
 
QSM Chap 10 Service Culture in Tourism and Hospitality Industry.pptx
QSM Chap 10 Service Culture in Tourism and Hospitality Industry.pptxQSM Chap 10 Service Culture in Tourism and Hospitality Industry.pptx
QSM Chap 10 Service Culture in Tourism and Hospitality Industry.pptx
 
Uneak White's Personal Brand Exploration Presentation
Uneak White's Personal Brand Exploration PresentationUneak White's Personal Brand Exploration Presentation
Uneak White's Personal Brand Exploration Presentation
 
UAE Bur Dubai Call Girls ☏ 0564401582 Call Girl in Bur Dubai
UAE Bur Dubai Call Girls ☏ 0564401582 Call Girl in Bur DubaiUAE Bur Dubai Call Girls ☏ 0564401582 Call Girl in Bur Dubai
UAE Bur Dubai Call Girls ☏ 0564401582 Call Girl in Bur Dubai
 
Buy gmail accounts.pdf buy Old Gmail Accounts
Buy gmail accounts.pdf buy Old Gmail AccountsBuy gmail accounts.pdf buy Old Gmail Accounts
Buy gmail accounts.pdf buy Old Gmail Accounts
 
Organizational Transformation Lead with Culture
Organizational Transformation Lead with CultureOrganizational Transformation Lead with Culture
Organizational Transformation Lead with Culture
 
Horngren’s Cost Accounting A Managerial Emphasis, Canadian 9th edition soluti...
Horngren’s Cost Accounting A Managerial Emphasis, Canadian 9th edition soluti...Horngren’s Cost Accounting A Managerial Emphasis, Canadian 9th edition soluti...
Horngren’s Cost Accounting A Managerial Emphasis, Canadian 9th edition soluti...
 
Falcon Invoice Discounting: Empowering Your Business Growth
Falcon Invoice Discounting: Empowering Your Business GrowthFalcon Invoice Discounting: Empowering Your Business Growth
Falcon Invoice Discounting: Empowering Your Business Growth
 
Lundin Gold - Q1 2024 Conference Call Presentation (Revised)
Lundin Gold - Q1 2024 Conference Call Presentation (Revised)Lundin Gold - Q1 2024 Conference Call Presentation (Revised)
Lundin Gold - Q1 2024 Conference Call Presentation (Revised)
 
GUWAHATI 💋 Call Girl 9827461493 Call Girls in Escort service book now
GUWAHATI 💋 Call Girl 9827461493 Call Girls in  Escort service book nowGUWAHATI 💋 Call Girl 9827461493 Call Girls in  Escort service book now
GUWAHATI 💋 Call Girl 9827461493 Call Girls in Escort service book now
 
Al Mizhar Dubai Escorts +971561403006 Escorts Service In Al Mizhar
Al Mizhar Dubai Escorts +971561403006 Escorts Service In Al MizharAl Mizhar Dubai Escorts +971561403006 Escorts Service In Al Mizhar
Al Mizhar Dubai Escorts +971561403006 Escorts Service In Al Mizhar
 
Katrina Personal Brand Project and portfolio 1
Katrina Personal Brand Project and portfolio 1Katrina Personal Brand Project and portfolio 1
Katrina Personal Brand Project and portfolio 1
 
Arti Languages Pre Seed Teaser Deck 2024.pdf
Arti Languages Pre Seed Teaser Deck 2024.pdfArti Languages Pre Seed Teaser Deck 2024.pdf
Arti Languages Pre Seed Teaser Deck 2024.pdf
 
joint cost.pptx COST ACCOUNTING Sixteenth Edition ...
joint cost.pptx  COST ACCOUNTING  Sixteenth Edition                          ...joint cost.pptx  COST ACCOUNTING  Sixteenth Edition                          ...
joint cost.pptx COST ACCOUNTING Sixteenth Edition ...
 
Berhampur Call Girl Just Call 8084732287 Top Class Call Girl Service Available
Berhampur Call Girl Just Call 8084732287 Top Class Call Girl Service AvailableBerhampur Call Girl Just Call 8084732287 Top Class Call Girl Service Available
Berhampur Call Girl Just Call 8084732287 Top Class Call Girl Service Available
 

Project proposal

  • 1. [COMPANY NAME] REGISTRATION SYSTEM TABLE OF CONTENTS Page # 1.0 GENERAL INFORMATION .......................................................................................................... 1-1 1.2 Purpose ................................................................................................................................... 1-1 1.3 Problem Statement ................................................................................................................. 1-1 1.3 Solution Statement ................................................................................................................. 1-1 1.4 Scope & System Overview..................................................................................................... 1-2 1.5 Points of Contact .................................................................................................................... 1-2 2.0 DATABASE IDENTIFICATION AND DESCRIPTION ............................................................... 2-1 2.1 System Using the Database .................................................................................................... 2-1 2.2 Relationship to Other Database .............................................................................................. 2-1 2.3 Database Information ............................................................................................................. 2-1 2.4 Relationship to Other Databases ............................................................................................ 2-1 2.5 ERD Diagram ......................................................................................................................... 2-2 2.6 Data Dictionary ...................................................................................................................... 2-5 2.7 Data Process Flow .................................................................................................................. 2-7 3.0 DATABASE ADMINISTRATIVE INFORMATION .................................................................... 3-1 3.1 System Information ................................................................................................................ 3-1 3.2 Database Management System (DBMS) Configuration ........................................................ 3-1 3.3 Hardware Configuration ......................................................................................................... 3-2 3.4 Database Software Utilities .................................................................................................... 3-3 3.5 Security................................................................................................................................... 3-3 3.6 Storage Requirements............................................................................................................. 3-3 3.7 Recovery................................................................................................................................. 3-3 3.7 Error Handling........................................................................................................................ 3-3 [COMPANY NAME] Registration System Page i
  • 2. 1.0 General Information 1.0 GENERAL INFORMATION [COMPANY NAME] Registration System
  • 3. 1.0 General Information 1.0 GENERAL INFORMATION The European Innovation, Technology, and Science Center Foundation ([COMPANY NAME]) The European Chamber of Commerce of the Philippines, the German Development Cooperation, and the Asia-Europe Foundation of the Philippines gathered together to promote innovation, technology and science thus forming European Innovation, Technology and Center Foundation ([COMPANY NAME]) – a training center aimed at providing training courses and seminars for students, graduates, teachers, and IT/BPO professionals in cooperation with leading providers. Training programs include soft skills such as customer relations and leadership as well as technical skills like basic and advanced desktop applications and computer programming. In cooperation with non-government organizations and local social services departments, the [COMPANY NAME] also provides high school awareness seminars and out-of-school youth development programs.   1.1 Purpose Design a dynamic Database System for [COMPANY NAME] Registration process. 1.2 Problem Statement The current process of [COMPANY NAME] when it comes to storing data such as training manuals, trainees’ and facilitators’ records, progress and performance reports solely relies on manual encoding. [COMPANY NAME] does not have a centralized database or system that will easily track all their records and data. A lot of paper work needs to be accomplished and records/data are manually encoded by the employee, trainees and facilitators. Duplication and loss of data has been inevitable and employees also find it difficult and time consuming to consolidate records and reports.  1.3 Solution Statement To design a Content Management System that will: Automate the entire documentation process from trainee registration, facilitator schedule arrangement, down to invoicing since the system is integrated to [COMPANY NAME]’s billing system. Allow easy tracking for all types of data such as training schedules, trainees’ personal details, success rate of event, etc. Centralize all records, trackers, manuals and files. Allow automatic consolidation of all data thus eliminating duplication and loss of pertinent information. Faster turn-around time when it comes to accomplishing tasks. [COMPANY NAME] Registration System Page 1-1
  • 4. 1.0 General Information [COMPANY NAME] Registration System Page 1-2
  • 5. 1.0 General Information 1.4 Scope & System Overview Project Name: [COMPANY NAME] Registration System [COMPANY NAME] CMS web based System is designed to: • Automate business process • Easy Tracking • Data Consolidation • Report Generation The system uses Hypertext Pro-Processor (PHP) as its core scripting language, MySQL as the database storage, plus several client scripting languages such as AJAX, JQuery and CSS for other add-on designs and features. The main functionalities of the system are the following: • Adding, editing, and deleting data • User authentication for data access control • Logs to track user activities • Filter bar for searching of records • RTE: Rich Text Editor tool bar (similar to Word document features) 1.5 Points of Contact Joana Narciso – Business Development Manager Contact Numbers: 845-1324 loc. 224 / 09151280383 Email Address: joana@[company name].com European Innovation, Technology, and Science Center Foundation 19/F Philippine AXA Life Centre, Sen. Gil Puyat Ave. cor. Tindalo St., Makati City Landline: 759-6680/ 759-2246 | Fax: 759-2247 |Website: info@[company name].com [COMPANY NAME] Registration System Page 1-3
  • 6. 2.0 Database Identification and Description 2.0 DATABASE IDENTIFICATION AND DESCRIPTION [COMPANY NAME] Registration System
  • 7. 2.0 Database Identification and Description 2.0 DATABASE IDENTIFICATION AND DESCRIPTION 2.1 Systems Using the Database 1. [COMPANY NAME] Registration System as main data storage 2. [COMPANY NAME] Accounting Database for invoice reference 2.2 Relationship to Other Databases [COMPANY NAME] Registration System is connected to [COMPANY NAME] Accounting Database. 2.3 Database Information Database Name: [COMPANY NAME] Table Name Description Primary Key Foreign Key course Course table courseId cousrcatId coursecategory Course category, look up table for courses cousrcatId facilitator Facilitators profile table facilitatorId training Training table trainingId coursed, facilitatorId users User Accounts table user_id logs Audit logs for user activities logs_id participant Participants profile table participantId registration Registration table regId trainingId, participantId [COMPANY NAME] Registration System Page 2-1
  • 8. 2.0 Database Identification and Description 2.4 ERD Diagram 2.5 Data Dictionary Table structure for table course Field Description Data Type Null courseId Course ID int(11) No title Course Title varchar(255) No intro Course Introduction varchar(100) No desc Course Description text No dateposted Course Date Posted datetime No status Course Status tinyint(4) No coursecatId Course Category ID int(11) No Table structure for table coursecategory Field Description Data Type Null coursecatId Course Category ID int(11) No title Course Category Ttitle varchar(225) No desc Course Categorry Description text No dateposted Course Category Date Posted datetime No status Course Category Status tinyint(4) No [COMPANY NAME] Registration System Page 2-2
  • 9. 2.0 Database Identification and Description Table structure for table facilitator Field Description Date Type Null facilitatorId Facilitator’s ID int(11) No firstName Facilitator’s First Name varchar(50) No midName Facilitator’s Middle Name varchar(50) No titleName Facilitator’s Title varchar(50) No midName Facilitator’s Middle Name varchar(50) No address Facilitator’s Address varchar(255) No email Facilitator’s Email Address varchar(100) No phoneno Facilitator’s Phone Number varchar(50) No mobile_1 Facilitator’s Mobile Number varchar(50) No mobile_2 Facilitator’s Mobile Number 2 varchar(50) No fax Facilitator’s Fax Number varchar(50) No sex Facilitator’s Gender char(1) No birth_date Facilitator’s Birth Date date No salary Facilitator’s Salary decimal(9,2) No tin_number Facilitator’s Tax Identification Number int(11) No dateposted Facilitator’s Date Posted datetime No status Facilitator’s Status tinyint(4) No Table structure for table logs Field Description Data Type Null logs_id Logs ID int(11) No logs_table Logs Table varchar(50) No logs_rec_id Logs Record ID int(11) No logs_action Logs Action varchar(255) No logs_keyword Logs Keyword varchar(255) No logs_user_id Logs User ID int(11) No logs_username Logs Username varchar(100) No logs_ipadd Logs IP Address varchar(50) No logs_datepost Logs Date Posted datetime No [COMPANY NAME] Registration System Page 2-3
  • 10. 2.0 Database Identification and Description Table structure for table participant Field Description Data Type Null participantId Participant ID int(11) No firstName Participant’s First Name varchar(50) No midName Participant’s Middle Name varchar(50) No lastName Participant’s Last Name varchar(50) No address Participant’s Address varchar(255) No email Participant’s Email varchar(100) No phoneno Participant’s Phone Number varchar(50) No mobile_1 Participant’s Mobile Number varchar(50) No mobile_2 Participant’s Mobile Number 2 varchar(50) No fax Participant’s Fax varchar(50) No position Participant’s position varchar(100) No company_name Participant’s Company Name varchar(255) No company_address Participant’s Company Address varchar(255) No dateposted Participant’s Date Posted datetime No status Participant’s Status tinyint(4) No Table structure for table registration Field Description Data Type Null regId Registration ID int(11) No reg_status Registration Status varchar(50) No reg_by Registration Made By varchar(150) No ORID OR Id number int No reg_balance Registration Amount Balance decimal(9,2) No remarks Registration Remarks text No dateposted Registration Date Posted datetime No status Registration Status tinyint(4) No trainingId Registration Training ID int(11) No participantId Registration Participant ID int(11) No [COMPANY NAME] Registration System Page 2-4
  • 11. 2.0 Database Identification and Description Table structure for table training Field Description Data Type Null trainingId Training ID int(11) No regular_rate Training Regular Rate decimal(9,2) No early_bird_rate Training Early Bird Date decimal(9,2) No location Training Location varchar(255) No time Training Time varchar(50) No start_date Training Start Date date No end_date Training End Date date No max_participants Training Maximum Participants tinyint(4) No contact_person Training Contact Person varchar(150) No contact_phone Training Contact Phone Number varchar(50) No contact_mobile Training Contact Mobile Number varchar(50) No remarks Training Remarks text No dateposted Training Date Posted datetime No status Training Status tinyint(4) No courseId Training Course ID int(11) No facilitatorId Training Facilitator ID int(11) No Table structure for table users Field Description Data Type Null user_id User’s ID bigint(20) No user_lname User’s Last Name varchar(50) No user_fname User’s First Name varchar(50) No user_mname User’s Middle Name varchar(50) No user_email User’s Email Address varchar(220) No user_mobile User’s Mobile Number varchar(50) No user_address User’s Address text No user_level User’s Level tinyint(4) No username User’s Username varchar(200) No pwd User’s Password varchar(220) No ipadd User’s IP Address varchar(200) No user_status User’s Record Status tinyint(4) No user_datepost User’s Date Posted datetime No ckey Cache varchar(220) No ctime Session Cache varchar(220) No [COMPANY NAME] Registration System Page 2-5
  • 12. 2.0 Database Identification and Description 2.6 Special Instructions: Data Process Flow Step 1: Create User Account for CMS access Step 2: Create Course Step 3: Create Facilitator Profile [COMPANY NAME] Registration System Page 2-6
  • 13. 2.0 Database Identification and Description Step 4: Create Training Record Step 5: Register Applicants NOTE: Add Screen shots [COMPANY NAME] Registration System Page 2-7
  • 14. 3.0 Database Administrative Information 3.0 DATABASE ADMINISTRATIVE INFORMATION [COMPANY NAME] Registration System
  • 15. 3.0 Database Administrative Information 3.0 DATABASE ADMINISTRATIVE INFORMATION 3.1 System Information Run using Xammp 1.7.0 for windows. XAMPP 1.7.0 for Windows offers a collection of libraries and other applications useful for management and administration of a website, with all units that are essential for this. It includes, among other functions, PEAR, MiniPerl, mod_ssl, OpenSSL, PHPMyAdmin, Webalizer, FileZilla FTP Server, SQLite, Zend Optimizer, Mercury Mail, as well as a comprehensive control panel designed for XAMPP. A web server, a MySQL database, PHP, an e-mail server, FTP server and Perl are the key elements of this distribution. Apache 2 and also includes the latest versions of MySQL and PHP, Apache and MySQL will be installed as services. 3.2 Database Management System (DBMS) Configuration XAMPP 1.7.0 Apache 2.2.11 + MySQL 5.1.30 (Community Server) + PHP 5.2.8 + PEAR(Support for PHP 4 has been discontinued) + PHP-Switch win32 1.0 (use "php-switch.bat" in the xampp main directory) + XAMPP Control Version 2.5 from www.nat32.com + XAMPP Security 1.0 + SQLite 2.8.15 + OpenSSL 0.9.8i + phpMyAdmin 3.1.1 + ADOdb 4.990 + Mercury Mail Transport System v4.52 + FileZilla FTP Server 0.9.29 + Webalizer 2.01-10 + Zend Optimizer 3.3.0 + eAccelerator 0.9.5.3 for PHP 5.2.8 (but not activated in the php.ini) 3.3 Hardware Configuration Download XAMPP 1.7.0 Install XAMPP in the root of your hard drive. (C:XAMPP) Set up permission access 3.4 Database Software Utilities PhpMyadmin, SQLite & MySQL 5.1.30 [COMPANY NAME] Registration System Page 3-1
  • 16. 3.0 Database Administrative Information 3.5 Security Ensure these XAMPP pages are no longer accessible by the network for everyone. Set up MySQL admin user root password protection. Set up PhpMyAdmin password login is enabled. Database will be available via a local network only. http://localhost/security/xamppsecurity.php NOTE: Add also user permission on the system NOTE: Add Network design 3.6 Storage Requirements [COMPANY NAME] Registration System Page 3-2
  • 17. 3.0 Database Administrative Information Windows 98 Windows ME Windows XP Home Windows NT Windows 2000 Windows XP Professional (Recommended) 64 MB RAM (recommended) 200 MB free Fixed Disk NOTE: Define server & client requirements 3.7 Recovery Export database monthly for updated back up Restore Data from MySQL dump file. mysql -u #username# -p #database# < #dump_file# - Write-ahead logging (WAL) and the recovery protocol are used to undo the actions of aborted transactions and to restore the system to a consistent state after a crash. Rollback to SAVEPOINT for selected modules NOTE: This MySQL statement instructs the MySQL server to reverse SQL statements for the current transaction back to a point marked in the transaction by the MySQL statement, SAVEPOINT. Any transactions for the session made after the savepoint are undone. This is in contrast to the MySQL statement, ROLLBACK by itself, which undoes all changes since the start of the transaction. Transaction statements are currently supported by the InnoDB, NDB Cluster, and BDB storage engines and are ignored if used with MyISAM tables. Multple savepoints may be set up during a transaction. 3.8 Error Handling System has error catcher define on each module. [COMPANY NAME] Registration System Page 3-3