Hi,I understand below query is possible:SELECT count(*) FROM synth_session_records WHERE failureType = "Test location is currently unavailable" AND measurementSpec.scheduleName REGEXP "Test-job.*" But is this possible:SELECT count(*) FROM synth_sessi...
Thanks for the response Mika.Although it accepted "NOT LIKE", below query worked:SELECT count(*) FROM synth_session_records WHERE failureType = "Test location is currently unavailable" AND measurementSpec.scheduleName NOT LIKE "Equity*".Note the miss...
Is there any limit on the # of characters for SQL query?
We increased to 2000 and these are still truncated and I have been requested to change to 4000.