From the previous assignment, we have an Entity Relationship diagram (ERD or ER Diagram).

Size: px
Start display at page:

Download "From the previous assignment, we have an Entity Relationship diagram (ERD or ER Diagram)."

Transcription

1 Sports Active ER to Relational Database & SQL Queries ER Diagram From the previous assignment, we have an Entity Relationship diagram (ERD or ER Diagram). However, it has been made obvious that there are some changes that are required. Some of these are a simple re-wording, however there is the addition of a new entity. This is required to make the design work. Cormac O'Connell Page 1 of 12 5/14/2007

2 As you can see, we have a new entity Event. This is due to the requirement to support more than one event at a meeting. This we could then convert to a database. Cormac O'Connell Page 2 of 12 5/14/2007

3 The Sports Active Database Once we have ascertained what information we needed to include in the database, we could then start working on the tables and the relationships between these tables. For the database that I wrote, I came up with the following tables: Athlete Discipline Event TimeKeeper Venue Once these tables had been created, I then started to populate them with some data. 1. Athlete athleteid Text Yes Primary Key firstname Text Yes First Name lastname Text Yes Last Name Title Text Yes Salutation: Mr, Mrs, Miss, Dr, Prof etc Gender Text Yes Male / Female dateofbirth Date/Time Yes Date of Birth address1 Text Yes First Line of the Address address2 Text No Second Line of the Address Town Text Yes Town Name County Text Yes County Name Postcode Text Yes Postcode homephone Text No Home Telephone Number workphone Text No Work Telephone Number mobilephone Text No Mobile Phone Number Fax Text No Fax Number Text No Address disclosureconsent Yes/No No Agreement to disclose personal data in a membership list Subscribed Yes/No No Is the Subscription Paid? crosscountry Yes/No No Cross Country Discipline fellandhill Yes/No No Fell & Hill running Discipline racewalking Yes/No No Race Walking Discipline roadrunning Yes/No No Road Running Discipline trackandfield Yes/No No Track & Field Discipline Cormac O'Connell Page 3 of 12 5/14/2007

4 2. Discipline discipline Text Yes List of Disciplines 3. Event eventid Text Yes Unique ID number for the event venueid Text No Linked from table Venue eventdate Date/Time No Date of the event Discipline Text No Linked from table Discipline timekeeperid Text No Linked from TimeKeeper 4. TimeKeeper timekeeperid Text Yes Unique ID number for the Time Keeper timekeeperfirstname Text Yes First Name timekeeperlastname Text Yes Last Name 5. Venue venueid Text Yes Unique ID number for the venue venuename Text Yes Name of the venue venueaddress Text Yes Address of the Venue supportcrosscountry Yes/No No Support Cross Country supportfellandhill Yes/No No Support Fell and Hill supportracewalking Yes/No No Support Race Walking supportroadrunning Yes/No No Support Road Running supporttrackandfield Yes/No No Support Track And Field While trying to link the tables together in a relationship it became apparent that this would not work in their current state. I had to add a couple of tables to get the relationships to work. 6. AthleteParticipation athleteid Text Yes Linked from table Athlete eventid Text Yes Linked from table Athlete Cormac O'Connell Page 4 of 12 5/14/2007

5 7. VenueAvailability crosscountrydates Date/Time No Cross Country Dates Available fellandhilldates Date/Time No Fell and Hill Dates Available racewalkingdates Date/Time No Race Walking Dates Available roadrunningdates Date/Time No Road Running Dates Available trackandfielddates Date/Time No Track and Field Dates Available These tables were now in a better state to be linked into a relationship. The following is a screenshot of the relationship. Cormac O'Connell Page 5 of 12 5/14/2007

6 The Data Values The following is a copy of the test data that was input into the system Athlete athlet eid firstn ame lastn ame titl e gen der dateof Birth addre ss1 addre ss2 town cou nty postc ode homep hone workph one mobilep hone fa x disclosurec onsent subscri bed crossco untry fellan dhill racewal king roadrun ning trackand Field A001 Corma c O'Con nell Mr Male 25/04/ High St Sutton Cam bs CB6 2RB cjo24@cam.ac.uk Yes Yes Yes No Yes No Yes A002 John Smith Mr Male 31/10/1 33 The 976 Elms Chatter is Cam bs PE3 7EH Yes No No Yes No Yes No A003 Steph Riach Mi ss Fem ale 29/06/ Nurser y Walk Cambri dge Cam bs CB4 8KD No Yes Yes Yes Yes No No A004 Jenny Challi s Mi ss Fem ale 26/05/ Cambri dge Road Newm arket Suff olk IP2 8JL No No No No No Yes Yes A005 Keith Garret t Mr Male 26/08/ Nurser y Walk Cambri dge Cam bs CB4 8KD Yes Yes Yes Yes Yes Yes Yes AthleteParticipation athleteid eventid A001 e001 A001 e004 A002 e002 A002 e003 A003 e001 A003 e005 A003 e006 A004 e003 A004 e004 Cormac O'Connell Page 6 of 12 5/14/2007

7 Discipline discipline Cross Country Fell And Hill Race Walking Road Running Track And Field Event eventid venueid eventdate discipline timekeeperid e001 v002 20/05/2007 Cross Country t01 e002 v003 20/05/2007 Fell And Hill t02 e003 v001 21/05/2007 Road Running t03 e004 v001 21/05/2007 Track And Field t04 e005 v004 21/05/2007 Race Walking t01 e006 v004 22/05/2007 Fell And Hill t02 e007 v002 23/05/2007 Race Walking t00 TimeKeeper timekeeperid timekeeperfirstname timekeeperlastname t00 NULL NULL t01 Bob Flemming t02 John Smith t03 Richard Numb t04 Andrew Capp t05 Nobby No-Mates Cormac O'Connell Page 7 of 12 5/14/2007

8 Venue venueid venuename venueaddress supportcrosscountry supportfellandhill supportracewalking supportroadrunning supporttrackandfield v001 Chesterton Sports Centre Chesterton College No No Yes Yes Yes v002 Parkside East Road Yes No No No No v003 Paradise Sports Hall Ely Yes Yes No No Yes v004 The Ivo St Ives No Yes Yes Yes No Cormac O'Connell Page 8 of 12 5/14/2007

