use keck go /* table was keck.dbo.Timing */ drop table Timing go create table Timing ( timid char(10) NOT NULL, timing char(20) NOT NULL, uid smallint NULL, stamp smalldatetime NULL ) go grant select on Timing to public go grant insert on Timing to deimos go grant delete on Timing to deimos go grant update on Timing to deimos go sp_primarykey Timing, timid go