Help
  • Get started
  • Ask the Community
  • How-To & Best Practices
  • Contact Support
Login / Register
Brand Logo
Help
  • Get started
  • Ask the Community
  • How-To & Best Practices
  • Contact Support
close
  • Community Home
  • Forums
    • By Topic
    • By Topic
      EcoStruxure Building
      • Field Devices Forum
      • SmartConnector Forum
      EcoStruxure Power & Grid
      • Gateways and Energy Servers
      • Metering & Power Quality
      APC UPS, Critical Power, Cooling and Racks
      • APC UPS Data Center & Enterprise Solutions Forum
      • APC UPS for Home and Office Forum
      EcoStruxure IT
      • EcoStruxure IT forum
      • EcoStruxure IT™ Advisor CFD
      Remote Operations
      • EcoStruxure Geo SCADA Expert Forum
      • Remote Operations Forum
      Industrial Automation
      • Alliance System Integrators Forum
      • AVEVA Plant SCADA Forum
      • CPG Expert Forum DACH
      • EcoStruxure Automation Expert / IEC 61499 Forum
      • Fabrika ve Makina Otomasyonu Çözümleri
      • Harmony Control Customization Forum
      • Industrial Edge Computing Forum
      • Industry Automation and Control Forum
      • Korea Industrial Automation Forum
      • Machine Automation Forum
      • Modicon PAC Forum
      • PLC Club Indonesia
      Schneider Electric Wiser
      • Schneider Electric Wiser Forum
      Power Distribution IEC
      • Eldistribution & Fastighetsautomation
      • Elektrik Tasarım Dağıtım ve Uygulama Çözümleri
      • Paneelbouw & Energie Distributie
      • Power Distribution and Digital
      • Solutions for Motor Management
      • Specifiers Club ZA Forum
      • Електропроектанти България
      Power Distribution NEMA
      • Power Monitoring and Energy Automation NAM
      Power Distribution Software
      • EcoStruxure Power Design Forum
      • LayoutFAST User Group Forum
      Energy & Sustainability Services
      • Green Building Scoring and Certification Forum
      Light and Room Control
      • SpaceLogic C-Bus Forum
      Solutions for your Business
      • Solutions for your Business Forum
      Support
      • Ask the Community
  • Knowledge Center
    • Building Automation Knowledge Base
    • Remote Operations Devices Knowledge Base
    • Geo SCADA Knowledge Base
    • Industrial Automation How-to videos
    • Digital E-books
    • Success Stories Corner
  • Events & Webinars
    • All Events
    • Innovation Talks
    • Innovation Summit
    • Let's Exchange Series
    • Partner Success
    • Process Automation Talks
    • Technology Partners
  • Ideas
    • EcoStruxure Building
      • EcoStruxure Building Advisor Ideas
      Remote Operations
      • EcoStruxure Geo SCADA Expert Ideas
      • Remote Operations Devices Ideas
      Industrial Automation
      • Modicon Ideas & new features
  • Blogs
    • By Topic
    • By Topic
      EcoStruxure Power & Grid
      • Backstage Access Resources
      EcoStruxure IT
      • EcoStruxure IT™ Advisor CFD
      Remote Operations
      • Remote Operations Blog
      Industrial Automation
      • Industrie du Futur France
      • Industry 4.0 Blog
      Power Distribution NEMA
      • NEMA Power Foundations Blog
      Energy & Sustainability Services
      • Active Energy Management Blog
      Light and Room Control
      • KNX Blog
      Knowledge Center
      • Digital E-books
      • Geo SCADA Knowledge Base
      • Industrial Automation How-to videos
      • Remote Operations Devices Knowledge Base
      • Success Stories Corner
  • companyImpact

How queries are optimised and executed by ViewX

Geo SCADA Knowledge Base

Access vast amounts of technical know-how and pro tips from our community of Geo SCADA experts.

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
  • Communities
  • Knowledge Center
  • Geo SCADA Knowledge Base
  • How queries are optimised and executed by ViewX
Invite a Co-worker
Send a co-worker an invite to the Exchange 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 Labels
Top Labels
  • Alphabetical
  • database 32
  • Web Server and Client 31
  • Lists, Events & Alarms 21
  • WebX 19
  • Request Form 18
  • ViewX 15
  • Setup 12
  • Application Programming 12
  • Telemetry 7
  • Mimic Graphics 7
  • Downloads 6
  • Support 5
  • IoT 5
  • Drivers and Communications 4
  • security 4
  • SCADA 4
  • Geo SCADA Expert 4
  • DNP 3 3
  • IEC 61131-3 Logic 3
  • Events & Alarms 2
  • Trends and Historian 2
  • Virtual ViewX 2
  • Lists 2
  • Privacy Policy 1
  • OPC-UA 1
  • Architectures 1
  • Templates and Instances 1
  • ClearSCADA 1
  • Releases 1
  • Maps and GIS 1
  • Tools & Resources 1
  • Mobile 1
  • Geo Scada 1
  • Previous
  • 1 of 4
  • Next
Latest Blog Posts
  • Geo SCADA Expert 2022
  • Geo SCADA 2022 Operating System Support
  • Geo SCADA 2022 Upgrade Strategy
  • Geo SCADA 2022 Upgrade Notes
  • Geo SCADA 2022 Known Issues
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
sbeadle1
Spock sbeadle1 Spock
Spock
‎2021-06-09 03:57 PM
0 Likes
0
444
  • Bookmark
  • Subscribe
  • Email to a Friend
  • Printer Friendly Page
  • Report Inappropriate Content
‎2021-06-09 03:57 PM

How queries are optimised and executed by ViewX

Originally published on Geo SCADA Knowledge Base by sbeadle1 | June 10, 2021 12:57 AM

📖 Home  Back  
Queries in ClearSCADA utilize SQL (Structured Query Language) under the hood to define what data needs to be displayed and to handle the retrieval of data from the server.

When a query is displayed in, ViewX attempts to optimize the query by breaking it up and executing it in three phases.
  • ViewX asks the server to parse the query and return the query metadata (information about the columns, parameter and table type)

  • The query is 'prepared' rather than being executed in it's entirity by the server

  • The server strores a reference to this query

  • ViewX requests a dynaset outlining the results of the query.

  • The dynaset is returned if query can be appropriately optimized

  • The dynaset includes RecordId which can be used as an index to fetch other column details later.

  • The dynaset includes any columns required for sorting.

  • Lots of rows maybe returned

  • Only a subset of columns are returned. This means less data is transferred to ViewX

  • When a set of rows is on display ViewX Retrieves all of the column data for the displayed rows

  • The required 'RecordIds' are passed by parameter, this allows a "Unique By Value" optimization.


ViewX requests the query metadata


The first phase of query execution is to request the 'prepare' the query and fetch the metadata.
The following logs show ViewX requesting that a query be prepared, with GetColumnEnums, and requesting the query metadata. In this case details of 9 columns, 0 parameters and 0 table types are returned.


18-JUL-2007 09:53:03.953 05BC SCX [41] SetClientDetails( IN: Name 'ABSINTH::CQPAccess', Lcid 0x809 )
18-JUL-2007 09:53:03.953 05BC SCX [41] SetClientDetails( OUT: Features 19727, hr 0 -> Ok )
18-JUL-2007 09:53:03.953 05BC SCX [41] Prepare( IN: GetColumnEnums true )
18-JUL-2007 09:53:03.953 05BC SCX [41] SQL: '''SELECT TOP( 10000 ) "RecordId", "RecordTime" AS "~Time", "FormattedValue", "StateDesc", "QualityDesc", "ReasonDesc", "Foreground", "Background", "Blink" FROM CDBHistoric WHERE "Id" = 87 AND "~Time" BETWEEN { OPC 'Hour - 23 Hours' } AND { OP
18-JUL-2007 09:53:03.953 05BC SCX [41] SQL: C 'Hour - 23 Hours+1 Day' } ORDER BY "~Time" DESC'''
18-JUL-2007 09:53:03.953 05BC QP [42] FinalConstruct() ApartmentType 0 (STA), ThreadType 1
18-JUL-2007 09:53:03.953 05BC SCX [41] Prepare( OUT: Table 1, hr 0 -> Ok )
18-JUL-2007 09:53:03.953 05BC SCX [41] GetMetadata( IN: Table 1 )
18-JUL-2007 09:53:03.953 05BC SCX [41] GetMetadata( OUT: hr 0 -> Ok, ColCount 9, ParamCount 0, TableType 0 )


The server logs show the processing of these requests.


18-JUL-2007 09:53:03.953 0A64 ]
18-JUL-2007 09:53:03.953 0A64 ]{}{
18-JUL-2007 09:53:03.953 0A64 ]
18-JUL-2007 09:53:03.953 0A64 [SCX] 1:09 Prepare( OUT: hr 0 -> Ok., TableId 0x1 )
18-JUL-2007 09:53:03.953 0A64 [SCX] 1:09 Write complete, sent 4, remaining 0
18-JUL-2007 09:53:03.953 0A64 [SCX] 1:09 Read blocked, received 0
18-JUL-2007 09:53:03.953 0A64 [SCX] 1:09 Read blocked, received 0
18-JUL-2007 09:53:03.953 0A64 [SCX] 1:09 Read complete, received 8
18-JUL-2007 09:53:03.953 0A64 [SCX] 1:09 GetMetadata( IN: TableId 0x1 )
18-JUL-2007 09:53:03.953 0A64 [SCX] 1:09 GetMetadata( OUT: hr 0 -> Ok., ColumnCount 9, ParamCount 0, TableType 0 )
18-JUL-2007 09:53:03.953 0A64 [SCX] 1:09 Write complete, sent 2236, remaining 0


ViewX requests a dynaset outlining the results of the query


ViewX fetches a dynaset outlining the results of the query. If the query can be optimized appropriately the server returns a dynaset consists of an indexed version of the resultset. This dynaset containing a RecordID column along with any columns used in the "Order By" clause. The RecordID column can be used to uniquely identify a specific row in a table and therefore can be used at a later time to fetch details of any other required column.

The following logs show ViewX requesting the RecordID and RecordTime of all historic data entries for the point where the RecordTime is within the 24hr period.

18-JUL-2007 09:53:03.984 05BC SCX [41] Prepare( IN: GetColumnEnums false )
18-JUL-2007 09:53:03.984 05BC SCX [41] SQL: SELECT TOP( 10000 ) RecordId, RecordTime FROM CDBHISTORIC WHERE ("Id" = 87) AND (RecordTime BETWEEN { OPC 'Hour - 23 Hours' } AND { OPC 'Hour - 23 Hours+1 Day' }) ORDER BY RecordTime DESC
18-JUL-2007 09:53:03.984 05BC QP [43] FinalConstruct() ApartmentType 0 (STA), ThreadType 1
18-JUL-2007 09:53:03.984 05BC SCX [41] Prepare( OUT: Table 2, hr 0 -> Ok )
18-JUL-2007 09:53:03.984 05BC SCX [41] Execute( IN: Table 2, ParamCount 0 )
18-JUL-2007 09:53:03.984 05BC SCX [41] Execute( OUT: hr 0 -> Ok, RowsAffected 0 )
18-JUL-2007 09:53:03.984 05BC SCX [41] GetResultset( IN: Table 2, Dynaset TRUE )
18-JUL-2007 09:53:03.984 05BC SCX [41] GetResultset( OUT: hr 0 -> Ok, ColCount 0, RowCount 3 )
18-JUL-2007 09:53:03.984 05BC QP [43] FinalRelease()
18-JUL-2007 09:53:03.984 05BC SCX [41] DetachTable( IN: Table 2 )
18-JUL-2007 09:53:03.984 05BC SCX [41] DetachTable( OUT: )
18-JUL-2007 09:53:03.984 05BC QP [43] Deleted
18-JUL-2007 09:53:04.000 05BC QP [42] FinalRelease()
18-JUL-2007 09:53:04.000 05BC SCX [41] DetachTable( IN: Table 1 )
18-JUL-2007 09:53:04.000 05BC SCX [41] DetachTable( OUT: )
18-JUL-2007 09:53:04.000 05BC QP [42] Deleted


This query is executed on the server, but only a subset of the results are required. This query requires each RecordTime Field is checked to see if it is within our time constraints, therefore it is a "scan" search which can be a relatively relatively slow operation.


