Thank you for answer.
> It would make the output of updateSql more complex
In case of oracle and sql*plus/sqldeveloper it is possible to use connect command like this:
connect user1/pswd1@conn_str1
sql_1;
connect user2/pswd2@conn_str1
sql_2;
sql_3;
connect user1/pswd1@conn_str1
sql_4;
> Rather than setting "runAs" where you would define the username, I'm wondering if it should be "connection"
"connection" is more general solution and makes that feature even more flexible.
> It would add some confusion on what the default schema/catalog is
I think this behaviour should remain as it is today.
There must be one central schema/catalog.
Default schema/catalog location is "Default connection" which can be overrided by argument "--defaultSchemaName="
Marek