9 The SQL Queries Query1 AthleteNames SELECT firstname, lastname FROM Athlete ORDER BY lastname; Query1-AthleteNames firstname lastname Jenny Challis Keith Garrett Cormac O'Connell Steph Riach John Smith This query successfully extracts the data of the Athletes names and sorts them by last name order, but displays them in the sequence of first name, last name. If I wanted to display them in the sequence of last name, first name I would simply have to swap the line SELECT firstname, lastname for SELECT lastname, firstname. Query2-AthleteCrossCountry SELECT firstname, lastname, crosscountry FROM Athlete WHERE Athlete.crossCountry=True ORDER BY lastname; Query2-AthleteCrossCountry firstname lastname crosscountry Keith Garrett Yes Cormac O'Connell Yes Steph Riach Yes This query successfully extracted the data of those Athletes participating in the Cross Country events. To extract the data for other events, it is a simple matter of changing the entry crosscountry in the SELECT line to match that of the desired discipline. Cormac O'Connell Page 9 of 12 5/14/2007

10 Query3-TimeKeepers SELECT TimeKeeper.timeKeeperFirstName, TimeKeeper.timeKeeperLastName, Event.eventID FROM TimeKeeper INNER JOIN Event ON TimeKeeper.timeKeeperID=Event.timeKeeperID ORDER BY TimeKeeper.timeKeeperLastName; Query3-TimeKeepers timekeeperfirstname timekeeperlastname eventid Andrew Capp e004 Bob Flemming e005 Bob Flemming e001 NULL NULL e007 Richard Numb e003 John Smith e006 John Smith e002 This query successfully extracts the data to list all the time keepers and which events they are officiating. Query4-MenBetween20And25 SELECT COUNT(Athlete.athleteID) AS Men20and25 FROM Athlete WHERE Athlete.gender="Male" AND Athlete.dateOfBirth BETWEEN "01/01/1982" And "31/12/1987"; This query does not work. It returns Data type mismatch in criteria expression. Unfortunately I can not see where this error is being generated from. Query6-AthleteNotSubscribed SELECT Athlete.firstName, Athlete.lastName, Athlete.subscribed, Event.eventID, Event.eventDate FROM Event INNER JOIN (Athlete INNER JOIN AthleteParticipation ON Athlete.athleteID=AthleteParticipation.athleteID) ON Event.eventID=AthleteParticipation.eventID WHERE Athlete.subscribed=False; Query6-AthleteNotSubscribed firstname lastname subscribed eventid eventdate John Smith No e002 20/05/2007 John Smith No e003 21/05/2007 Jenny Challis No e003 21/05/2007 Jenny Challis No e004 21/05/2007 This query extracts the data for all Athletes that have not been listed as having paid their subscription fees and all the events that they are participating in. Cormac O'Connell Page 10 of 12 5/14/2007

11 Query7-AthletesOnlyParticipatingInEvent SELECT DISTINCT Athlete.firstName, Athlete.lastName FROM Athlete INNER JOIN AthleteParticipation ON Athlete.athleteID=AthleteParticipation.athleteID WHERE Athlete.athleteID=AthleteParticipation.athleteID ORDER BY Athlete.lastName; Query7-AthletesOnlyParticipatingInEvent firstname lastname Jenny Challis Cormac O'Connell Steph Riach John Smith This query successfully extracts the data of all the athletes that are participating in an event. Query8-MeetingWithoutTimeKeeper SELECT Event.eventID, Event.venueID, Event.eventDate, Event.discipline, Event.timeKeeperID FROM Event WHERE Event.timeKeeperID="t00"; Query8-MeetingWithoutTimeKeeper eventid venueid eventdate discipline timekeeperid e007 v002 23/05/2007 Race Walking t00 Although this query worked, I feel it was through a roundabout way of cheating. As I had specified in one of the tables that the Time Keeper field was a required field, this meant that I had no means of having a blank. As a work around for this I created an entry in the Time Keeper table for an entry NULL. This meant I could meet the Required requirements and still maintain a meeting that had not yet been set up with a Time Keeper. Cormac O'Connell Page 11 of 12 5/14/2007

12 References and Acknowledgments General reference was made to the following when seeking assistance for this assignment: Software System Development, 4 th Edition, Britton & Doake, McGraw Hill Publishing. Direct reference was made to the corrections on the previous assignment Entity Attribute Relationship Model and the corrections made there by Elaine Brown. I would also like to take this opportunity to note that the idea for the table AthleteParticipation was not my original idea, although the implementation was mine. William Saltmarsh made the suggestion to add a table to fix the problems I was experiencing when trying to link table Athlete to table Event. Cormac O'Connell Page 12 of 12 5/14/2007

Access will be via the same Player Registration tab via the Player Registrations Officer role section.

Access will be via the same Player Registration tab via the Player Registrations Officer role section. The process for registering a player via the Whole Game System Portal requires input from the club, player, league, and in some instances the County FA. Once the league has confirmed the set-up process

More information

Registering Club players in Whole Game Club Official Training Guide

Registering Club players in Whole Game Club Official Training Guide Registering Club players in Whole Game Club Official Training Guide Version 1.1 Page 1 INTRODUCTION As part a commitment by The FA and County FAs to improve the administration experience for grassroots

More information

Using SQL in MS Access

Using SQL in MS Access Using SQL in MS Access Himadri Barman 1. Creating Tables Create a table PLAYERS. The fields and corresponding data types along with other requirements are: Player_ID Text of size 10, primary key Player_Name

More information

Northamptonshire Football Association Promotion Information for Referees

Northamptonshire Football Association Promotion Information for Referees Northamptonshire Football Association Promotion Information for Referees Candidate Name FAN Number Luke Scott Referee Development Officer Referee Application Form for Promotion Season 2018/2019 This booklet

More information

Online Membership System Coach/Teacher Register Guide

