June 1, 2004 at 8:26 am
We got linked the Orcale server from SQL 2K, is there any way to find out what fields are available on oracle server for table or view.
Any ideas would be helpful to me.
Thanks.
June 1, 2004 at 11:26 am
select * from <linked oracle server name>..SYS.DBA_TAB_COLUMNS where table_name = <your table name>;
June 1, 2004 at 11:30 am
What if the oracle login does not have permissions to view this system table? Is there another way?
June 1, 2004 at 11:37 am
select * from <linked oracle server name>..SYS.ALL_TAB_COLUMNS where table_name = <your table name>;
It will give you columns of all tables you have access.
June 1, 2004 at 11:47 am
I meant all tables the oracle login has access.
June 1, 2004 at 12:01 pm
Awesome, thanks (this'll save me a few hours waiting for the information from thr Oracle DBA)
Viewing 6 posts - 1 through 5 (of 5 total)
You must be logged in to reply to this topic. Login to reply