Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Can I create DB link to a view

Status
Not open for further replies.

syncdba

IS-IT--Management
Nov 28, 2005
206
US
Hi I have create a view
create or replace view stage_learners_v as
select cu.user_no as Internal_Learner_Identifier,
cu.employee_no as Emolpoyee_Number,
null Status,
null Manager_User_name,
cu.user_type as Employee_Type,
null Job_Type,
null Legal_Entity_Code,
jt.job_name as Title,
cu.first_name as First_Name
from boniva.CORP_USERS CU,
boniva.COUNTRY_LIST CL,
boniva.JOB_TITLE jt,
boniva.CORP_DEPT cd,
boniva.COMPANY C
where CU.COUNTRY=to_char(CL.COUNTRY_ID(+))
and CU.JOB_TITLE=JT.JOB_ID(+)
and CU.DEPT_NO=CD.DEPT_NO(+)
and CU.COMPANY_NO=C.COMPANY_ID..
I have created a VIEW in BONIVA with boniva columns.
Can I make a database link on this view & create this same view in another database say(tp2)..
Or Is there any other way I can use one DB columns & use them in other DB.
Thanks,
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top