06-07-21 12:58 PM
We have several automated processes, and only one has an issue when the production team attempts to export the session log.
"An error occurred while retrieving the logs. The request channel times out while waiting for a reply after 00:00:59. Increase the timeout value passed to the call Request or increase the Send Timeout value on the Binding. The time alotted to this operation may have been a portion of a longer timeout."
Any ideas how we can resolve this? Thank you!
07-07-21 08:32 AM
SELECT TOP (10000) [logid]
,[sessionnumber]
,[stagename]
,CONVERT(VarChar(10),[stagetype]) 'stagetype'
,[processname]
,[pagename]
,[objectname]
,[actionname]
,[result]
,[startdatetime]
,[enddatetime]
,[attributexml]
,[targetappname]
,[targetappworkingset]
,[attributesize]
FROM [BPASessionLog_NonUnicode]
WHERE sessionnumber = '$$$$'
You'll need to replace the $$$$ with the session number and I've limited it to 10,000 rows.