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 (February 2008, week 4)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:   Wed, 27 Feb 2008 11:58:10 -0500
Reply-To:   Jane <program.sas@GMAIL.COM>
Sender:   "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:   Jane <program.sas@GMAIL.COM>
Subject:   Weird error

I read a data table from Oracle database

When I use the following code:

data test; set abc.have; run;

Then SAS gave an error message: ERROR: Invalid sequence of commands for file abc.have.DATA.

But when I use the following code:

proc sql; create table test as select * from abc.have; quit;

Then everything is fine.

Does anyone have any idea about this error?

Thanks Jane


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