Its been a while since my Database Design classes in my sophomore year at Uni. and I haven't done any designs in the interim so my skills are at best rusty at the moment. I have begun working on a personal project involving the railway timetable system and seem to be stuck at the table design which resembles something like this -
Stati...
Hello, I am trying to do a dual-timetable system thing.
Basically, it's for a school project, and some schools have week 1 and week 2 systems.
The way this works is through alternating each week, so at the start of september, the school week starts on week 1, and the next week is week 2.
How would I implement this in PHP an MySQL?
...
Hope you can help me out with this guys. It's not help with work -- it's for a charity of very hard working volunteers, who could really use a less confusing/annoying timetable system than what they currently have.
If anyone knows of a good third-party app which (certainly) automate this, that would almost as good. Just... please don'...
Does anyone know of a js "time table" widget?
I need the following:
Days of week in columns & hours of day in rows
1 hour time slot cells (or customisable)
Ability to select multiple times during the week using mouse to highlight/select cells.
Select times across days of week (e.g. highlight 6pm time slots Monday to Friday with the...
I am going to create a little app using PHP that acts as a timetable. I am going to have it going from 9.00am to 5.00pm and through monday to friday.
I am still deciding how i want the timetable to function but have this idea though, the user mouses over a section of the timetable, when the user clicks that point, a new event booking wi...
I am trying to come up with the most efficient database as possible. My bus routes all have about 10 stops. The bus starts at number one until it reaches the 10th stop, then it comes back again. This cycle happens 3 times a day.
I am really stuck as to how I can efficiently generate the times for the buses and where I should store the s...
I'm looking at creating a time table solution.
I have a task sheet that looks like
Area 1 item 1 startTime endTime
Area 1 item1 startTime endTime
I wish to create a display where I can view what even is happening next, either endTime or startTime
i.e.
Newcastle reel 16:45 18:45
Newcastle reel2 17:45 19:45
would outpu...
hi,
I'm trying to design a db to store the timetable for 300 different bus routes,
Each route has a different number of stops and different times for Monday-Friday, Saturday and Sunday.
I've represented the bus departure times for each route as follows,
I'm not sure if i should have null values in the table, does this look ok?
route...
Hi guys,
i need to create an employee shift database. so i have 3 tables so far, employee, employee_shift, and shift
im suppose to calculate how many shifts an employee has done at the end of the month, my question means, because a month has 30 days some have 28 and 31 days.
this means i need to create in the shift table 31 different ...
Hi Guys,
Im creating a little database that has employee, emp_shift, shift, tables
now im suppose to be able to calculate at the end of the month which employee
has done the most number of shifts.
Ive created the SQL creation, insert statements for the tables, and a little diagram to explain what im trying to acomplish, im a beginner a...
Morning Guys,
I have the following tables:
operator(ope_id, ope_name)
ope_shift(ope_id, shift_id, shift_date)
shift(shift_id, shift_start, shift_end)
here is a better view of the data
http://latinunit.net/emp_shift.txt
here is the screenshot of a select statement to the tables
http://img256.imageshack.us/img256/4013/opeshift.jpg...
Hi There,
I'm currently working on a project where I need to print out a lesson timetable. Here is a link to the one I have created http://conorhackett.com/tt/.
It works fine now but i'd like to have more control over it. If you look at the code you'll see what I mean. The html/css is very messy.
I've tried to do it with a html table ...
I'm writing a genetic algorithm for generating timetables.
At the moment I'm using these two heuristics:
Number of holes between lectures in one day (related) (less holes -> bigger score)
Each hour has some value, so for each timetable I sum values for hours when lectures are on. (lectures at more appropriate hours -> bigger score)...
Hi All,
I have to implement an algorithm that generates a timetable for a university. I've searched and found a lot of algorithms. But here is the problem. I need an algorithm that generates a timetable for the whole semester, not on a weekly base. It should also consider the predefined order of the course's parts, e.g. exercise 1 shou...
Hi
I'm making a timetable site for a music festival. The purpose of this site is for people to choose acts they want to see and compile their own personal timetable for the event. At the moment the site has 2 tables:
The full list of acts on at the
festival
The user's personal timetable
Here is my problem. Everytime an act is added...
Are there any examples of database design for public transport time-tables ?
Or any OpenSource timetable-engine solution?
Or if not, how to do it oneselfs?
How do I best design the database so that a search can be reasonable fast ?
I'd do it like this:
For testing, I'd take an X-shaped bus network, with 5 stops (edges and vertex)..
...
Hello guys!
The situation is the following.
I'm a private teacher with dozens of students. I have some restrictions on my time (for example I can't teach at friday afternoons) and students also have many restrictions on their time. Based on that, I'm trying to create my agenda in a way that I can do as many private lessons as possible ...
I know that it has been told almost anything related to time table modeling in RDBS, but i can not find any well written documentation about available techniques to store time tables in DB.
My case:
I have table witch holds available places, and table with actual classes.
Each place has it's own unique schedule
Each class can be sched...
So.. someone recently asked me to make a timetable for them and I agreed. When I sat down to do it I realized it was harder than I thought. It's just a timetable to give shifts to 4 people for either day or night.
I thought of something like this:
for Monday to Saturday {
for(i=0;i<people.length;i++){
if (person[i].available()){
...