Advertisement
piotrek77

Table [CDN].[SED_TraNag_Cechofikator]

Sep 14th, 2012
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
T-SQL 0.63 KB | None | 0 0
  1. /****** Object:  Table [CDN].[SED_TraNag_Cechofikator]    Script Date: 09/14/2012 12:09:49 ******/
  2. SET ANSI_NULLS ON
  3. GO
  4.  
  5. SET QUOTED_IDENTIFIER ON
  6. GO
  7.  
  8. SET ANSI_PADDING ON
  9. GO
  10.  
  11. CREATE TABLE [CDN].[SED_TraNag_Cechofikator](
  12.     [SEDTrN_ID] [int] IDENTITY(1,1) NOT NULL,
  13.     [SEDTrN_typ] [int] NULL,
  14.     [SEDTrN_numer] [int] NULL,
  15.     [SEDTrN_wartosc] [varchar](20) NULL,
  16.  CONSTRAINT [PK_SED_TraNag_Cechofikator] PRIMARY KEY CLUSTERED
  17. (
  18.     [SEDTrN_ID] ASC
  19. )WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY]
  20. ) ON [PRIMARY]
  21.  
  22. GO
  23.  
  24. SET ANSI_PADDING OFF
  25. GO
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement