![]() | |
![]() |
| | Thread Tools | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
What does it mean when you drop a database and then recreate with the same name and all the objects are still there. I want to wipe out the db and put back from pg_restore. After I re-create the db, all the old tables are back before I run pg_restore. |
#3
| |||
| |||
|
|
Robert Fitzpatrick <robert (AT) webtent (DOT) com> writes: What does it mean when you drop a database and then recreate with the same name and all the objects are still there. I want to wipe out the db and put back from pg_restore. After I re-create the db, all the old tables are back before I run pg_restore. Check the 'template1' database to see if the tables got put in there by mistake at some point. |
#4
| |||
| |||
|
|
On Thu, 2004-11-11 at 14:03, Doug McNaught wrote: Robert Fitzpatrick <robert (AT) webtent (DOT) com> writes: What does it mean when you drop a database and then recreate with the same name and all the objects are still there. I want to wipe out the db and put back from pg_restore. After I re-create the db, all the old tables are back before I run pg_restore. Check the 'template1' database to see if the tables got put in there by mistake at some point. Yeah, I was just starting to realize that these objects that keep coming back are in the template1 as well.....any reason why I shouldn't drop the template1 and re-create like any other? |
#5
| |||
| |||
|
|
Yeah, I was just starting to realize that these objects that keep coming back are in the template1 as well.....any reason why I shouldn't drop the template1 and re-create like any other? |
#6
| |||
| |||
|
|
Robert Fitzpatrick <robert (AT) webtent (DOT) com> writes: Yeah, I was just starting to realize that these objects that keep coming back are in the template1 as well.....any reason why I shouldn't drop the template1 and re-create like any other? You can do that but you'll have to do: CREATE DATABASE template1 WITH template = 'template0' |
![]() |
| Thread Tools | |
| Display Modes | |
| |