文件名称:pgsanity:比较PostgreSQL数据库特征的脚本
文件大小:5KB
文件格式:ZIP
更新时间:2024-05-20 23:16:10
Python
数据库完整性检查 这是一个实用程序脚本,用于检查PostgreSQL数据库中的数据,前提是您有一个“引用”数据库要进行比较。 设置 创建并激活虚拟环境: $ virtualenv /path-to-venvs/pgsanity $ source /path-to-venvs/pgsanity/bin/activate 安装所需的软件包: $ pip install -r requirements.txt 工作流程 步骤1:从“参考”数据库中收集数据。 $ python explore_database.py -d postgres://username:password@localhost/reference_dbname -f reference_dbname.json 该脚本将连接到-d参数指定的数据库,并收集诸如表名,行数,主键字段的最小值和最大值之类的信息。 此信息将以JSO
【文件预览】:
pgsanity-master
----.gitignore(2KB)
----README.md(1KB)
----compare_database.py(5KB)
----utils.py(3KB)
----explore_database.py(1KB)
----requirements.txt(30B)