I just want to do filter huge table with only getting my ID's. Firstly, i tried macro variable but it's exceed macro variables capacities. So i discovered the call execute method thanks to sas communities. Add your system option's code and then log likes below, ORACLE_4: Prepared: on connection 3 SELECT * FROM ORACLE_TABLE but different first name*.(Names with generic username for oracle connection) ORACLE_5: Prepared: on connection 3 SELECT VAR1,VAR2 ... VAR15 FROM ORACLE_TABLE WHERE ( ("ID IN ( ID1 , ID2 ,ID3 ) ) ) because i tried only three ID. ORACLE_6: Executed: on connection 3 SELECT statement ORACLE_5
... View more