- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Posted 05-08-2019 06:30 AM
(697 views)
Hi All,
I am looking for a procedure or some way to update a DB2 table in a DB2 library from another DB2 table in a SAS librray.
The DB2 table which is in DB2 library which needs updating is empty.
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
If both tables are located in the DBMS, use explicit pass-through to avoid transfer of data to and from SAS.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Thanks for your reply Kurt
How do I do that
How do I do that
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Within proc sql, use connect to connect to the DBMS, execute to run the command there, and disconnect to terminate the connection.