PostgreSQL dump Temp table
问题 I created a temp table in my PostgreSQL DB using the following query SELECT * INTO TEMP TABLE tempdata FROM data WHERE id=2004; Now I want to create a backup of this temp table tempdata . So i use the following command line execution "C:\Program Files\PostgreSQL\9.0\bin\pg_dump.exe" -F t -a -U my_admin -t tempdata myDB >"e:\mydump.backup" I get a message saying pg_dump: No matching tables were found Is it possible to create a dump of temp tables ? Am I doing it correctly? P.S. : I would also