Midway down Rob has this:
We've set up the IQ side now. The remaining part is to configure ASE so that we can kick off the stored procedure iq_proc_for_ase above, which resides in IQ:
-- run these steps in ASE (run as 'sa' user): sp_configure 'enable cis', 1 go -- if it was not already set to 1, shutdown & restart ASE first sp_configure 'cis rpc handling', 1 go -- now disconnect & reconnect the session -- create mapping to remote IQ server : sp_addserver MY_IQ, ASIQ, 'myiqhost:2639' go -- create externlogin: sp_addexternlogin MY_IQ, my_ase_login, my_iq_login, my_iq_passwd go -- test the connection to IQ: connect to MY_IQ go select @@version -- should show the IQ version go disconnect go -- run as user 'my_ase_login': test executing the IQ stored procedure -- from within ASE: exec MY_IQ...iq_proc_for_ase 6 go
Once that's done, use the create proxy_table command in ASE using that server you just defined and point ASE to IQ.
Hopefully that helps.
Mark