great, thank you very much!
I've tried to go through sybase doc during weekend.
I actually not knowing details how current setup is...
For sysservers, I can check..
1) select value, name from master..sysconfigures where name = 'enable cis'
2) select * from master..sysservers
3) sp_helpexternlogin <= this will show me current setup, to setup new server
Two more queries....
- "create proxy_table" < = sp_addobjectdef thing can be used as table ... is this what you meant for 4) ?
- there should be a way to setup multiple account on source dataserverTO single account on target server ..... may I know how current setup is...? Or it will be same with sp_helpexternlogin , if nothing such then no setup exists..?
Main Topics
Browse All Topics





by: Joe_WoodhousePosted on 2009-10-30 at 21:21:09ID: 25708411
http://infocenter.sybase.c om/help/in dex.jsp?to pic=/ com.s ybase.info center.dc3 2702.1502/ html/omni_ ug/title.h tm
In particular the first chapter summarises it all nicely, and the second gives you all the syntax.
As a summary, you need to:
1) ensure CIS is enabled (sp_configure "enable cis", 1)
2) ensure both ASEs know about each other (interfaces files, sp_addserver)
3) ensure you're able to connect to the remote ASE (sp_addexternlogin)
4) create a proxy table locally pointing to the remote table (create proxy_table)
All of these require DBA privileges...