Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

SQL - Time Table With Stored Procedure (SQL Server)

0.00/5 (No votes)
14 Jul 2004 1  
A Stored Procedure for Create a Time Table with all interesting details

Sample Image - TableTemps.gif

Introduction

In many project, we can use a time table (for example in HR domain).

This SQL Script is used to create the Time Table and the Stored Procedure that completes automatically a range between 2 given dates.

This Script is based on SQL Server and based on french holiday, for the other countries, the public holidays part must be modified.

Time Table

The details of the Table created by the Script :

  • TEMPS_ID (Type : smallINt, Propri�t� : NOT NULL) : ID of the Date
  • TEMPS_DATE (Type : smalldatetime, Propri�t� : NOT NULL) : Date
  • TEMPS_ANNEE (Type : smallINt, Propri�t� : NOT NULL) : Year of The Date
  • TEMPS_MOIS (Type : tINyINt, Propri�t� : NOT NULL) : Month of the Date
  • TEMPS_JOUR (Type : tINyINt, Propri�t� : NOT NULL) : Day of The Date
  • TEMPS_JOURDESEMAINE (Type : tINyINt, Propri�t� : NOT NULL) : WeekDay N� of the Date
  • TEMPS_JOURDELANNEE (Type : smallINt, Propri�t� : NOT NULL) : N� of the Day in the year of the Date
  • TEMPS_JOUROUVRE (Type : char(1), Propri�t� : NOT NULL) : Flag to know if the day is open or not
  • TEMPS_TRIMESTRE (Type : tINyINt , Propri�t� : NOT NULL) : N� of the quarter of the Date
  • TEMPS_SAISON (Type : char(10), Propri�t� : NOT NULL) : Season of the Date
  • TEMPS_FERIE (Type : varchar(20), Propri�t� : NULL) : If the date is public holiday, which one ?

The Stored Procedure

The Stored Procedure is used to add data into the Time Table, in fact with this SP we can clear all data of the existing Time Table and just execute this SP.

The SP is in the SQL source code.

Related Links

The french version (complete version) of this article is visible at this link :

 - http://www.asp-php.net/scripts/asp.net/table_sql_temps.php

Updates

I modify the SQL script for add functions (from Fr�d�ric BROUARD) to calculate exactly the seasons, You can see these function at the adress :

 - http://sqlpro.developpez.com/MSSQLServer_fonctions/UDF.html#FN_SEASONS

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here