You are on page 1of 3

select distinct input_url from error_log --10017 select input_url from error_log --606618 select input_url from error_log

where input_url like '%CPDBWebServices%' --58334 8 select distinct input_url from error_log where input_url like '%CPDBWebServices% ' --https://orion.cpdb.lexmark.com/CPDBWebServices/Orion --http://localhost:8084/CPDBWebServices/Orion select error_detail from error_log where input_url like '%CPDBWebServices%' --58 3348 select distinct error_detail from error_log where input_url like '%CPDBWebServic es%' --78219 select stacktrace from error_log where input_url like '%CPDBWebServices%' --5833 48 select error_detail from error_log where input_url like '%CPDBWebServices%' and error_detail like '%GUID%' --96282 select error_detail from error_log where input_url like '%CPDBWebServices%' and error_detail like '%Material%' --253825 select error_detail from error_log where input_url like '%CPDBWebServices%' and error_detail like '%SAX%' --11691 select error_detail from error_log where input_url like '%CPDBWebServices%' and error_detail like '%hash%' --25 select error_detail from error_log where input_url like '%CPDBWebServices%' and error_detail like '%SOAP%' --4 select error_detail from error_log where input_url like '%CPDBWebServices%' and error_detail = 'Database error' --220619 select error_detail from error_log where input_url like '%CPDBWebServices%' and error_detail = 'Cannot get database connection' --902 select 96282+253825+11691+25+4+220619+902 from dual --583348 select error_detail from error_log where input_url like '%CPDBWebServices%' and error_detail not like '%SAX%' and error_detail not like '%Material%' and err or_detail not like '%GUID%' and error_detail not like '%hash%' and error_detail not like '%SOAP%' and error_ detail != 'Database error' and error_detail !='Cannot get database connection' ================================================================================ ==== select stacktrace from error_log where input_url like '%CPDBWebServices%' and error_detail like '%GUID%' --96282 select count(*) from error_log where input_url like '%CPDBWebServices%' and error_detail like '%GUID%' and stacktrace not like '%duplicate record%' --0 select count(*) from error_log where input_url like '%CPDBWebServices%' and error_detail like '%GUID%' and stacktrace like '%duplicate record%' --96282 select count(*) from error_log where input_url like '%CPDBWebServices%' and error_detail like '%Material%' and stacktrace like '%Material Id not found%' --253825 select count(*) from error_log where input_url like '%CPDBWebServices%' and error_detail like '%Material%' and stacktrace not like '%Material Id not fou nd%' --0 select stacktrace from error_log where input_url like '%CPDBWebServices%' and error_detail like '%SAX%' and stacktrace not like '%Character reference%' -1964 select count(*) from error_log where input_url like '%CPDBWebServices%' and error_detail like '%SAX%' and stacktrace like '%Invalid content%' --1955 select count(*) from error_log where input_url like '%CPDBWebServices%' and error_detail like '%SAX%' and stacktrace like '%soapenv%' --7 select count(*) from error_log where input_url like '%CPDBWebServices%'

and error_detail like '%SAX%' and stacktrace like '%soap:Body%' --1 select count(*) from error_log where input_url like '%CPDBWebServices%' and error_detail like '%SAX%' and input_url like '%soap:Envelope%' --1 select stacktrace from error_log where input_url like '%CPDBWebServices%' and error_detail like '%SAX%' and stacktrace not like '%Invalid content%' and st acktrace not like '%Character reference%' and stacktrace not like '%soapenv%' and stacktrace not like '%soap:Body%' and st acktrace not like '%soap:Envelope%' select count(*) from error_log where input_url like '%CPDBWebServices%' and error_detail like '%hash%' --25 select count(*) from error_log where input_url like '%CPDBWebServices%' and error_detail like '%hash%' and stacktrace like '%No more data to read%' --3 select count(*) from error_log where input_url like '%CPDBWebServices%' and error_detail like '%hash%' and stacktrace like '%unimplemented or unreasonab le%' --13 select count(*) from error_log where input_url like '%CPDBWebServices%' and error_detail like '%hash%' and stacktrace like '%Broken pipe%' --4 select count(*) from error_log where input_url like '%CPDBWebServices%' and error_detail like '%hash%' and stacktrace like '%Connection reset%' --4 select count(*) from error_log where input_url like '%CPDBWebServices%' and error_detail like '%hash%' and stacktrace like '%Software caused connection abort%' --1 select stacktrace from error_log where input_url like '%CPDBWebServices%' and error_detail like '%hash%' and stacktrace not like '%unimplemented or unreas onable%' and stacktrace not like '%No more data to read%' and stacktrace not like '%Broken pipe%' and stacktrace not like '%Connection res et%' and stacktrace not like '%Software caused connection abort%' select count(*) from error_log where input_url like '%CPDBWebServices%' and error_detail like '%SOAP%' and stacktrace like '%SOAPAction is missing%' --4 select stacktrace from error_log where input_url like '%CPDBWebServices%' and error_detail like '%SOAP%' select count(*) from error_log where input_url like '%CPDBWebServices%' and error_detail = 'Database error' and stacktrace like '%ORA-00001%' --5482 select count(*) from error_log where input_url like '%CPDBWebServices%' and error_detail = 'Database error' and stacktrace like '%internal representatio n%' --458 select count(*) from error_log where input_url like '%CPDBWebServices%' and error_detail = 'Database error' and stacktrace like '%cannot insert NULL%' -403 select count(*) from error_log where input_url like '%CPDBWebServices%' and error_detail = 'Database error' and stacktrace like '%Already closed%' --4 select count(*) from error_log where input_url like '%CPDBWebServices%' and error_detail = 'Cannot get database connection' and stacktrace like '%pool e rror%' --893 select stacktrace from error_log where input_url like '%CPDBWebServices%' and error_detail = 'Cannot get database connection' and stacktrace not like '%po ol error%' select count(*) from error_log where input_url like '%CPDBWebServices%' and error_detail = 'Cannot get database connection' and stacktrace like '%ORA-01 033%' --9 =============================================== select stacktrace from error_log where input_url like '%CPDBWebServices%' and error_detail = 'Database error' and stacktrace not like '%ORA-00001%' and st acktrace not like '%internal representation%'

and stacktrace not like '%cannot insert NULL%' and stacktrace not like '%Already closed%'

You might also like