SAS PROC GLIMMIX -- need advice for first time user



Listserve - I am working on a research project that will require the
use of SAS' new procedure PROC GLIMMIX. My DV is mortality from a
surgical procedure in a multicenter study. IVs are: demographics,
clinical variables (categorical and continuous), etc. My question to
the listserve (and hopefully a GLIMMIX expert out there) would this be
the correct SAS code if I considered the hospials as a fixed effect and
the patient as a random effect:

proc glimmix data= filename
class exposure gender sex BMIgroup agegroup carshock efgroup procstatus
MODEL death = exposure gender race age age*age agegroup /solution
dist=binary link=logit ddfm=satterth oddsratio;
RANDOM intercept / subject = patient solution;
nloptions tech=nrridg;
ods exclude solutionr;
run;

Thanks.

.