I'm unable to find how to use a specific Database using the db.odbc.get key.
I'm using the Database Monitor and passing a Query to SQL. It works well enough, but it seems I cannot switch Databases.
For example, I receive "[]" if I execute the following query, which should be returning some Data.
USE tempdb;
SELECT TOP (1) [object_id]
,[name]
FROM [tempdb].[sys].[all_columns]
Is it possible to switch between Databases?
With appreciation,
I'm using the Database Monitor and passing a Query to SQL. It works well enough, but it seems I cannot switch Databases.
For example, I receive "[]" if I execute the following query, which should be returning some Data.
USE tempdb;
SELECT TOP (1) [object_id]
,[name]
FROM [tempdb].[sys].[all_columns]
Is it possible to switch between Databases?
With appreciation,
Comment