473,325 Members | 2,860 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,325 software developers and data experts.

Recursive stored procedure

Hi all,

I need your help.
I'm creating a program to display the circuit of Bus by city and stop.

This is my example and i don't know how to do it:

I have 3 differents circuits of bus and each circuit can have one or multiple transfer to another circuit.

So let's say i'm looking for a trajet from City1/Stop1 (source) To City3/Stop11(destination)

Here's the scenario:

Bus 1:
------
City1/ Stop1: 6h30 am (bus departure) / SOURCE
City1/ Stop2: 6h50 am -> Transfer to Bus 2 (transfert at 6h55am)
City1/ Stop3: 6h55 am
City1/ Stop4: 7h00 am
...
City1/ Stop12: 12h50 pm
City1/ Stop13: 13h00 pm
...

Bus 2:
------
City2/ Stop1: 6h00 am (bus departure)
City2/ Stop2: 6h10 am
City2/ Stop3: 6h20 am
City1/ Stop2 (e.g stop 4): 6h55 am ***
City2/ Stop5: 7h00 am
City2/ Stop6: 7h10 am
City2/ Stop7: 7h20 am -> Transfer to Bus 3 (at 7h28 am)
City2/ Stop8: 7h30 am
City2/ Stop9: 7h40 am -> Transfer to Bus 8
City2/ Stop10: 7h50 am
City2/ Stop11: 8h05 am
City2/ Stop12: 8h15 am
etc...

Bus 3:
------
City3/ Stop1: 5h00 am (departure)
City3/ Stop2: 5h40 am
City3/ Stop3: 6h20 am
City3/ Stop3: 6h50 am
City3/ Stop5: 7h00 am
City3/ Stop6: 7h20 am
City3/ Stop7: 7h28 am ***
City3/ Stop8: 7h35 am
City3/ Stop9: 7h40 am
City3/ Stop10: 7h45 am
City3/ Stop11: 7h55 am / DESTINATION
City3/ Stop12: 8h15 am
etc...

So my trajet should be:
-----------------------
Bus1:
Departure: City1/Stop1: 6h00 am
Arrival: City1/Stop2: 6h50 am

Transfert to Bus 2:
Departure: City1/ Stop2 (e.g stop 4): 6h55 am
Arrival: City2/ Stop7: 7h20 am

Transfert to Bus 3:
Departure: City3/ Stop7: 7h28 am
Arrival: City3/ Stop11: 7h55 am

Can anyone help me and tell me how to do it as a recursive stored procedure ?
I tried many examples/algorithms but i didn't succeed.

I have 2 differents tables.
The first table is dedicated for Circuits/Bus:

CREATE TABLE [dbo].[Trajets](
[TRAJET_ID] [int] IDENTITY(1,1) NOT NULL,
[CIRCUIT_ID] [int] NOT NULL,
[CITY_ID] [int] NOT NULL,
[STOP_ID] [int] NOT NULL,
[DAY_ID] [int] NOT NULL,
[HOUR] [int] NOT NULL,
[MINUTE] [int] NOT NULL,
[TYPE_ARRET] [nvarchar](50) NULL,
[TRANSFERT] [bit] NOT NULL,
[TYPE_TRANSFERT] [int] NULL,
[DIRECTION] [nvarchar](50) NULL,
CONSTRAINT [PK_Trajets] PRIMARY KEY (TRAJET_ID)
)


The 2nd one is dedicated for Transfers:

CREATE TABLE [dbo].[Transferts](
[TRANSFERT_ID] [int] IDENTITY(1,1) NOT NULL,
[TRAJET_ID] [int] NOT NULL,
[CIRCUIT_ID] [int] NOT NULL,
CONSTRAINT [PK_Transferts] PRIMARY KEY (Transfert_Id)
)



Thank you

Paul
Mar 16 '09 #1
0 1933

Sign in to post your reply or Sign up for a free account.

Similar topics

3
by: Robert Song | last post by:
Hi all I am implementing a stored procedure which needs to recursively call itself until specific condition is reached, Could anyone give some advice about that? Thanks a lot Robert Song
4
by: Rodusa | last post by:
I am having problem to apply updates into this function below. I tried using cursor for updates, etc. but no success. Sql server keeps telling me that I cannot execute insert or update from inside...
2
by: Dino L. | last post by:
How can I run stored procedure (MSSQL) ?
5
by: purushneel | last post by:
Hi, I work primarily on Oracle databases. I am trying to convert a recursive stored procedure written in Oracle to DB2. Does DB2 UDB v8.2 (Windows/AIX) supports recursive stored procedures ??...
4
by: Henrik Juul | last post by:
How do I call my Stored Procedure recursively: CREATE PROCEDURE dbo.GetParentIONode ( @IONodeID int, @FullNodeAddress char(100) OUTPUT ) AS BEGIN
3
by: oregondba | last post by:
I have a database I have inherited (new job). I am trying to baseline the code and have done a DB2Look to get the code out of an existing db. The DB2Look produced a SP with the following form: ...
0
by: champ1979 | last post by:
I wrote an algorithm to get all the relatives of a person in a family tree. I'm basically getting all the users from the DB and am doing the recursive logic in code, so that there is only 1 call...
3
by: jzdoh | last post by:
I am trying to write a stored procedure that could create a table called tblManagerHierarchy. It is a table that contains recursive data. The data is coming from tblEmployee where it contains that...
3
by: fabiomoggi | last post by:
Hello Guys, I am developing a web application to manage Active Directory resources, and one of my tasks is to map Organizational Units hierarchy into a SQL Server database. Let's suppose that I...
1
by: bipinskulkarni | last post by:
How to write recursive stored procedure in mysql?
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
1
by: Defcon1945 | last post by:
I'm trying to learn Python using Pycharm but import shutil doesn't work
1
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
0
by: af34tf | last post by:
Hi Guys, I have a domain whose name is BytesLimited.com, and I want to sell it. Does anyone know about platforms that allow me to list my domain in auction for free. Thank you
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.