LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (September 2005, week 3)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Thu, 15 Sep 2005 10:48:58 -0400
Reply-To:     Maia Lesosky <lesosky@MSHRI.ON.CA>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         Maia Lesosky <lesosky@MSHRI.ON.CA>
Subject:      ods graphics error- read access violation
Content-Type: text/plain; charset="iso-8859-1"

Hello,

I am trying to use the ods graphics capability for proc genmod. I am running SAS v9 in Windows XP.

If I run the following code, everything is fine,

ods html ; ods graphics on; proc genmod data = junk; assess link; class trt id diagnose; model CD4sqrt = baseCD4sqrt trt wk8 wk12 wk24 wk36 wk48/d=normal; repeated subject=id/corrw covb type=exch; run; ods graphics off; ods html close;

However, if I try to run the code I really want

ods html ; ods graphics on; proc genmod data = junk; assess var=(wk12); class trt id diagnose; model CD4sqrt = baseCD4sqrt trt wk8 wk12 wk24 wk36 wk48/d=normal; repeated subject=id/corrw covb type=exch;

run; ods graphics off; ods html close;

I get this error

NOTE: Algorithm converged. ERROR: Read Access Violation In Task [ GENMOD ) Exception occurred at (5446E671) Task Traceback Address Frame (DBGHELP API Version 4.0 rev 5) 5446E671 04DEEA40 sasgenmo:mcn_main+0x6D671 544393A9 04DEEB28 sasgenmo:mcn_main+0x383A9 544013FF 04DEFF88 sasgenmo:mcn_main+0x3FF 67E228F2 04DEFFA0 sashost:Main+0xBE72 67E26A00 04DEFFB4 sashost:Main+0xFF80 7C80B50B 04DEFFEC kernel32:GetModuleFileNameA+0x1B4

NOTE: The SAS System stopped processing this step because of errors.

Any ideas? SAS support did not seem to have any information on this particular problem, I tried other types, like ods rtf, but the same problem occurred. I searched the SAS-L archives and found some information about the DBCS support being installed. But I did a full install, so I don't think that is the problem.

Thanks for any help, Maia


Back to: Top of message | Previous page | Main SAS-L page