Drop Postgresql database

2.2k Views Asked by At

I am trying to drop a database from aspnet(c#). But It is giving me an error: There are some connections. If I delete all the connections:

SELECT pg_terminate_backend (pg_stat_activity.pid) FROM pg_stat_activity 
WHERE pg_stat_activity.pid <> pg_backend_pid() and pg_stat_activity.datname = 'databsename';

It gives me another error: connection is lose.

It is like if i execute the sentence above, It is closing all my connections.

I use npgsql as connector.

Here my code: The code inside a button:

NpgsqlConnection _connPgComienzo = new NpgsqlConnection("my_connection_to_other_DDBB_in_the_same_server;");

    try
    {

        _connPgComienzo.Open();
        FileInfo file1 = new FileInfo(Server.MapPath("desconectar.sql"));
        string script_crear_bbdd = file1.OpenText().ReadToEnd();
        var m_createdb_cmd1 = new NpgsqlCommand(script_crear_bbdd, _connPgComienzo);
        m_createdb_cmd1.ExecuteNonQuery();
        _connPgComienzo.Close();

        _connPgComienzo.Open();
        FileInfo file2 = new FileInfo(Server.MapPath("drop_bbdd.sql"));
        string script_crear_bbdd2 = file2.OpenText().ReadToEnd();
        var m_createdb_cmd2 = new NpgsqlCommand(script_crear_bbdd2, _connPgComienzo);
        m_createdb_cmd2.ExecuteNonQuery();
        _connPgComienzo.Close();

    }
    catch (Exception ex)
    {

    }

desconectar.slq:

SELECT pg_terminate_backend (pg_stat_activity.pid) FROM pg_stat_activity 
WHERE pid <> pg_backend_pid() AND pg_stat_activity.datname = 'theDDBBIWantToDrop';

drop_bbdd.sql:

 DROP DATABASE theDDBBIWantToDrop;
1

There are 1 best solutions below

3
On

*Try to use psql to terminate your postgreSQL database

  • for that you have to create a batch file(*.bat) using c#, This .bat file must contain the following script to terminate your database connection

psql -U postgres -d postgres -c SELECT pg_terminate_backend(pg_stat_activity.pid) FROM pg_stat_activity WHERE pg_stat_activity.datname ='yourdb'

For example

Private Sub TerminateDBactivity()
    Dim strPG_dumpPath As String
    Dim strSub As String
    strPG_dumpPath = Application.StartupPath.ToString()
    strPG_dumpPath = strPG_dumpPath.Replace("\", "\\")
    Dim a As Integer = strPG_dumpPath.IndexOf(":\\", 0)
    a = a + 2
    strSub = strPG_dumpPath.Substring(0, (a - 2))
    strPG_dumpPath = strPG_dumpPath.Substring(a, (strPG_dumpPath.Length - a))
    Dim sbSB1 As New StringBuilder(strPG_dumpPath)
    sbSB1 = sbSB1.Replace("\\", vbCrLf & vbCrLf & "cd ")
    Dim sbSB2 As New StringBuilder("cd /D ")
    sbSB2 = sbSB2.Append(strSub)
    sbSB2 = sbSB2.Append(":\")
    sbSB1 = sbSB2.Append(sbSB1)
    sbSB1 = sbSB1.Append(vbCrLf & vbCrLf & "cd PG" & vbCrLf & vbCrLf)
    Dim sw As New StreamWriter(Application.StartupPath.ToString() & "\PG\pgTerminate.bat")
    If sbSB1.Length <> 0 Then
        sbSB1 = sbSB1.Append("psql -U postgres  -d postgres -c ""SELECT pg_terminate_backend(pg_stat_activity.pid) FROM pg_stat_activity WHERE pg_stat_activity.datname = '" & gStrDBName & "';")
        sw.WriteLine(sbSB1)
        sw.Dispose()
        sw.Close()
        Dim processDB As New ProcessStartInfo
        processDB.FileName = Application.StartupPath.ToString() & "\PG\pgTerminate.bat"
        processDB.WindowStyle = ProcessWindowStyle.Hidden
        Process.Start(processDB).WaitForExit()
        Cursor.Current = Cursors.Default
    End If
End Sub
  • this code will create pgTerminate.bat file in this path D:\Apps\RSTAR PGSQL DOTCONNECT\bin\Debug\PG

  • pgTerminate.bat looks like

    cd /D D:\Apps

cd RSTAR PGSQL DOTCONNECT

cd bin

cd Debug

cd PG

psql -U postgres  -d postgres -c SELECT pg_terminate_backend(pg_stat_activity.pid) FROM pg_stat_activity WHERE pg_stat_activity.datname = 'mydb';

Note : before trying code you should manually create terminate bat file and test whether its working or not