Join our "Ask Me About" community webinar on May 20th at 9 AM CET and 5 PM CET to explore cybersecurity and monitoring for Data Center and edge IT. Learn about market trends, cutting-edge technologies, and best practices from industry experts. Register and secure your Critical IT infrastructure
I want to export all point fields?
EcoStruxure Geo SCADA Expert Forum
Schneider Electric support forum about installation, configuration, integration and troubleshooting of EcoStruxure Geo SCADA Expert (ClearSCADA, ViewX, WebX).
Send a co-worker an invite to the portal.Just enter their email address and we'll connect them to register. After joining, they will belong to the same company.
You have entered an invalid email address. Please re-enter the email address.
This co-worker has already been invited to the Exchange portal. Please invite another co-worker.
Please enter email address
Send InviteCancel
Invitation Sent
Your invitation was sent.Thanks for sharing Exchange with your co-worker.
Link copied. Please paste this link to share this article on your social media post.
Posted: 2025-02-1401:35 AM
I want to export all point fields?
Someone asked me recently whether they can export all point configuration to a file so that they can compare and report on it. They asked if SELECT * FROM CDBPOINT will do that.
My answer was no, many configuration fields are in child tables descended from CDBPoint because the database is object-oriented.
Anyway, I suggested first to use the query SELECT DISTINCT TYPENAME FROM CDBPOINT to get a list of the tables in which point data is stored for the application, then use SELECT * <table> for each one.
Of course, there will be many irrelevant fields to ignore depending on what the comparison is for.