Online Membership System Coach/Teacher Register Guide Online Membership System Coach/Teacher Register Guide Introduction Swim England has launched a Coaching and Teaching Register that will bring benefits to clubs, coaches, teachers and participants. From

More information

USA Jump Rope Tournament Software User Guide 2014 Edition

USA Jump Rope Tournament Software User Guide 2014 Edition USA Jump Rope Tournament Software User Guide www.usajumprope.org Table of Contents Contents System Requirements... 3 System Conventions... 4 Phase 1 Tournament Pre registration Preparation... 5 Name Your

More information

An Assessment of FlowRound for Signalised Roundabout Design.

An Assessment of FlowRound for Signalised Roundabout Design. An Assessment of FlowRound for Signalised Roundabout Design. 1.0 Introduction This critique is based upon recent use by White Young Green signal engineering staff. The comments made do not cover all of

More information

Appendix G. Standart VideoRD 2.0. Format of the disk with video referee results.

Appendix G. Standart VideoRD 2.0. Format of the disk with video referee results. Appendix G. Standart VideoRD 2.0. Format of the disk with video referee results. Introduction Disk materials must contain only one sport event (competitions) 1. Disk materials must contain video clips

More information

Full-Time People and Registrations Version 5.0

Full-Time People and Registrations Version 5.0 Full-Time People and Registrations Version 5.0 Full-Time People and Registrations Page 1 1.0 People 1.1 How to Add New League Administrators 3 1.2 How to Add Other New Administrators 4 1.3 How to Change

More information

East Swimming 2018 Long Course Championships

East Swimming 2018 Long Course Championships Weekend 2 26 th, 27 th and 28 th May 2018 at Inspire: Luton Sports Village,Luton 1ER180214 GENERAL CONDITIONS 1. Regional Swimming Championships shall be competed for annually and subject to any standard

More information

Swim England East Region 2018 Short Course Championships

Swim England East Region 2018 Short Course Championships Swim England East Region 2 nd 4 th November 2018 at Inspire: Luton Sports Village (2ER180889) GENERAL CONDITIONS 1. Regional Short Course Swimming Championships shall be competed for annually and subject

More information

East Swimming 2018 Long Course Championships

East Swimming 2018 Long Course Championships Weekend 2 26 th, 27 th and 28 th May 2018 at Inspire: Luton Sports Village,Luton 1ER180214 800m (Male)/1500m (Female) Event 19 th May 2018 at Basildon Sporting Village 1ER180540 GENERAL CONDITIONS 1. Regional

More information

NBA Statistics Feeds

NBA Statistics Feeds NBA Statistics Feeds 2012-13 Season 1 SPORTSDATA NBA STATISTICS FEEDS Table of Contents Overview... 3 Schedule, Game & Venue Information... 4 Player & Team Information... 5 Play-by-Play Information...

More information

Swim Search: An Online Sports Management Information Retrieval System

Swim Search: An Online Sports Management Information Retrieval System University of Tennessee, Knoxville Trace: Tennessee Research and Creative Exchange University of Tennessee Honors Thesis Projects University of Tennessee Honors Program 4-2001 Swim Search: An Online Sports

More information

Sanctioning Events with USA Triathlon

Sanctioning Events with USA Triathlon Welcome to USA Triathlon s new sanction system. Please read below for instructions on how to sanction a new event with USA Triathlon, copy events, and other important updates. Race Directors will use their

More information

Tennis Australia. Next Generation High Performance Coach Program. Application Form. Closing date - 10 December 2018

Tennis Australia. Next Generation High Performance Coach Program. Application Form. Closing date - 10 December 2018 Tennis Australia Next Generation High Performance Coach Program Closing date - 10 December 2018 Application Form Next Generation High Performance Coach Program The Tennis Australia Next Generation High

More information

Microsoft Windows Software Manual for FITstep Stream Version 4

Microsoft Windows Software Manual for FITstep Stream Version 4 Thank you for purchasing this product from Gopher. If you are not satisfied with any Gopher purchase for any reason at any time, contact us and we will replace the product, credit your account, or refund

More information

Tables for the Bromsminster Athletic Club Database System. tblmembers. This table is used to store personal information about members.

Tables for the Bromsminster Athletic Club Database System. tblmembers. This table is used to store personal information about members. tblmembers This table is used to store personal information about members. The table also records the training programme that members have chosen to follow. Some club members are able to support the club

More information

New User. This is the sign-in screen for the registration system. If this is the first time entering the system, click on NEW USER.

New User. This is the sign-in screen for the registration system. If this is the first time entering the system, click on NEW USER. New User This is the sign-in screen for the registration system. If this is the first time entering the system, click on NEW USER. Once you have created a new user id, it can be used to continually access

More information

BUCS Outdoor Archery Championships 2017 Entry Information

BUCS Outdoor Archery Championships 2017 Entry Information BUCS Outdoor Archery Championships 2017 Entry Information Dates Saturday 10 th June 2017: BUCS Outdoor Archery Championships Sunday 11 th June 2017: BUCS Head to Head (H2H) Tournament [No BUCS points]

More information

East Swimming 2017 Long Course Championships

East Swimming 2017 Long Course Championships GENERAL CONDITIONS 1. Regional Swimming Championships shall be competed for annually and subject to any standard the Regional Swimming Committee (RSC) may impose. The Championships shall be open to any

More information

Fill in the editable PDF, save the file using your name & the saved copy to us: Name: (Given name) (Middle) (Surname) Address:

Fill in the editable PDF, save the file using your name &  the saved copy to us: Name: (Given name) (Middle) (Surname) Address: Thunder Bay ELKS Hockey Association Coaching Application Fill in the editable PDF, save the file using your name & email the saved copy to us: (Given name) (Middle) (Surname) Address: City: Postal Code:

More information

P3000 Deadweight Tester Setup, Part 1: Limited Partial Correction Method

P3000 Deadweight Tester Setup, Part 1: Limited Partial Correction Method P3000 Deadweight Tester Setup, Part 1: Limited Partial Correction Method 19 May 2014 M. Daniels This tutorial is for configuring a P3000 series (Pressurements) deadweight tester to be used with COMPASS