18-JUL-2007 09:53:03.984 0A64 [SCX] 1:09 Prepare( IN: GetColumnEnums false )
18-JUL-2007 09:53:03.984 0A64 [SCX] 1:09 SQL: SELECT TOP( 10000 ) RecordId, RecordTime FROM CDBHISTORIC WHERE ("Id" = 87) AND (RecordTime BETWEEN { OPC 'Hour - 23 Hours' } AND { OPC 'Hour - 23 Hours+1 Day' } ) ORDER BY RecordTime DESC
18-JUL-2007 09:53:03.984 0A64 [SCX] 1:09 Prepare( OUT: hr 0 -> Ok., TableId 0x2 )
18-JUL-2007 09:53:03.984 0A64 [SCX] 1:09 Write complete, sent 4, remaining 0
18-JUL-2007 09:53:03.984 0A64 [SCX] 1:09 Read blocked, received 0
18-JUL-2007 09:53:03.984 0A64 [SCX] 1:09 Read blocked, received 0
18-JUL-2007 09:53:03.984 0A64 [SCX] 1:09 Read complete, received 12
18-JUL-2007 09:53:03.984 0870 [SCX] 1:09 Execute( IN: TableId 0x2, ParamCount 0 )
18-JUL-2007 09:53:03.984 0870 [SCX] 1:09 Generating initial sources
18-JUL-2007 09:53:03.984 0870 [SCX] 1:09 Building resultset
18-JUL-2007 09:53:03.984 0870 [SCX] 1:09 Resultset complete
18-JUL-2007 09:53:03.984 0870 [SCX] 1:09 Query complete
18-JUL-2007 09:53:03.984 0870 [TRANS] 0 SyncExecute Time = 0.000512 seconds
18-JUL-2007 09:53:03.984 0870 [TRANS] 0 QP Execute
18-JUL-2007 09:53:03.984 0870 [TRANS] 0 User Guy
18-JUL-2007 09:53:03.984 0870 [TRANS] 0 ParamCount 0
18-JUL-2007 09:53:03.984 0870 [TRANS] 0 Status 0 -> Ok.
18-JUL-2007 09:53:03.984 0870 [SCX] 1:09 Execute( OUT: Hr 0 -> Ok. )
18-JUL-2007 09:53:03.984 0A64 [SCX] 1:09 Write complete, sent 4, remaining 0
18-JUL-2007 09:53:03.984 0A64 [SCX] 1:09 Read complete, received 9
18-JUL-2007 09:53:03.984 0A64 [SCX] 1:09 GetResultset( IN: TableId 0x2, Dynaset TRUE )
18-JUL-2007 09:53:03.984 0A64 [SCX] 1:09 GetResultset( OUT: hr 0 -> Ok. )
18-JUL-2007 09:53:03.984 0A64 [SCX] 1:09 Write complete, sent 244, remaining 0
18-JUL-2007 09:53:03.984 0A64 [SCX] 1:09 Read complete, received 8
18-JUL-2007 09:53:03.984 0368 [SCX] 1:09 Detach( IN : TableId 0x2 )
18-JUL-2007 09:53:03.984 0368 [SCX] 1:09 Detach( OUT: Hr 0 -> Ok. )
18-JUL-2007 09:53:03.984 0A64 [SCX] 1:09 Write complete, sent 0, remaining 0
18-JUL-2007 09:53:04.000 0A64 [SCX] 1:09 Read complete, received 8
18-JUL-2007 09:53:04.000 0870 [SCX] 1:09 Detach( IN : TableId 0x1 )
18-JUL-2007 09:53:04.000 0870 [SCX] 1:09 Detach( OUT: Hr 0 -> Ok. )
18-JUL-2007 09:53:04.000 0A64 [SCX] 1:09 Write complete, sent 0, remaining 0
18-JUL-2007 09:53:04.000 0A64 [SCX] 1:09 Read complete, received 423


ViewX requests full column data


ViewX renders the query results for the user based on the dynaset. After determining how many results are on display it goes back to the server to fetch the full column details for each row based on the RecordId's for the rows that are on display.

ViewX passes the RecordID by parameters rather than using RecordTime as this is faster.

When the screen is scrolled ViewX needs only to resend this query, passing different RecordIDs


18-JUL-2007 09:53:04.000 05BC SCX [41] Prepare( IN: GetColumnEnums false )
18-JUL-2007 09:53:04.000 05BC SCX [41] SQL: SELECT "RecordId", "RecordTime" AS "~Time", "FormattedValue", "StateDesc", "QualityDesc", "ReasonDesc", "Foreground", "Background", "Blink" FROM CDBHISTORIC WHERE RecordId = ? OR RecordId = ? OR RecordId = ?
18-JUL-2007 09:53:04.000 05BC QP [44] FinalConstruct() ApartmentType 0 (STA), ThreadType 1
18-JUL-2007 09:53:04.000 05BC SCX [41] Prepare( OUT: Table 3, hr 0 -> Ok )
18-JUL-2007 09:53:04.000 05BC SCX [41] Execute( IN: Table 3, ParamCount 3 )
18-JUL-2007 09:53:04.031 05BC SCX [41] Execute( OUT: hr 0 -> Ok, RowsAffected 0 )
18-JUL-2007 09:53:04.031 05BC SCX [41] GetResultset( IN: Table 3, Dynaset FALSE )
18-JUL-2007 09:53:04.031 05BC SCX [41] GetResultset( OUT: hr 0 -> Ok, ColCount 0, RowCount 3 )
18-JUL-2007 09:53:04.031 05BC SCX [41] AdviseSink( IN: Table 3, ColumnCount 0 )
18-JUL-2007 09:53:04.031 05BC SCX [41] SetupAdvise( IN: )
18-JUL-2007 09:53:04.031 05BC SCX [41] ApartmentType 0 (STA), ThreadType 1
18-JUL-2007 09:53:04.031 05BC Sink-App New Thread 0x5bc (With Msg Loop)
18-JUL-2007 09:53:04.031 05BC Sink-App Created Invisible Window 0x307f4
18-JUL-2007 09:53:04.031 0C34 Sink-Thr ]
18-JUL-2007 09:53:04.031 05BC Sink-App WaitForAdvise
18-JUL-2007 09:53:04.031 05BC Sink-App WaitForAdvise - OK on slot 4
18-JUL-2007 09:53:04.031 05BC SCX [41] AdviseCount 0 -> 1
18-JUL-2007 09:53:04.031 05BC SCX [41] SetupAdvise( OUT: Hr 0 -> Ok )
18-JUL-2007 09:53:04.031 05BC SCX [41] AdviseSink( OUT: hr 14009D -> Query does not support interest., Cookie 0 )
18-JUL-2007 09:53:04.031 05BC SCX [41] ClearResults( IN: Table 3 )
18-JUL-2007 09:53:04.031 05BC SCX [41] ClearResults( IN: hr 0 -> Ok )


The query execution can be seen in the server logs:


