Setting default schema with Oracle

I wish to avoid putting the schema name inside each model class.

set_table_name “schemaName.tableName”

In Oracle one does this with the following statement …

alter session set current_schema = ApplicationDatabaseAccount;

How do I do this for the connection Rails makes for me?

How do I control the size of the connection pool?

Thanks,

Dennis Byrne