More information

EAST GRINSTEAD SWIMMING CLUB SPRING SPRINT MEET OPEN MEET LEVEL 3 LICENSE

EAST GRINSTEAD SWIMMING CLUB SPRING SPRINT MEET OPEN MEET LEVEL 3 LICENSE SUNDAY 22 ND APRIL ENTRY CONDITIONS Meet Level 1. This Meet has been licensed at level 3, license number 3SE180064 and shall be run under ASA laws, ASA Technical Rules of Swimming and these promoter s

More information

Online League Management lta.tournamentsoftware.com. User Manual. Further support is available online at

Online League Management lta.tournamentsoftware.com. User Manual. Further support is available online at Online League Management lta.tournamentsoftware.com User Manual Further support is available online at www.lta.org.uk/leagueplanner Contents Welcome... 3 Using this guide... 3 Further support?... 3 Publishing

More information

Swim England East Region 2019 Long Course Championships

Swim England East Region 2019 Long Course Championships GENERAL CONDITIONS 1. Regional Swimming Championships shall be competed for annually and subject to any standard the Regional Swimming Committee (RSC) may impose. The Championships shall be open to any

More information

APPENDIX 10, Automation Standard

APPENDIX 10, Automation Standard APPENDIX 10, Automation Standard to Arla Foods Group Agreement for Purchase of Machinery including installation Software Design Specification Seller (company) Document responsible (Seller) Description

More information

WEST POINT GOLF CLUB USING THE GOLFSOFTWARE PROGRAM FOR THE DRAW AND SCORING

WEST POINT GOLF CLUB USING THE GOLFSOFTWARE PROGRAM FOR THE DRAW AND SCORING USING THE GOLFSOFTWARE PROGRAM FOR THE DRAW AND SCORING The new software is made up of 3 modules - Handicap, Tournament and Player Portal. Note that the Handicap module and the Tournament module have separate

More information

Netball'WA'Dra,'Governance'Model' 'V1' Proposed'Model,'Compe==on'Defini=on'&'Types' Clubs'&'Associate'Members' ' Document'2'

Netball'WA'Dra,'Governance'Model' 'V1' Proposed'Model,'Compe==on'Defini=on'&'Types' Clubs'&'Associate'Members' ' Document'2' Netball'WA'Dra,'Governance'Model' 'V1' Proposed'Model,'Compe==on'Defini=on'&'Types' Clubs'&'Associate'Members' ' Document'2' 1 Netball WA Governance & Membership Review Draft Governance Model Version 1

More information

Weathering & Erosion Review

Weathering & Erosion Review SCIENCE Grade 5 Weathering & Erosion Review Weathering & Erosion Review JACKSON PUBLIC SCHOOL DISTRICT 2013-2014 ALL RIGHTS RESERVED Content of this booklet is subject to copyright and restrictions of

More information

USA Wrestling Membership System. User Guide

USA Wrestling Membership System. User Guide USA Wrestling Membership System User Guide September 2017 Table of Contents Introduction... 2 Creating An Account... 3 Why do I need an account?... 4 What happened to my data from the old system?... 4

More information

Hot Springs Village Member Portal User Guide

Hot Springs Village Member Portal User Guide Contents Portal Options... 2 Portal Display:... 2 MAIN Options:... 2 E-COMMERCE Options... 2 Annual Registrations... 2 Pets... 2 Boats... 3 Carts... 3 Vehicles... 3 GHIN... 4 Annual Passes... 4 My Transactions...

More information

2 nd EASTERN AREA PA STATE INDOOR PRECISION PISTOL CHAMPIONSHIP

2 nd EASTERN AREA PA STATE INDOOR PRECISION PISTOL CHAMPIONSHIP 2 nd EASTERN AREA PA STATE INDOOR PRECISION PISTOL CHAMPIONSHIP Hosted At The BRANCH VALLEY FISH, GAME & FORESTRY ASSOCIATION, INC. Physical Location ~ 1000 NORTH RIDGE ROAD, Mailing Address ~ PO Box 180

More information

The pluriscout Software allows you to record live game data and keep track of game progress as well as your scouting entries.

The pluriscout Software allows you to record live game data and keep track of game progress as well as your scouting entries. The allows you to record live game data and keep track of game progress as well as your scouting entries. This manual will provide a concise summary of the information provided by the application, and

More information

Integrating Best of Breed Outage Management Systems with Mobile Data Systems. Abstract

Integrating Best of Breed Outage Management Systems with Mobile Data Systems. Abstract Integrating Best of Breed Outage Management Systems with Mobile Data Systems Donald Shaw Partner ExtenSys Inc. 31 Plymbridge Crescent North York, ON M2P 1P4 Canada Telephone: (416) 481-1546 Fax: (416)

More information

NCSS Statistical Software

NCSS Statistical Software Chapter 256 Introduction This procedure computes summary statistics and common non-parametric, single-sample runs tests for a series of n numeric, binary, or categorical data values. For numeric data,

More information

NCAA Men s Basketball Statistics Feeds

NCAA Men s Basketball Statistics Feeds NCAA Men s Basketball Statistics Feeds 2012-13 Season 1 SPORTSDATA NCAA MEN S BASKETBALL STATISTICS FEEDS Table of Contents Overview... 3 Overview - cont.... 4 Coverage Level to Feed Mapping... 5 PBP Coverage

More information

How to Setup and Score a Tournament. May 2018

How to Setup and Score a Tournament. May 2018 How to Setup and Score a Tournament May 2018 What s new for 2018 As the rules change, the programmers must adjust the scoring program as well. Feedback from scorers also assist in providing ways to make

More information

SIDRA INTERSECTION 6.1 UPDATE HISTORY

SIDRA INTERSECTION 6.1 UPDATE HISTORY Akcelik & Associates Pty Ltd PO Box 1075G, Greythorn, Vic 3104 AUSTRALIA ABN 79 088 889 687 For all technical support, sales support and general enquiries: support.sidrasolutions.com SIDRA INTERSECTION

More information

THE MANCHESTER OPEN MEET 2018

