Array
(
    [code] => 942
    [message] => ORA-00942: a tabela ou view não existe
    [offset] => 84
    [sqltext] => select c.*, o.sigla
                  from concurso c
                  left join orgao o on o.id = c.id_orgao
                 where (c.tipo = :p_tipo)
                   and (c.publicado = 1)
                   and (c.data_publicacao is not null)
                   and (c.hora_publicacao is not null)
                   and TO_DATE((to_char(c.data_publicacao, 'dd/mm/YYYY') || ' ' ||
                               c.hora_publicacao),
                               'DD/MM/YYYY HH24:MI:SS') <= SYSDATE
                 order by c.id desc
)