SQL Server Migration Assistant: Getting Started

Years ago I was involved in migrating some databases from Sybase ASE to Microsoft SQL Server. The process was a manual one. We had to BCP out the data from ASE into flat files, we had to parse the stored procedures for what would be obvious syntax errors in Microsoft SQL Server, we had to track … Read more

HOW TO: Trace Statements Without SQL Profiler

I came across an interesting scenario last week, someone needed to trace statements and they didn’t have SQL Profiler installed. Turns out they don’t actually need SQL Profiler in order to trace the statements hitting the instance. There is a trace flag (4032) that can be used to trace statements. When used with 3605, you … Read more