Torna al Thread

USE [c59onlineFR] GO /****** Oggetto: Table [dbo].[Notifiche] Data script: 06/05/2008 11:43:38 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[Notifiche]( [id] [int] IDENTITY(1,1) NOT NULL, [codalbergo] [int] NOT NULL, [codcomune] [int] NOT NULL, [tiponotifica] [int] NULL, [mese] [int] NULL, [anno] [int] NULL, CONSTRAINT [PK_Notifiche] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]
Copyright © dotNetHell.it 2002-2024
Running on Windows Server 2008 R2 Standard, SQL Server 2012 & ASP.NET 3.5