Hello,
I am new to SAS. Is there a way to drop a database table without using SAS SQL PROC? For example, the following code snippet only deletes content from the database table but not drops the table altogether right?
sqltest ODBC uid=&sql_user pwd=&sql_pass dsn=ermll;
data test;
x='a'; y=1; output;
x='b'; y=2; output;
x='c'; y=3; output;
x='d'; y=4; output;
x='e'; y=5; output;
x='f'; y=6; output;
x='g'; y=7; output;
x='h'; y=8; output;
run;
proc print data=test; run;
/***Load Data***/
proc delete data=sqltest.test; run;
data sqltest.test;
set test;
run;
Thank you!