sql >> データベース >  >> RDS >> PostgreSQL

選択または作成ステートメントのデータベース列

    Postgres 12以降 、制限の公式リストは、マニュアルのにあります

    Item                    Upper Limit             Comment
    ---------------------------------------------------------
    database size           unlimited     
    number of databases     4,294,950,911     
    relations per database  1,431,650,303     
    relation size           32 TB                   with the default BLCKSZ of 8192 bytes
    rows per table          limited by the number of
                            tuples that can fit onto 4,294,967,295 pages     
    columns per table       1600                    further limited by tuple size fitting on a single page; see note below
    field size              1 GB     
    identifier length       63 bytes                can be increased by recompiling PostgreSQL
    indexes per table       unlimited               constrained by maximum relations per database
    columns per index       32                      can be increased by recompiling PostgreSQL
    partition keys          32                      can be increased by recompiling PostgreSQL

    その前に、PostgresLの「About」ページに公式リストがありました Postgres 9.5の見積もり :

    Limit                       Value
    Maximum Database Size       Unlimited
    Maximum Table Size          32 TB
    Maximum Row Size            1.6 TB
    Maximum Field Size          1 GB
    Maximum Rows per Table      Unlimited
    Maximum Columns per Table   250 - 1600 depending on column types
    Maximum Indexes per Table   Unlimited
    

    これらの制限に近づく場合は、間違ったことをしている可能性があります。 。




    1. SQLServer2012のプロセッサの選択

    2. 表2から表1を更新

    3. SQL結合の究極のガイド:外部結合–パート2

    4. docker-compose rails rake db:resetが失敗し、現在開いているデータベースを削除できません