-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdropdb.py
67 lines (52 loc) · 1.76 KB
/
dropdb.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
import os
from dotenv import load_dotenv
import psycopg2
import time
load_dotenv()
credentials = [os.getenv("DB_HOST"), os.getenv("DB_PORT"), os.getenv("DB_USER"), os.getenv("DB_PASSWORD"), os.getenv("DB_NAME")]
# RDS connection parameters
RDS_HOST = credentials[0]
RDS_PORT = credentials[1]
RDS_USER = credentials[2]
RDS_PASSWORD = credentials[3]
# Database names
OLD_DB = "mtgo_data_collection"
NEW_DB = "mtgo_vintage_metagame"
def execute_query(conn, query):
"""Execute a SQL query and commit changes."""
with conn.cursor() as cur:
cur.execute(query)
conn.commit()
try:
# Connect to the default "postgres" database to drop/create databases
conn = psycopg2.connect(
dbname="postgres", user=RDS_USER, password=RDS_PASSWORD, host=RDS_HOST, port=RDS_PORT
)
conn.autocommit = True # Required for DROP/CREATE DATABASE commands
# Terminate all active connections to the old database
print(f"Terminating active connections to {OLD_DB}...")
execute_query(
conn,
f"""
SELECT pg_terminate_backend(pg_stat_activity.pid)
FROM pg_stat_activity
WHERE pg_stat_activity.datname = '{OLD_DB}'
AND pid <> pg_backend_pid();
"""
)
# Wait a moment to ensure all sessions are closed
time.sleep(2)
# Drop the old database
print(f"Dropping database {OLD_DB}...")
execute_query(conn, f"DROP DATABASE IF EXISTS {OLD_DB};")
# Wait a few seconds to ensure it’s fully removed
time.sleep(2)
# Create the new database
print(f"Creating new database {NEW_DB}...")
execute_query(conn, f"CREATE DATABASE {NEW_DB};")
print("Database rename completed successfully.")
except psycopg2.Error as e:
print(f"Error: {e}")
finally:
if conn:
conn.close()