Question

When connecting to an h2 database, the default search path is set to public. You can alter it with the SET SCHEMA_SEARCH_PATH.

But if you alter it multiple times, at some point how can you view its current content?

I wasn't able to find some kind of commands like this VIEW SCHEMA_SEARCH_PATH or SHOW SCHEMA_SEARCH_PATH.

Typing them give me error messages.

Was it helpful?

Solution

It's a bit a hack, but you could use:

SELECT * FROM INFORMATION_SCHEMA.SESSION_STATE 
WHERE KEY='SCHEMA_SEARCH_PATH'

OTHER TIPS

Non-hack solution: SELECT SCHEMA()

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top