THE MANCHESTER OPEN MEET 2018 THE MANCHESTER OPEN MEET 2018 This competition is promoted by The City of Manchester Aquatics Swim Team (COMAST), and will be held under ASA Laws and Regulations and FINA Technical Rules of Swimming. The

More information

Child Trust Fund to Aegon Junior ISA transfer application form

Child Trust Fund to Aegon Junior ISA transfer application form For customers Aegon Platform Child Trust Fund to Aegon Junior ISA transfer application form In this form, I, me, you, your or my refers to you, the registered contact named in section 1, and Aegon, we

More information

HELPFUL TIP. 1. Visit and select Become A Provider.

HELPFUL TIP. 1. Visit   and select Become A Provider. If you are seeking to be a USTA Junior Team Tennis coordinator, coach/manager, or volunteer, you must register on Net Generation and be in compliance with the USTA Safe Play requirements. The following

More information

Evaluating the Influence of R3 Treatments on Fishing License Sales in Pennsylvania

Evaluating the Influence of R3 Treatments on Fishing License Sales in Pennsylvania Evaluating the Influence of R3 Treatments on Fishing License Sales in Pennsylvania Prepared for the: Pennsylvania Fish and Boat Commission Produced by: PO Box 6435 Fernandina Beach, FL 32035 Tel (904)

More information

PESTA SUKAN DINGHY REGATTA August 2016 Singapore Sailing Federation National Sailing Centre NOTICE OF RACE

PESTA SUKAN DINGHY REGATTA August 2016 Singapore Sailing Federation National Sailing Centre NOTICE OF RACE PESTA SUKAN DINGHY REGATTA 2016 26-28 August 2016 Singapore Sailing Federation National Sailing Centre NOTICE OF RACE 1 RULES 1.1 The regatta will be governed by the rules as defined in The Racing Rules

More information

Special Sports Leave Application Form

Special Sports Leave Application Form Section A: Applicant s Details Section A1 - Personal Details Special Sports Leave Application Form Name: Surname: ID Card Number: Address: ( ) Telephone: Mobile: E-mail: @ Signature: Date: Section A2 -

More information

[XACT INTEGRATION] The Race Director. Xact Integration

[XACT INTEGRATION] The Race Director. Xact Integration 2018 The Race Director Xact Integration [XACT INTEGRATION] This document describes the steps in using the direct integration that has been built between Race Director and Xact. There are three primary

More information

Smart Card based application for IITK Swimming Pool management

Smart Card based application for IITK Swimming Pool management CS499 End Semester Report Smart Card based application for IITK Swimming Pool management Submitted By: Ankur Mittal Project Guide: Prof. Rajat Moona Introduction In today s world, there is an increasing

More information

Background Information. Instructions. Problem Statement. HOMEWORK INSTRUCTIONS Homework #4 Pennsylvania Deer Problem

Background Information. Instructions. Problem Statement. HOMEWORK INSTRUCTIONS Homework #4 Pennsylvania Deer Problem Background Information The Pennsylvania Game Commission is a state agency charged with managing wildlife resources throughout Pennsylvania. An integral part of this job is managing the population of deer

More information

Updated MMA Statistics Feeds 1 SPORTRADAR MMA STATISTICS FEEDS

Updated MMA Statistics Feeds 1 SPORTRADAR MMA STATISTICS FEEDS MMA Statistics Feeds 2016 1 SPORTRADAR MMA STATISTICS FEEDS Table of Contents Overview... 3 MMA Statistics Feeds... 4 Organization Information... 5 Event & Venue Information... 6 Fight Information & Results...

More information

TennisLink Help Guide

TennisLink Help Guide TennisLink Help Guide www.coloradotennis.com Table of Contents Topic Page # Getting Started... 3 TennisLink Home Page... 4 Become a Coach /Manager (Captain)... 5 Coach / Captain Menu Options... 6 Creating

More information

Key Skills Information and communication technology. Level 3. Squash

Key Skills Information and communication technology. Level 3. Squash ICT-L3-S6_A-P3-v7.1-URN:577 Page 1 of 11 Key Skills Information and communication technology Level 3 Wednesday 17th Thursday 18th January, 2007 Squash Final Mark Scheme Notes for markers The award of each

More information

Association USBC ASSOCIATION HOW-TO GUIDE. Youth Development

Association USBC ASSOCIATION HOW-TO GUIDE. Youth Development 8 1 0 2 7 1 0 2 th membership USBC You Association USBC ASSOCIATION HOW-TO GUIDE Youth Development 1 For the 2017-2018 bowling season, USBC Youth bowlers have one simplified product. $4 USBC Youth Membership

More information

Renewing Athlete Registration 2018

Renewing Athlete Registration 2018 Renewing Athlete Registration 2018 Australia Club name Membership (SOMS) Number Please return this form along with your registration fee of $105 to Club Membership Officer If you have any difficulty with

More information

LXI DESCENSO A NADO DE LA RÍA DE NAVIA

LXI DESCENSO A NADO DE LA RÍA DE NAVIA 1. GENERAL FRAMEWORK LXI DESCENSO A NADO DE LA RÍA DE NAVIA Navia s Estuary Downstream Swimming GENERAL RULES The Descenso a Nado de la Ría de Navia (Descenso from now on) is a long distance open water

More information

Contents. Please select the element of the process that you require guidance for by clicking the text below. My Roles 3.

Contents. Please select the element of the process that you require guidance for by clicking the text below. My Roles 3. 1 P a g e Contents Please select the element of the process that you require guidance for by clicking the text below My Roles 3 Referee Dashboard 4 Creating a Match 5 Cautions 8 Dismissals 10 Submission

More information

League Registration for New Leagues

League Registration for New Leagues League Registration for New Leagues Congratulations and thank you for joining Slo-Pitch Ontario for the upcoming season! This Guide has been designed to help guide you through our online registration process

More information

Midland Junior Premier League

Midland Junior Premier League Midland Junior Premier League Guide to General Administration Louise Roden Contents How to Register Players... 2 FA Full Time Player Registration... 4 Transfers... 5 Arranging the Game... 6 Match Day...

