Advertisement
Guest User

Untitled

a guest
May 24th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. CREATE TABLE [dbo].[Inventarios](
  2. [RepCodigo] [varchar](15) NOT NULL,
  3. [ProID] [int] NOT NULL,
  4. [invCantidad] [int] NULL,
  5. [InvCantidadDetalle] [int] NULL,
  6. [rowguid] [uniqueidentifier] ROWGUIDCOL NOT NULL CONSTRAINT [DF_Inventarios_rowguid] DEFAULT (newid()),
  7. [UsuInicioSesion] [varchar](64) NULL,
  8. [InvFechaActualizacion] [datetime] NULL CONSTRAINT [DF__Inventari__InvFe__6DA68C18] DEFAULT (getdate()),
  9. CONSTRAINT [PK_Inventarios] PRIMARY KEY CLUSTERED
  10. (
  11. [ProID] ASC,
  12. [RepCodigo] ASC
  13. )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, FILLFACTOR = 90) ON [PRIMARY]
  14. ) ON [PRIMARY]
  15.  
  16. GO
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement