SQL Tags Historian problem

I’m not sure how to describe this problem.
My best guess is Ignition expects the history database to be at the the same location as the default database. I’m getting the errors found in my attachment.

Also, this same configuration works if the default and historical database are at the same location.

Alan
History DB 1.pdf (91.4 KB)

What steps did you take to come across this error? Are you using the built-in tag history function in the tag pens property binding, or are you bringing in the data in another way? If you’re bringing the data in another way, please outline your implementation.

It’s system.tag.queryTagHistory() that returns the error

Then the assumption is correct, when making query calls from a script, Ignition uses the default database if there is no database explicitly specified. This is because theoretically one tag can have historical data spread across different database tables.

If you put the historical provider for that tag in the path, it should get rid of the error:

paths = [ ‘[dbname]Substation X/DNP Demo Data/T1-A’ ]

That works!

Thanks.

Alan