More information

SOUTH ISLAND SECONDARY SCHOOLS SWIMMING CHAMPIONSHIPS 2018 EVENT INFORMATION

SOUTH ISLAND SECONDARY SCHOOLS SWIMMING CHAMPIONSHIPS 2018 EVENT INFORMATION EVENT INFORMATION Date Saturday 7 th July 2018 Time Session 1 Saturday 7 July Warm-up 8:00 am Starts 8:45 am Session 2 Saturday 7 July Warm-up 2:00 pm Starts 2:45 pm Venue Stadium 2000, Kinross Street

More information

# of Teams/Regions. Athletes (Male) (Female) Coaches (Male) Regional 6 1 NCCP Level 2 (CBET A & B) Managers (Male) Regional 6 1 N/A

# of Teams/Regions. Athletes (Male) (Female) Coaches (Male) Regional 6 1 NCCP Level 2 (CBET A & B) Managers (Male) Regional 6 1 N/A Technical packages are a critical part of the Ontario Games. They assist the organizing committees by detailing tournament formats and scoring procedures, help with all aspects of Games planning including

More information

2017/2018 Triathlon Program Scholarship Nomination Form

2017/2018 Triathlon Program Scholarship Nomination Form 2017/2018 Triathlon Program Scholarship Nomination Form The South West Sydney Academy of Sport (SWSAS) implements high performance programs for talent identified athletes from South-Western Sydney across

More information

March Long Course L3 Open Meet 2018 (Level 3 License No.3ER180025)

March Long Course L3 Open Meet 2018 (Level 3 License No.3ER180025) www.cityofnorwichsc.co.uk March Long Course L3 Open Meet 2018 (Level 3 License No.3ER180025) Under ASA Laws & Technical Rules Venue Pool Age Groups: Awards Sportspark, UEA, Norwich, NR4 7TJ 8 Lane Long

More information

SASA EAST DISTRICT AGE GROUP CHAMPIONSHIPS 2017/2018

SASA EAST DISTRICT AGE GROUP CHAMPIONSHIPS 2017/2018 SASA EAST DISTRICT AGE GROUP CHAMPIONSHIPS 2017/2018 25 th & 26 th November 2017 and 13 th & 14 th January 2018 2 nd to 4 th February 2018 Michael Wood Centre, Glenrothes Royal Commonwealth Pool, Edinburgh

More information

How to run a club night

How to run a club night How to run a club night utilising TM and MM Swimming NSW wishes to acknowledge the author of this document Ms. Jo Wazny [This document is meant to get you started running your club night, it assumes some

More information

A GUIDE TO THE LOOSE ENDS HOCKEY LEAGUE WEBSITE PAGE

A GUIDE TO THE LOOSE ENDS HOCKEY LEAGUE WEBSITE PAGE A GUIDE TO THE LOOSE ENDS HOCKEY LEAGUE WEBSITE PAGE 1 What Can Be Done Using The League Website: MAIN PAGE: From the main page, click on the man with the newspaper beneath the label News and Archives

More information

SOUTH ISLAND SECONDARY SCHOOLS SWIMMING CHAMPIONSHIPS 2015 EVENT INFORMATION

SOUTH ISLAND SECONDARY SCHOOLS SWIMMING CHAMPIONSHIPS 2015 EVENT INFORMATION SOUTH ISLAND SECONDARY SCHOOLS SWIMMING CHAMPIONSHIPS 2015 EVENT INFORMATION Date Friday 3 July 2015 Saturday 4 July 2015 Time Session 1 Friday 3 July Warm- up 6:00 pm Starts 6:45 pm Session 2 Saturday

More information

Killarney Swimming Club

Killarney Swimming Club Killarney Swimming Club MEMBERSHIP CONSENT FORM To be completed by parents/guardians of all swimmers under 18 and by all swimmers 18 & over Athletes Name : Date of Birth: Address: Email: Parent s work

More information

QUAD CITIES PICKLEBALL CLUB TOURNAMENT

QUAD CITIES PICKLEBALL CLUB TOURNAMENT QUAD CITIES PICKLEBALL CLUB TOURNAMENT Indoors at Rock Island Fitness and Activities Center, 4303 24 th Street, Rock Island, Il 61201 Three courts available. See club website http://qcpickleball.wordpress.com/

More information

TRENDS IN PARTICIPATION RATES FOR WILDLIFE-ASSOCIATED RECREATION BY RACE/ETHNICITY AND GENDER:

TRENDS IN PARTICIPATION RATES FOR WILDLIFE-ASSOCIATED RECREATION BY RACE/ETHNICITY AND GENDER: TRENDS IN PARTICIPATION RATES FOR WILDLIFE-ASSOCIATED RECREATION BY RACE/ETHNICITY AND GENDER: 1980-2001 Allan Marsinko Professor Department of Forestry and Natural Resources Clemson University Clemson,

More information

Creating a New Player and Registering them with the League

Creating a New Player and Registering them with the League Creating a New Player and Registering them with the League When a new player joins the club, you will need to register them with the League in order for them to play in the Northern Premier Cricket league.

More information

Homework 4 PLAYERS, TEAMS, MATCHES, PENALTIES, COMMITTEE_MEMBERS

Homework 4 PLAYERS, TEAMS, MATCHES, PENALTIES, COMMITTEE_MEMBERS Homework 4 In this homework assignment, you will create tennis club database named tennis and write SQL statements to create database tables, load data to the tables, and run MySQL queries. Referential

More information

Withdrawal from an Aegon General Investment Account (GIA) into an Aegon Junior ISA (JISA)

Withdrawal from an Aegon General Investment Account (GIA) into an Aegon Junior ISA (JISA) For customers Aegon Platform Withdrawal from an Aegon General Investment Account (GIA) into an Aegon Junior ISA (JISA) Before completing this form You must have been provided with an illustration, Aegon

More information

COUNTY SWIMMING CHAMPIONSHIPS AND AGE GROUP COMPETITIONS

COUNTY SWIMMING CHAMPIONSHIPS AND AGE GROUP COMPETITIONS COUNTY SWIMMING CHAMPIONSHIPS AND AGE GROUP COMPETITIONS Held under ASA Laws and Regulations and ASA Technical Rules of Racing Licence Numbers: 2ER190025, 2ER190026, 2ER190027 1) General conditions 19

