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
posta un anno fa578 visualizzazioni
1 Risposta
0
Risposta accettata

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
con risposta un anno fa
  • Wonderful! Thank you for the quick response!

Accesso non effettuato. Accedi per postare una risposta.

Una buona risposta soddisfa chiaramente la domanda, fornisce un feedback costruttivo e incoraggia la crescita professionale del richiedente.

Linee guida per rispondere alle domande