How do I tell a tag history provider for a database connection which schema to use for creating the tag history tables and storing the tag history data?
- Example database config for “pg_ignition_dev”
- Connect URL: jdbc:postgresql://[hostname]/ignition-dev
- Username: devuser
- Extra Connection Properties: search_path=historian
- Tried this to set the historian schema as default but it did not work
- Connection Initialization Commands: SET search_path = 'historian';
- Also tried this but didn’t work
- Example Tag History Provider
- Nothing special here, just pointed it to the “pg_ignition_dev” config
How do I change away from public?