Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是甲骨文的新手。我有一个使用 dblink 引用的表,比如 MY_TABLE@MY_DBLINK。假设 MY_TABLE 具有 COLUMN_1、COLUMN_2 等列。如何编写查询以返回列名?
我尝试使用 DESCRIBE MY_TABLE@MY_DBLINK。但它显示错误为“错误:对象 MY_TABLE 不存在”。但我可以使用 SELECT 显示同一个表的内容。
select column_name from all_tab_columns@MY_DBLINK where table_name = 'MY_TABLE'