thnx.
I hope u need to get the result of two table from two database . You can create a view with three part qualified name.
Create view yourviewname
as
Select *from Databasename1.owner.tablename where ......
Union /Join
Select *from Databasename2.owner.tablename where ......
basically you need to give fully qualifed tablename . The user accessing this view should have permission in both the dbs
Madhu
|||thanks. its up and running...
No comments:
Post a Comment