11

I am using Python with psycopg2 and I'm trying to run a full VACUUM in python script. The problem is that when I try to run the VACUUM command within my code I get the following error:

psycopg2.InternalError: VACUUM cannot run inside a transaction block

The line which am trying to execute is:

sql="vacuum full table_name;"

cur.execute(sql)

How to resolve this error?

1 Answer 1

16

Psycopg2 starts a new transaction for each call to .execute().

Open an autocommit connection to handle a vacuum.

Read about autocommit in the documentation.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.