Token导航 LogoToken导航TokenDH.com
运维和基础设施external-servicegithub未标认证来源可访问clear审计通过

database-migration数据库迁移

Agent Skill

用于辅助数据库表结构、查询语句、迁移脚本和数据维护任务。它适合让 Agent 分析 schema、编写 SQL、排查查询问题、整理索引或生成迁移建议。使用时需要明确数据库类型、连接环境和目标表,区分只读分析与写入变更;涉及删除、更新、迁移和批量导入时,应优先 dry-run、备份或事务保护,避免误操作。

总安装

371

周安装

15

GitHub Stars

10

下载量

116
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:database-migration(数据库迁移)
来源仓库:https://github.com/dauquangthanh/hanoi-rainbow
仓库路径:skills/database-migration
安装命令:
npx skills add https://github.com/dauquangthanh/hanoi-rainbow --skill database-migration
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/dauquangthanh/hanoi-rainbow --skill database-migration

简介

用于指导数据库跨引擎、版本或平台间的迁移流程。

  • 适合制定同构/异构迁移策略,规划最小停机方案与数据完整性保障。
  • 使用时需明确迁移类型与停机容忍度,优先采用 dump/restore 或云原生工具。
  • 安装方式:通过 npx skills add 从指定 GitHub 仓库添加,需确认权限与维护状态。
  • 注意:工具输出不能直接作为最终结论,应人工复核关键步骤与回滚计划。

SKILL.md

Database Migration

Provides comprehensive guidance for migrating databases between engines, versions, platforms, and architectures. Covers both schema and data migration with strategies for minimizing downtime and ensuring data integrity.

Migration Decision Tree

1. Identify Migration Type:

  • Same engine (PostgreSQL → PostgreSQL)? → Homogeneous migration
  • Different engine (Oracle → PostgreSQL)? → Heterogeneous migration
  • Version upgrade only? → In-place or dump/restore
  • Cloud migration? → Consider cloud-native tools

2. Assess Downtime Requirements:

3. Choose Migration Path:

Core Migration Workflow

Step 1: Assessment and Planning

Analyze Source Database:

  1. Document current database version, size, and complexity
  2. Identify dependencies (applications, services, integrations)
  3. Review schema: tables, indexes, constraints, triggers, procedures
  4. Assess data volume and growth rate
  5. Document current performance baselines

Define Requirements:

  • Migration type (homogeneous vs heterogeneous)
  • Acceptable downtime window
  • Data integrity requirements
  • Compliance and security requirements
  • Rollback criteria

Output: Migration plan with approach, timeline, and resources

Step 2: Environment Setup

Prepare Target Environment:

  1. Provision target database with appropriate sizing
  2. Configure network connectivity and security
  3. Set up monitoring and logging
  4. Create test and staging environments matching production

Prepare Migration Tools:

  • Native tools (pg_dump, mysqldump, SQL Server bcp)
  • Cloud provider tools (AWS DMS, GCP Database Migration Service)
  • Third-party tools (see tools-reference.md)

Step 3: Schema Migration

For Homogeneous Migration:

  1. Export schema using native tools
  2. Review and optimize schema for target version
  3. Apply schema to target database
  4. Verify all objects created successfully

For Heterogeneous Migration:

  1. Analyze schema compatibility issues
  2. Convert data types, stored procedures, triggers
  3. Adapt SQL dialects and syntax
  4. Test converted schema thoroughly

Load migration-types.md for engine-specific schema conversion guidance.

Step 4: Data Migration

Choose Data Migration Strategy:

Option A: Dump and Restore (Full Downtime)

1. Stop application writes
2. Create full backup of source database
3. Transfer backup to target environment
4. Restore to target database
5. Verify data integrity (row counts, checksums)
6. Update application connection strings
7. Resume operations

Best for: Smaller databases, acceptable downtime windows

Option B: Replication (Minimal Downtime)

1. Set up replication from source to target
2. Monitor replication lag until synchronized
3. Schedule cutover window
4. Stop writes briefly (minutes)
5. Verify replication is caught up
6. Promote target to primary
7. Update application connections
8. Resume operations

Best for: Large databases, minimal downtime requirements

Load zero-downtime-migration-strategies.md for advanced zero-downtime patterns.

Step 5: Validation and Testing

Validate Data Migration:

  1. Compare row counts between source and target
  2. Verify data integrity (checksums, sample queries)
  3. Test application functionality against target database
  4. Validate performance meets requirements
  5. Check all constraints, indexes, and relationships

Testing Checklist:

  • All tables migrated with correct row counts
  • Schema objects (indexes, constraints, triggers) present
  • Data types converted correctly
  • Application queries execute successfully
  • Performance meets or exceeds baseline
  • Backup and restore procedures work

Load common-issues-and-solutions.md if encountering problems.

Step 6: Cutover Planning

  1. Create detailed cutover runbook with specific timings
  2. Define rollback criteria and procedures (load rollback-procedures.md)
  3. Coordinate with stakeholders (apps, operations, business)
  4. Schedule maintenance window
  5. Prepare communication plan

Load migration-phases.md for detailed phase-by-phase execution guidance.

Step 7: Post-Migration

Immediate (Day 1):

  1. Monitor performance metrics and error rates
  2. Validate application functionality
  3. Keep source database available (read-only) as safety net
  4. Document any issues and resolutions

Short-term (Week 1-2):

  1. Continue monitoring for issues
  2. Optimize indexes and queries if needed
  3. Tune database configuration for workload
  4. Conduct parallel run if applicable

Long-term:

  1. Validate backup and restore procedures
  2. Update disaster recovery plans
  3. Document final configuration and lessons learned
  4. Decommission source database after retention period

Key Considerations

Planning Guidelines:

  • Allow 2-3x estimated time for heterogeneous migrations
  • Plan for extended parallel run period (1-4 weeks minimum)
  • Database migration often triggers application code changes
  • Coordinate with application migration when possible
  • Consider phased approach: read replica → read/write split → full cutover

Critical Success Factors:

  • ✅ Multiple backups before migration
  • ✅ Test migration in staging environment first
  • ✅ Monitor metrics during migration (lag, throughput, errors)
  • ✅ Always have rollback plan ready
  • ✅ Document all steps, issues, and decisions
  • ✅ Encrypt data in transit and at rest
  • ✅ Rotate credentials after migration

Load best-practices.md for comprehensive best practices.

Reference Files

Load these references based on specific needs:

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

27.19%
按下载量换算32

windsurf

23.13%
按下载量换算27

OpenCode

19.85%
按下载量换算23

Codex

12.55%
按下载量换算15

Antigravity

7.32%
按下载量换算8

Gemini CLI

3.59%
按下载量换算4

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills