When I make a database change, how do I know what needs to be removed and readded to the LinqToSql O
Posted
by Michael Maddox
on Stack Overflow
See other posts from Stack Overflow
or by Michael Maddox
Published on 2009-06-05T14:24:06Z
Indexed on
2010/03/31
22:03 UTC
Read the original article
Hit count: 396
For example, I alter a column in a table to be not null from null.
I need to then delete and readd the table. That part is pretty clear.
What about views, functions, and stored procedures that access the table, especially that column in the table?
I've tried running diffs against the files generated by SQLMetal with some limited success, but even with that it's fairly unclear.
I know there is at least one commercial tool out there that claims to address this problem, but I am looking for something free.
How are people dealing with this issue?
© Stack Overflow or respective owner