Coding
PromptBeginner5 minmarkdown
Nano Banana Pro
Agent skill for nano-banana-pro
6
This file provides guidance to Claude Code (claude.ai/code) when working with the SyncRay project.
Sign in to like and favorite skills
This file provides guidance to Claude Code (claude.ai/code) when working with the SyncRay project.
SyncRay is a PowerShell-based database synchronization tool for SQL Server that enables data migration between databases with full INSERT, UPDATE, and DELETE support. The tool is designed for flexibility, safety, and ease of use.
src/sync-export.ps1 - Exports data from source database to JSON filessrc/sync-import.ps1 - Imports/syncs data from JSON files to target databasesrc/sync-validation.ps1 - Common validation functions used by both scriptssrc/sync-config.json - Configuration file (not in git)src/sync-config.example.json - Example configuration templatesync-data/sync-validation.ps1 if needed# Test export ./src/sync-export.ps1 -From source -Tables TestTable # Test import (dry-run) ./src/sync-import.ps1 -To target -Tables TestTable # Test with specific configuration ./src/sync-export.ps1 -From source -ConfigPath ./test-config.json
$VerbosePreference = "Continue"["Field1", "Field2"]preserveIdentity: true or add to ignoreColumns