For instance, if I log into Vertica as the user dbadmin and I want to query the employee_zip_dim table in the cognos schema, normally I would have to write the following query in the Toad SQL editor window:
Code: Select all
SELECT * FROM cognos.employee_zip_dim;
- ConnSettings=SET SEARCH_PATH TO "$user", cognos, public, v_catalog, v_monitor, v_internal
If I reconnect I'll only have to type:
Code: Select all
SELECT * FROM employee_zip_dim;