Hello pkr,
I'm afraid this won't be possible. With SQL pass through, the sql is executed directly by the database management system (The SQL must follow the syntax in use at dbms level). The dbms has no view on your SAS datasets.
If you want to insert data in a table, the best solution is to connect to the ODBC database using a libname statement. This should look like this:
libname dta ODBC dsn="&DbDsn";
The insert would look like this:
insert into dta.ITGCostCurves .... select ...
The "select" would be in SAS syntax.
Hope this helps,
Yoba
Message was edited by: yoba