I want to retrieve column names from a table through a db link but I'm not able to do it...
Although this query is working
SELECT *
FROM myTableName@myDbLink;
the following one is not:
SELECT column_name
FROM all_tab_columns@myDbLink
WHERE table_name = 'myTableName'
What's the correct way of retrieving the column names?