views:

30

answers:

1

We use Source Safe and are migrating to Source Gear. We know that we have sql objects (procs, triggers, views, functions) that are in sql but were never added to the source code repository. What is the best way to hunt those down so I can add them?

+2  A: 

Create an empty database and execute all SourceSafe scripts on it.

Then run Sql Compare to see what's missing.

Andomar
I have the SQL toolbelt; just installed it the other day. Never thought to create an empty db and load what's in source to compare against my SQL object db
Coov