When I go to FreeSQL, with or without logging in, I end up in my own (initially empty) schema. Nearly all examples in the SQL Reference Manual leave out “HR.” etc., from in front of table names, so they don't work with CURRENT_SCHEMA pointing to my own schema. If I set current_schema=HR, for example, that only applies for the current execute-SQL step, as FreeSQL is apparently stateless from one execution to the next. Is there some simple way that I'm missing that external users can run our documentation examples as-is? If not, can we make this easier for them? One example of such a solution, for queries, only, would be to provide them a quick script to create synonyms pointing to those sample databases, so once they create those synonyms in their own schema, queries to the other schemas run as-is, at least so long as multiple schemas aren't sharing table names. Another slightly more complicate solution would be to ahve scripts to copy sample schemas (*completely*, including constraints, annotations, indexes, etc.) into their own schema (good if they create a permanent login), so all examples should work, including examples that require DML and DDL provileges on the example schema. Unless I'm missing something simple, it seems like we could do a lot to make our examples easier for external users to try out.