I am using the following SQL code to retrieve a list of tables:
SELECT object_name
FROM user_objects
WHERE object_type = 'TABLE'
ORDER BY object_name
We are using multiple environments (Development, Test and Production). This works fine in one of our environments (Development) but returns nothing in the others. What type of access do I need for this code to work?
Regards,
Steve
SELECT object_name
FROM user_objects
WHERE object_type = 'TABLE'
ORDER BY object_name
We are using multiple environments (Development, Test and Production). This works fine in one of our environments (Development) but returns nothing in the others. What type of access do I need for this code to work?
Regards,
Steve