Forum: ASP.NET2.0 |
Thema:
AW: AW: AW: AW: AW: AW: AW: AW: AW: AW: Belegt Status anzeigen ! |
Von:
Thomas Scherner (
14.08.2007 11:32) |
Hallo Thomas,
hier wie versprochen die DB Daten.
/****** Objekt: Tabelle [dbo].[Belegung] Skriptdatum: 14.08.2007 11:13:42 ******/
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[Belegung]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
drop table [dbo].[Belegung]
GO
if not exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[Belegung]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
BEGIN
CREATE TABLE [dbo].[Belegung] (
[RessourcenId] [int] NOT NULL ,
[Startdatum] [datetime] NULL ,
[Stopdatum] [datetime] NULL ,
[Startzeit] [datetime] NULL ,
[Stopzeit] [datetime] NULL
) ON [PRIMARY]
END
GO
INSERT INTO Belegung
(RessourcenId, Startdatum, Stopdatum, Startzeit, Stopzeit)
VALUES (25, '01.01.2007 00:00:00', '02.01.2007 00:00:00 ', '01.01.2007 07:00:00', '02.01.2007 18:00:00 ')
INSERT INTO Belegung
(RessourcenId, Startdatum, Stopdatum, Startzeit, Stopzeit)
VALUES (25, '05.01.2007 00:00:00', '05.01.2007 00:00:00 ', '05.01.2007 07:00:00', '05.01.2007 18:00:00 ')
INSERT INTO Belegung
(RessourcenId, Startdatum, Stopdatum, Startzeit, Stopzeit)
VALUES (26, '03.01.2007 00:00:00', '03.01.2007 00:00:00 ', '03.01.2007 07:00:00', '03.01.2007 18:00:00 ')
INSERT INTO Belegung
(RessourcenId, Startdatum, Stopdatum, Startzeit, Stopzeit)
VALUES (26, '05.01.2007 00:00:00', '05.01.2007 00:00:00 ', '05.01.2007 07:00:00', '05.01.2007 18:00:00 ')
Vielen Dank & Gruß
Thomas
Ich bin ein Newbie . Aber jeder hat mal angefangen. Gruß & Dank Thomas
Betreff |
Von |
Datum |
|
|
Thomas
Hauser
|
14.08.2007 13:38 |
|
|
Antworten
Vorsicht bei der Eingabe: Die Zeichen ' oder -- sind nicht erlaubt!