├── .gitignore ├── LICENSE ├── README.md ├── execute_all.sh └── postgresql ├── dev_postgres_database └── public │ ├── data │ └── places.sql │ ├── functions │ ├── dba_scripts.sql │ ├── udf_adjust_sequence.sql │ ├── udf_check_value.sql │ ├── udf_generate_entity_database_commments.sql │ ├── udf_kill_connections_pg3.sql │ ├── udf_kill_connections_pg4.sql │ ├── udt_general_tables_insert.sql │ ├── useful_fts_queries.sql │ ├── useful_postgis_queries.sql │ └── useful_structure_queries.sql │ └── tables │ └── places.sql └── main_database.sql /.gitignore: -------------------------------------------------------------------------------- 1 | mockdata.sql -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegolasVzla/postgresql-useful-scripts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegolasVzla/postgresql-useful-scripts/HEAD/README.md -------------------------------------------------------------------------------- /execute_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegolasVzla/postgresql-useful-scripts/HEAD/execute_all.sh -------------------------------------------------------------------------------- /postgresql/dev_postgres_database/public/data/places.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegolasVzla/postgresql-useful-scripts/HEAD/postgresql/dev_postgres_database/public/data/places.sql -------------------------------------------------------------------------------- /postgresql/dev_postgres_database/public/functions/dba_scripts.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegolasVzla/postgresql-useful-scripts/HEAD/postgresql/dev_postgres_database/public/functions/dba_scripts.sql -------------------------------------------------------------------------------- /postgresql/dev_postgres_database/public/functions/udf_adjust_sequence.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegolasVzla/postgresql-useful-scripts/HEAD/postgresql/dev_postgres_database/public/functions/udf_adjust_sequence.sql -------------------------------------------------------------------------------- /postgresql/dev_postgres_database/public/functions/udf_check_value.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegolasVzla/postgresql-useful-scripts/HEAD/postgresql/dev_postgres_database/public/functions/udf_check_value.sql -------------------------------------------------------------------------------- /postgresql/dev_postgres_database/public/functions/udf_generate_entity_database_commments.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegolasVzla/postgresql-useful-scripts/HEAD/postgresql/dev_postgres_database/public/functions/udf_generate_entity_database_commments.sql -------------------------------------------------------------------------------- /postgresql/dev_postgres_database/public/functions/udf_kill_connections_pg3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegolasVzla/postgresql-useful-scripts/HEAD/postgresql/dev_postgres_database/public/functions/udf_kill_connections_pg3.sql -------------------------------------------------------------------------------- /postgresql/dev_postgres_database/public/functions/udf_kill_connections_pg4.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegolasVzla/postgresql-useful-scripts/HEAD/postgresql/dev_postgres_database/public/functions/udf_kill_connections_pg4.sql -------------------------------------------------------------------------------- /postgresql/dev_postgres_database/public/functions/udt_general_tables_insert.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegolasVzla/postgresql-useful-scripts/HEAD/postgresql/dev_postgres_database/public/functions/udt_general_tables_insert.sql -------------------------------------------------------------------------------- /postgresql/dev_postgres_database/public/functions/useful_fts_queries.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegolasVzla/postgresql-useful-scripts/HEAD/postgresql/dev_postgres_database/public/functions/useful_fts_queries.sql -------------------------------------------------------------------------------- /postgresql/dev_postgres_database/public/functions/useful_postgis_queries.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegolasVzla/postgresql-useful-scripts/HEAD/postgresql/dev_postgres_database/public/functions/useful_postgis_queries.sql -------------------------------------------------------------------------------- /postgresql/dev_postgres_database/public/functions/useful_structure_queries.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegolasVzla/postgresql-useful-scripts/HEAD/postgresql/dev_postgres_database/public/functions/useful_structure_queries.sql -------------------------------------------------------------------------------- /postgresql/dev_postgres_database/public/tables/places.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegolasVzla/postgresql-useful-scripts/HEAD/postgresql/dev_postgres_database/public/tables/places.sql -------------------------------------------------------------------------------- /postgresql/main_database.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegolasVzla/postgresql-useful-scripts/HEAD/postgresql/main_database.sql --------------------------------------------------------------------------------