use keck go /* table was keck.dbo.Mbundles */ drop table Mbundles go create table Mbundles ( mbid int NOT NULL, tmid int NOT NULL, emid int NOT NULL, eordr smallint NOT NULL, einkey char(2) NULL, opt char(1) NULL, uid smallint NULL, stamp smalldatetime NULL ) go grant select on Mbundles to public go grant delete on Mbundles to sla go grant insert on Mbundles to deimos go grant update on Mbundles to deimos go sp_primarykey Mbundles, mbid go