| 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
|