vote up 2 vote down star
1

Right now I'm using SELECT current_query FROM pg_stat_activity;, but I noticed that the query is truncated. Can't seem to find any better way. Is there any?

flag

3 Answers

vote up 2 vote down check

I can't seem to find an easy solution to this but this post from 2002 suggests you need to adjust a setting and recompile: http://osdir.com/ml/db.postgresql.sql/2002-05/msg00088.html

link|flag
Heh, I found a similar one from 2004. Was hoping it changed over all these years though. :( – ibz Jul 16 at 3:45
: ( – Artem Russakovskii Jul 16 at 3:55
vote up 1 vote down

you can just enable statement logging in postgresql (log_statement), and check the logs.

link|flag
vote up 0 vote down

PostgreSQL 8.4 adds the parameter "track_activity_query_size". The value will still be truncated, but you can control at what length.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.