Hi,
My VTScada application uses a 3rd-Party database (MySQL). I'm trying to retrieve a tablename using this query:
SELECT tablename FROM friendlyTagNameLookup WHERE friendlyName = 'MyTag';
Unfortunately, this query returns null. Upon looking directly in the database, I can see that the table 'friendlytagnamelookup' is incomplete. Some tags are present and others are missing. I tried adding manual data to some tags (inside VTScada) and see if they would be added to 'friendlytagnamelookup', to no avail.
I'd like to know what trigger the insertion of tags in that table so I could make sure it is up to date before I try to query it.
Hi,
My VTScada application uses a 3rd-Party database (MySQL). I'm trying to retrieve a tablename using this query:
````
SELECT tablename FROM friendlyTagNameLookup WHERE friendlyName = 'MyTag';
````
Unfortunately, this query returns null. Upon looking directly in the database, I can see that the table 'friendlytagnamelookup' is incomplete. Some tags are present and others are missing. I tried adding manual data to some tags (inside VTScada) and see if they would be added to 'friendlytagnamelookup', to no avail.
I'd like to know what trigger the insertion of tags in that table so I could make sure it is up to date before I try to query it.