I am working on sql server 2005 with a linked server set up to Oracle. I can't get at the underlying account for the link. I need run the
desc <table>
command from SSIS to Oracle. I do have access to openquery. Is there a way to do this? I am guessing no but a question is easy :).
I do know that
select * from OPENQUERY(<server>,'desc <schema>.<table>') ;
doesn't work. The DBAs have been less than helpful with that, which is sad because all I need is the schema so that I can write the actual query that I need. I am open to any suggestions that might get me that answer. Thanks!
Michael.