sqlmigration-objects-reviewlisted
Install: claude install-skill vanterx/mssql-performance-skills
# sqlmigration-objects-review
## Purpose
Reviews the operational-object family of a SQL Server migration — the slice `sqlmigration-review`
dispatches here rather than checking itself. This skill owns 16 checks (M1–M16) covering whether
instance-level operational objects survive a backup/restore or log shipping/Always On AG seeding
migration, since none of these objects travel with a database backup/restore — they live in
`msdb`/`master` at the instance level and must be migrated separately.
- **SQL Agent (M1–M6)** — jobs referencing the wrong database, job owner login missing, operators
with stale notification addresses, alerts tied to error numbers not raised on target, proxy
account credential mapping, job schedule timezone drift
- **Linked Servers (M7–M9)** — provider availability on target, data source connectivity,
collation-compatible setting
- **Database Mail (M10–M11)** — mail profile/account not migrated, SMTP relay allow-list missing
the new instance
- **Backup Infrastructure (M12)** — backup device path unreachable from target
- **Custom Errors (M13)** — `sys.messages` custom error definitions not migrated
- **Server Triggers (M14)** — server-level DDL/logon triggers not migrated
- **XE Sessions (M15)** — Extended Events session definitions not migrated
- **Endpoints (M16)** — non-AG endpoints (Service Broker, SOAP legacy) not migrated
All fix recipes use native T-SQL system objects/scripts, the in-box `SqlServer` PowerShell
module, and `sqlcmd`/`bcp` —