Help
  • Explore Community
  • Get Started
  • Ask the Community
  • How-To & Best Practices
  • Contact Support
Notifications
Login / Register
Community
Community
Notifications
close
  • Forums
  • Knowledge Center
  • Events & Webinars
  • Ideas
  • Blogs
Help
Help
  • Explore Community
  • Get Started
  • Ask the Community
  • How-To & Best Practices
  • Contact Support
Login / Register
Sustainability
Sustainability

We Value Your Feedback!
Could you please spare a few minutes to share your thoughts on Cloud Connected vs On-Premise Services. Your feedback can help us shape the future of services.
Learn more about the survey or Click here to Launch the survey
Schneider Electric Services Innovation Team!

Query Time-out error

EcoStruxure Geo SCADA Expert Forum

Schneider Electric support forum about installation, configuration, integration and troubleshooting of EcoStruxure Geo SCADA Expert (ClearSCADA, ViewX, WebX).

cancel
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Home
  • Schneider Electric Community
  • Remote Operations
  • EcoStruxure Geo SCADA Expert Forum
  • Query Time-out error
Options
  • Subscribe to RSS Feed
  • Mark Topic as New
  • Mark Topic as Read
  • Float this Topic for Current User
  • Bookmark
  • Subscribe
  • Mute
  • Printer Friendly Page
Invite a Co-worker
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 Invite Cancel
Invitation Sent
Your invitation was sent.Thanks for sharing Exchange with your co-worker.
Send New Invite Close
Top Experts
User Count
sbeadle
Kirk sbeadle Kirk
308
AndrewScott
Admiral AndrewScott
96
BevanWeiss
Spock BevanWeiss
91
AdamWoodlandToo
Lt. Commander AdamWoodlandToo
37
View All
Related Products
product field
Schneider Electric
EcoStruxure™ Geo SCADA Expert

Invite a Colleague

Found this content useful? Share it with a Colleague!

Invite a Colleague Invite
Back to EcoStruxure Geo SCADA Expert Forum
Clearscada_EIT
Ensign Clearscada_EIT
Ensign

Posted: ‎2023-03-02 10:15 AM . Last Modified: ‎2023-05-02 11:47 PM

0 Likes
4
1039
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2023-03-02 10:15 AM . Last Modified: ‎2023-05-02 11:47 PM

Query Time-out error

I'm trying to run a query on the event Journal table, the query runs fine and it shows the result in the list, but it take little long to get the data to show up in the list because it's looking at 6 Months of date from the table . However, when I try to Server.query property in my script,

it splits out this error and returns ZERO row ( screenshot attached). Looks like it's caused by timeout error

Please help , thanks

Attachments
Labels
  • Labels:
  • Logic
  • Mimics
  • SCADA
  • Scripting
  • ViewX
  • Tags:
  • english
  • scada
  • SCADA app
  • SCADA software
  • SCADA tutorial
  • Telemetry and SCADA
Reply

Link copied. Please paste this link to share this article on your social media post.

  • All forum topics
  • Previous Topic
  • Next Topic
Replies 4
sbeadle
Kirk sbeadle Kirk
Kirk

Posted: ‎2023-03-03 03:51 AM

0 Likes
0
1025
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2023-03-03 03:51 AM

The web request can time out before the query execution time is reached. While there may be a way to extend this, I would recommend looking at the query and optimising it, perhaps shorten the duration over which is searches, or simplify/remove wildcarding which causes additional searching. There's a time that users are prepared to wait for data, which is why web requests time out is not a bad thing.

Reply

Link copied. Please paste this link to share this article on your social media post.

Clearscada_EIT
Ensign Clearscada_EIT
Ensign

Posted: ‎2023-03-03 08:24 AM

0 Likes
0
1016
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2023-03-03 08:24 AM

Thanks for your response 

My client is fully aware of the system might potentially overload if the query takes too long to execute. However, they still insists on 6 MON time interval. What's the best way to extend the execution time?

thanks

Reply

Link copied. Please paste this link to share this article on your social media post.

geoffpatton
Captain geoffpatton
Captain

Posted: ‎2023-03-03 11:00 AM

1 Like
1
1005
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2023-03-03 11:00 AM

Maybe this should be moved to something outside of ClearSCADA. Setup a SQL server to store this information it in its own database. Get the relevant existing Journal data in in small enough chunks to prevent degrading Geo SCADA's performance and then have procedures in the SQL server poll the Journal at small intervals daily for the desired data. Then the customer can view the 6 Months of data from the SQL server and not put any adverse load on the Geo SCADA database. I have seen something similar done from Microsoft SQL. The free version holds a pretty large amount of data so that might work for you. Regardless of what SQL server used you might need to implement a procedure to remove old records to manage the database size.

Reply

Link copied. Please paste this link to share this article on your social media post.

sbeadle
Kirk sbeadle Kirk
Kirk

Posted: ‎2023-03-06 01:19 AM

In response to geoffpatton
0 Likes
0
994
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2023-03-06 01:19 AM

The timeout is client-side, so I don't believe there are settings in Geo SCADA to increase it.

Geoff's suggestion is one way to handle this.

You could check if your query uses wildcard searches - they are usually less efficient, e.g. if you are looking for messages which match source FullName strings. Your client could get database IDs of columns first, then filter on those (Id = 23214 or ID = 432432 or ID = 432432) may be faster than (FullName like 'ABC%.%.D')

Reply

Link copied. Please paste this link to share this article on your social media post.

Preview Exit Preview

never-displayed

You must be signed in to add attachments

never-displayed

 
To The Top!

Forums

  • APC UPS Data Center Backup Solutions
  • EcoStruxure IT
  • EcoStruxure Geo SCADA Expert
  • Metering & Power Quality
  • Schneider Electric Wiser

Knowledge Center

Events & webinars

Ideas

Blogs

Get Started

  • Ask the Community
  • Community Guidelines
  • Community User Guide
  • How-To & Best Practice
  • Experts Leaderboard
  • Contact Support
Brand-Logo
Subscribing is a smart move!
You can subscribe to this board after you log in or create your free account.
Forum-Icon

Create your free account or log in to subscribe to the board - and gain access to more than 10,000+ support articles along with insights from experts and peers.

Register today for FREE

Register Now

Already have an account? Login

Terms & Conditions Privacy Notice Change your Cookie Settings © 2025 Schneider Electric

This is a heading

With achievable small steps, users progress and continually feel satisfaction in task accomplishment.

Usetiful Onboarding Checklist remembers the progress of every user, allowing them to take bite-sized journeys and continue where they left.

of