Skip to Main Content

Analytics Software

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Do not see the synonyms tables for SQL SERVER DB

User472204-OCApr 13 2017 — edited Apr 18 2017

Hi Experts,

After I create the synonyms for different data source(DB Name) in SQL SERVER, and I can see the related synonyms tables in SQL SERVER, but do not see them when I import data by RPD for using the same user. Is it ok for Oracle, not SQL SERVER DB, What happen? The synonyms is not for SQL SERVER DB? Or what I missing some steps?

– Generates Synonyms:

use [ecp_ods]
select 'create synonym ' + name + ' for [ecp_ods].[dbo].[' + name + '];'
from sys.objects where type_desc='user_table' order by name;

– Then create synonyms:
use [ecp_lcl];
create synonym acpt_typ for [ecp_ods].[dbo].[acpt_typ];

pastedImage_0.png

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details