Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is it possible to output some text to a file (a fifo actually) from a PostgreSQL trigger written in plpgsql?

I know I could create a C trigger for that, I was wondering if it could be done in plpgsql.

share|improve this question
PL/PGSQL has no direct file access. You could use another language which could do this or you could use COPY if you want to output data. – Chris Travers Mar 19 at 2:07

1 Answer

If you don't need to append to the file (i.e. always create a new one) COPY might be an option

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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