More information

WYDOT Customer Satisfaction Survey 2016

WYDOT Customer Satisfaction Survey 2016 February 16 th, 2017 WYDOT Customer Satisfaction Survey 2016 Presenting results of the WYDOT Customer Satisfaction Survey, 2016 Presented By Brian Harnisch Senior Research Scientist Wyoming Survey & Analysis

More information

Competition Management Online User Guide for Basketball

Competition Management Online User Guide for Basketball Competition Management Online User Guide for Basketball version 3.0 Acting Manager, Game Development Amy Clarke E: amy.clarke@basketball.net.au P: 03 9697 4315 Account Manager Katherine Bell E: k.bell@foxsportspulse.com

More information

COLD ASH BOYS & GIRLS FOOTBALL CLUB Founded PLAYER MEMBERSHIP FOR 2015/16 SEASON

COLD ASH BOYS & GIRLS FOOTBALL CLUB Founded PLAYER MEMBERSHIP FOR 2015/16 SEASON Dear Player/Parent, COLD ASH BOYS & GIRLS FOOTBALL CLUB PLAYER MEMBERSHIP FOR 2015/16 SEASON We are pleased to invite you to join Cold Ash Football Club for next season starting the 1 st September 2015.

More information

Section HL [HELPER] Sequence: 36

Section HL [HELPER] Sequence: 36 NHATS Round 6 Section HL [HELPER] Sequence: 36 BOX HLPRE BOX HLPRE NOT ON FILE If no PERSON ROSTER MEMBERS are flagged = (YES) for HELPSGOOUTSIDE and HELPSAROUNDINSIDE and HELPSOUTOF BED and TOOKPLACESMOSTOFTEN

More information

Competitor Requirements

Competitor Requirements Competitor Requirements STRONGMAN CORPORATION LISCENSE REGULATIONS Amateur status is any strongman that does not currently have a recognized Pro Card by SC (Strongman Corporation) or any competitor not

More information

Novice Gala. Saturday 21 st February Mercat Gait Centre, Prestonpans

Novice Gala. Saturday 21 st February Mercat Gait Centre, Prestonpans Novice Gala Saturday 21 st February 2015 Mercat Gait Centre, Prestonpans Meet Information: Date: Saturday 21st February 2015 Venue: Pool: Events: Age groups: Mercat Gait Pool, Prestonpans, East Lothian,

More information

Manchester International Swim Meet (MISM) 2017

Manchester International Swim Meet (MISM) 2017 Manchester International Swim Meet (MISM) 2017 This competition is promoted by The City of Manchester Aquatics Swim Team (COMAST), and will be held under ASA Laws and Regulations and FINA Technical Rules

More information

COLD ASH BOYS & GIRLS FOOTBALL CLUB Founded PLAYER MEMBERSHIP FOR 2018/19 SEASON

COLD ASH BOYS & GIRLS FOOTBALL CLUB Founded PLAYER MEMBERSHIP FOR 2018/19 SEASON Dear Player/Parent, COLD ASH BOYS & GIRLS FOOTBALL CLUB PLAYER MEMBERSHIP FOR 2018/19 SEASON We are pleased to invite you to join Cold Ash Boys & Girls Football Club for next season starting the 1 st September

More information

2017 PAN-AMERICAN CHAMPIONSHIP SELECTION CRITERIA

2017 PAN-AMERICAN CHAMPIONSHIP SELECTION CRITERIA 2017 PAN-AMERICAN CHAMPIONSHIP SELECTION CRITERIA This document presents the selection criteria for the 2017 Pan-American championship from which Racquetball Canada will select the athletes representing

More information

2018 C.Y. Taekwondo Championships Sports Iowa nd Lane, Ames, IA

2018 C.Y. Taekwondo Championships Sports Iowa nd Lane, Ames, IA 2018 C.Y. Taekwondo Championships Sports Iowa 2176 232nd Lane, Ames, IA 50014 hamannma@hotmail.com July 26, 2018 Dear Taekwondo Family, Greetings from Ames, Iowa and C.Y. Martial Arts! We would like to

More information

A. Login. 3. After validation a Welcome screen is displayed.

A. Login. 3. After validation a Welcome screen is displayed. A. Login 1. Enter the web site name with /admin after it. e.g.: http://www.pwnhl.ca/admin 2. Enter your id and password in the Login Box and press Logon button. 3. After validation a Welcome screen is

More information

GAME MANAGEMENT SYSTEM (GMS) CLUB ADMIN GUIDE

GAME MANAGEMENT SYSTEM (GMS) CLUB ADMIN GUIDE GAME MANAGEMENT SYSTEM (GMS) CLUB ADMIN GUIDE Club Admin Guide 1. Home The Dashboard 2. Edit Club 3. Golden Roles 4. Club House 5. Grounds 5.1 Editing a Pitch 5.2 Adding a Pitch 5.3 Deleting a Pitch 6.

More information

1. Promoter Name. Expiration Date 3. Promoter Contact Numbers. 2. Promoter Virginia License Number Promoter Address

1. Promoter Name. Expiration Date 3. Promoter Contact Numbers. 2. Promoter Virginia License Number Promoter  Address Commonwealth of Virginia Department of Professional and Occupational Regulation 9960 Mayland Drive, Suite 400 Richmond, Virginia 23233-1485 (804) 367-0186 www.dpor.virginia.gov Boxing, Martial Arts, and

More information

Australian Ice Hockey League Limited Privacy Policy

Australian Ice Hockey League Limited Privacy Policy Australian Ice Hockey League Limited Privacy Policy 1. AIHL Australian Ice Hockey League Ltd (ACN 114 658 123) of GPO Box 329, Melbourne VIC 3001 (AIHL) is the administrator of the Australian Ice Hockey

More information

