Activates data collection and shows the IO statistics data of the session.
1 connection.getPerformanceInformation
<connection.getPerformanceInformation />
Returns | |
---|---|
Type | Description |
String | IO statistics data. |
Example
Shows the IO statistics data of the session.
Copy
<xsql-script name='sample_dba'> <body> <!-- Initiates the data catcher --> <connection.getPerformanceInformation /> <!-- Initiates the data catcher showing IO statistics READ+WRITE+SCANS of the session --> <println> <connection.getPerformanceInformation /> </println> </body> </xsql-script>