18-JUL-2007 09:53:04.000 0A64 [SCX] 1:09 Prepare( IN: GetColumnEnums false )
18-JUL-2007 09:53:04.000 0A64 [SCX] 1:09 SQL: SELECT "RecordId", "RecordTime" AS "~Time", "FormattedValue", "StateDesc", "QualityDesc", "ReasonDesc", "Foreground", "Background", "Blink" FROM CDBHISTORIC WHERE RecordId = ? OR RecordId = ? OR RecordId = ?
18-JUL-2007 09:53:04.000 0A64 [SCX] 1:09 Prepare( OUT: hr 0 -> Ok., TableId 0x3 )
18-JUL-2007 09:53:04.000 0A64 [SCX] 1:09 Write complete, sent 4, remaining 0
18-JUL-2007 09:53:04.000 0A64 [SCX] 1:09 Read complete, received 228
18-JUL-2007 09:53:04.031 0870 [SCX] 1:09 Execute( IN: TableId 0x3, ParamCount 3 )
18-JUL-2007 09:53:04.031 0870 [SCX] 1:09 Param 1: VT_BSTR 0000005701C7C91DD0A6821A00000002R
18-JUL-2007 09:53:04.031 0870 [SCX] 1:09 Param 2: VT_BSTR 0000005701C7C91DCE1216B800000001R
18-JUL-2007 09:53:04.031 0870 [SCX] 1:09 Param 3: VT_BSTR 0000005701C7C91DCB04136800000000R
18-JUL-2007 09:53:04.031 0870 [SCX] 1:09 Generating initial sources
18-JUL-2007 09:53:04.031 0870 [SCX] 1:09 Building resultset
18-JUL-2007 09:53:04.031 0870 [SCX] 1:09 Resultset complete
18-JUL-2007 09:53:04.031 0870 [SCX] 1:09 Query complete
18-JUL-2007 09:53:04.031 0870 [TRANS] 0 SyncExecute Time = 0.000540 seconds
18-JUL-2007 09:53:04.031 0870 [TRANS] 0 QP Execute
18-JUL-2007 09:53:04.031 0870 [TRANS] 0 User Guy
18-JUL-2007 09:53:04.031 0870 [TRANS] 0 ParamCount 3
18-JUL-2007 09:53:04.031 0870 [TRANS] 0 Param 0: VT_BSTR 0000005701C7C91DD0A6821A00000002R
18-JUL-2007 09:53:04.031 0870 [TRANS] 0 Param 1: VT_BSTR 0000005701C7C91DCE1216B800000001R
18-JUL-2007 09:53:04.031 0870 [TRANS] 0 Param 2: VT_BSTR 0000005701C7C91DCB04136800000000R
18-JUL-2007 09:53:04.031 0870 [TRANS] 0 Status 0 -> Ok.
18-JUL-2007 09:53:04.031 0870 [SCX] 1:09 Execute( OUT: Hr 0 -> Ok. )
18-JUL-2007 09:53:04.031 0A64 [SCX] 1:09 Write complete, sent 4, remaining 0
18-JUL-2007 09:53:04.031 0A64 [SCX] 1:09 Read complete, received 9
18-JUL-2007 09:53:04.031 0A64 [SCX] 1:09 GetResultset( IN: TableId 0x3, Dynaset FALSE )
18-JUL-2007 09:53:04.031 0A64 [SCX] 1:09 GetResultset( OUT: hr 0 -> Ok. )
18-JUL-2007 09:53:04.031 0A64 [SCX] 1:09 Write complete, sent 510, remaining 0
18-JUL-2007 09:53:04.031 0A64 [SCX] 1:09 Read complete, received 10
18-JUL-2007 09:53:04.031 0A64 [SCX] 1:09 Advise( IN: Port 5500, ClientId 41 )
18-JUL-2007 09:53:04.031 0A64 [SVRADVISE] 1:06 SendEvent: Events 1, ClientId 41, IsUnadvise false
18-JUL-2007 09:53:04.031 01A4 [SVRADVTHR] 1 SendEvent
18-JUL-2007 09:53:04.031 01A4 [SVRADVISE] 1:06 ProcessWrite-1: Events 1, Links 4
18-JUL-2007 09:53:04.031 01A4 [SVRADVISE] 1:06 ProcessWrite-2: Sent 12 bytes to ClientId 41, IsUnadvise false
18-JUL-2007 09:53:04.031 01A4 [SVRADVISE] 1:06 ProcessWrite-3: Events 0, Links 4
18-JUL-2007 09:53:04.031 0A64 [SCX] 1:09 Advise( OUT: Hr 0 -> Ok., AdviseId 1:06 )
18-JUL-2007 09:53:04.031 0A64 [SCX] 1:09 Write complete, sent 0, remaining 0
18-JUL-2007 09:53:04.031 0A64 [SCX] 1:09 Read complete, received 8
18-JUL-2007 09:53:04.031 0870 [SCX] 1:09 AdviseSink( IN: TableId 0x3 )
18-JUL-2007 09:53:04.031 0870 [SCX] 1:09 AdviseSink( OUT: hr 14009D -> Query does not support interest., Cookie 0 )
18-JUL-2007 09:53:04.031 0A64 [SCX] 1:09 Write complete, sent 4, remaining 0
18-JUL-2007 09:53:04.031 0A64 [SCX] 1:09 Read complete, received 8
18-JUL-2007 09:53:04.031 0870 [SCX] 1:09 ClearResults( IN: TableId 0x3 )
18-JUL-2007 09:53:04.031 0870 [SCX] 1:09 ClearResults( OUT: hr 0 -> Ok. )
18-JUL-2007 09:53:04.031 0A64 [SCX] 1:09 Write complete, sent 0, remaining 0


Go: Home Back
Labels
  • database

  • ViewX

Author

Biography

sbeadle1

  • Back to Stream
  • Newer Article
  • Older Article
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 forum after you log in or create your free account.
Forum-Icon

Create your free account or log in to subscribe to the forum - 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 © 2023 Schneider Electric, Inc