A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://github.com/channable/dbcritic below:

GitHub - channable/dbcritic

dbcritic finds problems in a database schema.

To run dbcritic, set the environment variables expected by libpq. Then invoke dbcritic with no arguments. For instance:

$ export PGHOST=localhost
$ export PGPORT=5432
$ export PGUSER=myuser
$ export PGDATABASE=mydatabase
$ dbcritic

dbcritic can be build with Nix or without Nix. To build it with Nix, simply invoke nix-build:

This command will make a symlink result in the current directory. dbcritic can then be called via ./result/bin/dbcritic.

To build it without Nix, first make sure you have installed Idris and libpq. Then invoke make:

This command will create a binary dbcritic-bin in the current directory.

dbcritic connects to a PostgreSQL database using the specified parameters. It then performs a series of checks and reports discovered issues. Issues may result from the cluster configuration or from the database schema.

dbcritic implements the following checks:

Check Description index_fk_ref Check that foreign key has an index on the referencing side. primary_key Check that each table has a primary key constraint. primary_key_bigint Check that integer primary keys are of type bigint. timestamptz Check that columns are of type ‘timestamptz’ rather than of type ‘timestamp’. time_zone Check that the ‘TimeZone’ parameter is set to a sensible value.

dbcritic can be configured with a file .dbcriticrc in the working directory.

dbcritic will ignore any empty lines and comment lines in the file. Comment lines begin with a hash sign (#).

dbcritic can be configured to silence certain issues with silence directives. Any issue whose identifier begins with the given prefix will not be reported. Here is an example of a silence directive:

silence index_fk_ref cache_log

This will silence any issues reported by the index_fk_ref check that pertain to the cache_log table.

If any issues were reported, dbcritic exits with status code 1. If an unrecoverable error occurred, dbcritic exits with status code 2. In any other case, dbcritic exits with status code 0.

The output is quite verbose and repetitive. Experienced users may favor more compact output. This is currently not implemented.

In the check index_fk_ref, the order of the columns in the suggested index is not always correct.

There are many more opportunities for checks.


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4