Does MonetDB make the current DB name (i.e. not the DBMS hostname, but the DB, or set of tables, that you connect to) available via SQL queries to some of the system table?
Asked
Active
Viewed 196 times
1 Answers
3
Yes, the env() table-producing function also has the db name, in my case 'acs'.
sql>select value from env() where name='gdk_dbname';
+-------+
| value |
+=======+
| acs |
+-------+

Hannes Mühleisen
- 2,542
- 11
- 13
-
you know a lot of awesome things – Anthony Damico Apr 09 '14 at 10:19