Torna al Thread

/****** Oggetto: Table [dbo].[timesheet] Data script: 12/23/2008 14:39:50 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[timesheet]( [id_tempo] [int] IDENTITY(1,1) NOT NULL, [id_utente] [int] NULL, [id_reparto] [int] NULL, [id_job] [int] NULL, [giorno] [datetime] NULL, [minuti] [smallint] NULL, [minutistr] [smallint] NULL, [minutifest] [smallint] NULL, [id_categoria] [int] NULL, [id_macrocategoria] [int] NULL, [id_microcategoria] [int] NULL, [note] [ntext] NULL, [costi] [varchar](50) NULL, CONSTRAINT [timesheet_PRIMARY] PRIMARY KEY NONCLUSTERED ( [id_tempo] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, FILLFACTOR = 90) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO SET ANSI_PADDING OFF
Copyright © dotNetHell.it 2002-2024
Running on Windows Server 2008 R2 Standard, SQL Server 2012 & ASP.NET 3.5