Copyright © TIBCO Software Inc. All rights reserved.
Copyright © TIBCO Software Inc. All rights reserved.


Appendix B SSOLite Stored Procedures : Debug Procedures

Debug Procedures
The following debug procedures are available:
Debug output data is stored in the following temporary table:
##SSOLITE_DEBUG_DATA (
spid integer,
message varchar(255));
The table simply holds the debug message text in inserted order. If an application has enabled debugging, a simple select * from SESSION.SSOLITE_DEBUG_DATA statement can be used to display the debug data.
Because this table is global you must store the database session id (spid) of the session that wrote this data. If multiple database sessions have debugging enabled, the data should be selected on the spid.

Copyright © TIBCO Software Inc. All rights reserved.
Copyright © TIBCO Software Inc. All rights reserved.