How to view a Redshift query

0

I looked at SVL_STATEMENTTEXT but in that view a query is broken up into chunks.

Lynne F
feita há um ano578 visualizações
1 Resposta
0
Resposta aceita

SVL_STATEMENTTEXT is the right place to get full query text. As you rightly noticed, when a single statement contains more than 200 characters, additional rows are created for that statement and a sequence number is assigned for each part. Sequence 0 is the first row, 1 is the second, and so on.

To get full query text from SVL_STATEMENTTEXT, you can use the below sample query

select LISTAGG(CASE WHEN LEN(RTRIM(text)) = 0 THEN text ELSE RTRIM(text) END, '') within group (order by sequence) AS query_statement 
from SVL_STATEMENTTEXT where xid=<<your transaction's xid>>
AWS
respondido há um ano
  • Wonderful! Thank you for the quick response!

Você não está conectado. Fazer login para postar uma resposta.

Uma boa resposta responde claramente à pergunta, dá feedback construtivo e incentiva o crescimento profissional de quem perguntou.

Diretrizes para responder a perguntas