use keck go /* table was keck.dbo.Mcontexts */ drop table Mcontexts go create table Mcontexts ( mcontext char(16) NOT NULL, descrip varchar(255) NULL, author varchar(40) NULL, stamp smalldatetime NULL, instrument char(12) NULL, subsystem char(20) NULL, org char(20) NULL, doc char(40) NULL, authority char(40) NULL ) go grant select on Mcontexts to public go grant insert on Mcontexts to deimos go grant update on Mcontexts to deimos go sp_primarykey Mcontexts, mcontext go