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
asked a year ago547 views
1 Answer
0
Accepted Answer

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
answered a year ago
  • Wonderful! Thank you for the quick response!

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions