PostgreSQL
 sql >> डेटाबेस >  >> RDS >> PostgreSQL

ज़ीउस के साथ ककड़ी और आरएसपीसी परीक्षण:पोस्टग्रेज़ को अन्य उपयोगकर्ताओं द्वारा एक्सेस किया जा रहा है

इस उत्तर से प्रेरित होकर , हमने निम्नलिखित database.rake बनाया है फ़ाइल। जहां मूल उत्तर केवल PostgreSQL 9.1 के लिए काम करता है, इसे PostgreSQL 9.2 के लिए भी काम करने के लिए संशोधित किया गया है। तंत्र सबसे सुंदर नहीं है:जब 9.1 कमांड विफल हो जाता है, तो यह केवल 9.2 कमांड को निष्पादित करता है। लेकिन सबसे महत्वपूर्ण बात:यह काम करता है!

#{Rails.root}/lib/tasks/databases.rake
# monkey patch ActiveRecord to avoid There are n other session(s) using the database.
def drop_database(config)
  case config['adapter']
  when /mysql/
    ActiveRecord::Base.establish_connection(config)
    ActiveRecord::Base.connection.drop_database config['database']
  when /sqlite/
    require 'pathname'
    path = Pathname.new(config['database'])
    file = path.absolute? ? path.to_s : File.join(Rails.root, path)

    FileUtils.rm(file)
  when /postgresql/
    begin
      ActiveRecord::Base.establish_connection(config.merge('database' => 'postgres', 'schema_search_path' => 'public'))
      ActiveRecord::Base.connection.select_all("select * from pg_stat_activity order by procpid;").each do |x|
        if config['database'] == x['datname'] && x['current_query'] =~ /<IDLE>/
          ActiveRecord::Base.connection.execute("select pg_terminate_backend(#{x['procpid']})")
        end
      end
      ActiveRecord::Base.connection.drop_database config['database']
    rescue # in PG 9.2 column procpid was renamed pid and the query status is checked not using 'current_query' but using 'state'
      ActiveRecord::Base.establish_connection(config.merge('database' => 'postgres', 'schema_search_path' => 'public'))
      ActiveRecord::Base.connection.select_all("select * from pg_stat_activity order by pid;").each do |x|
        if config['database'] == x['datname'] && x['state'] =~ /idle/
          ActiveRecord::Base.connection.execute("select pg_terminate_backend(#{x['pid']})")
        end
      end
      ActiveRecord::Base.connection.drop_database config['database']
    end
  end
end


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. PostgreSQL 12 . के लिए डेटाबेस प्रबंधन और निगरानी

  2. Postgresql superuser के लिए कोई पासवर्ड संकेत नहीं

  3. PostgreSQL बनाम Linux कर्नेल संस्करण

  4. postgresql टाइमस्टैम्प से std::chrono value

  5. django.db.utils.IntegrityError:डुप्लिकेट कुंजी मान अद्वितीय बाधा का उल्लंघन करता है Spirit_category_category_pkey