1 P a g e J O G R C & L S R A - S e n i o r I n f o r m a t i o n P a c k BANKERS ORDER FOR LANCASTER JOHN O GAUNT ROWING CLUB

1 P a g e J O G R C & L S R A - S e n i o r I n f o r m a t i o n P a c k BANKERS ORDER FOR LANCASTER JOHN O GAUNT ROWING CLUB 1 P a g e J O G R C & L S R A - S e n i o r I n f o r m a t i o n P a c k 2 0 1 2 BANKERS ORDER FOR LANCASTER JOHN O GAUNT ROWING CLUB SENIOR MEMBERSHIP SUBSCRIPTIONS The current membership subscription

More information

Equine Injury Database Can we explain the significant drop in risk

Equine Injury Database Can we explain the significant drop in risk Equine Injury Database Can we explain the significant drop in risk in 2015? Tim.Parkin@Glasgow.ac.uk @ThoroughbredHN @tparkin69 Summary What do the figures tell us now? Year on year changes in risk of

More information

Error! Bookmark not defined. Error! Bookmark not defined. Error! Bookmark not defined.

Error! Bookmark not defined. Error! Bookmark not defined. Error! Bookmark not defined. Page 1 Contents Page: Sporting Pulse Passport... 3 Procedure:... 4 Sporting Pulse Membership Database... 5 Club Level Options... 6 Club details:... 6 Contacts... 7 Locator... 8 Transfers & Permits... 9

More information

TRAP MOM FUN SHOOT 2011

TRAP MOM FUN SHOOT 2011 TRAP MOM FUN SHOOT 2011 Program Manual 2011 - Trap Mom Software - CYSSA Fun Shoot - Build 8 REQUIRED TO RUN THIS PROGRAM APPLE USERS: 1. OS X Mac Computer (Intel Preferred) 2. Printer (Laser recommended)

More information

The FA Charter Standard ADULT CLUB APPLICATION FORM FROM 2015/ 16

The FA Charter Standard ADULT CLUB APPLICATION FORM FROM 2015/ 16 The FA Charter Standard ADULT CLUB APPLICATION FORM FROM / 16 02 NAME OF CLUB: NAME OF FA CHARTER STANDARD COORDINATOR: FAN: DATE OF BIRTH: ADDRESS: POSTCODE: TELEPHONE: FAX: MOBILE: EMAIL(S): NAME OF

More information

Contents. Please select the element of the process that you require guidance for by clicking the text below. My Roles 3.

Contents. Please select the element of the process that you require guidance for by clicking the text below. My Roles 3. 1 P a g e Contents Please select the element of the process that you require guidance for by clicking the text below My Roles 3 Referee Dashboard 4 Creating a Match 5 Cautions 10 Dismissals 12 Submission

More information

SOMERSET COUNTY AMATEUR SWIMMING ASSOCIATION AGE GROUP AND CHAMPIONSHIPS 2019 EVENT CONDITIONS, QUALIFYING TIMES & PROGRAMME

SOMERSET COUNTY AMATEUR SWIMMING ASSOCIATION AGE GROUP AND CHAMPIONSHIPS 2019 EVENT CONDITIONS, QUALIFYING TIMES & PROGRAMME SOMERSET COUNTY AMATEUR SWIMMING ASSOCIATION AGE GROUP AND CHAMPIONSHIPS 2019 EVENT CONDITIONS, QUALIFYING TIMES & PROGRAMME Dates: Saturday 26 th & Sunday 27 th January 2019 Saturday 2 nd & Sunday 3 rd

More information

OMS Alerts with Milsoft IVR Written by: Darcy O Neal Presented by: Clayton Tucker

OMS Alerts with Milsoft IVR Written by: Darcy O Neal Presented by: Clayton Tucker OMS Alerts with Milsoft IVR Written by: Darcy O Neal Presented by: Clayton Tucker The Foundation Milsoft IVR s Notification One-stop shop for Email, Text, and Voice Call Notifications Robust and Configurable

More information

RHYMTHIC GYMNASTICS SELECTION POLICY XXI COMMONWEALTH GAMES, GOLD COAST, AUSTRALIA

RHYMTHIC GYMNASTICS SELECTION POLICY XXI COMMONWEALTH GAMES, GOLD COAST, AUSTRALIA RHYMTHIC GYMNASTICS SELECTION POLICY XXI COMMONWEALTH GAMES, GOLD COAST, AUSTRALIA Competition Events Competition I Qualification Competition IV Team Final Competition II Individual All-Around Final Competition

More information

British Riding Clubs Volunteers Club. Ride Together Train Together Compete Together Have Fun Together

British Riding Clubs Volunteers Club. Ride Together Train Together Compete Together Have Fun Together Volunteers Handbook British Riding Clubs Volunteers Club Ride Together Train Together Compete Together Have Fun Together Introduction 2 Volunteer Roles 3 Membership Benefits 7 Frequently Asked Questions

More information

Welcome to the Kansas City Fencing Center!

Welcome to the Kansas City Fencing Center! Welcome to the Kansas City Fencing Center! We re very excited that you have chosen to give fencing a try. In this bundle you will find both a Liability Release and a US Fencing Membership application.

More information

Section HL [HELPERS] Sequence: 43

Section HL [HELPERS] Sequence: 43 NHATS Round Section HL [HELPERS] Sequence: 43 BOX HLPRE BOXHLPRE QUESTION TEXT If no PERSON ROSTER MEMBERS are flagged = (YES) for HELPSGOOUTSIDE and HELPSAROUNDINSIDE and HELPSOUTOF BED and TOOKPLACESMOSTOFTEN

More information

BC Soccer Youth Provincial Championships Bid Package

BC Soccer Youth Provincial Championships Bid Package BC Soccer Youth Provincial Championships Bid Package BC Soccer is currently accepting bids for the hosting of Provincial Championships in all categories for 2019. The goal of BC Soccer is to have the highest

More information

Competition Management

Competition Management Competition Management User Guide for the Basketball Network 2016 version 1.3 Table of Contents CONFIGURATION 4 Passport 4 Access via User Management 4 Club and Team Field Settings 5 Manage Competition

More information