Best practices for extending third party databases?
Posted
by Eric Watkins
on Stack Overflow
See other posts from Stack Overflow
or by Eric Watkins
Published on 2010-03-16T18:42:28Z
Indexed on
2010/03/16
18:51 UTC
Read the original article
Hit count: 286
sql-server
|database
I have a situation where our developers extended a Third party database (MS SQL) by adding tables, views, stored procedures, and functions. Recently when the vender issued updates to the database they dropped all of our custom objects. The question now is what are some best practices that will allow us to extend the third party database but keep our objects safe from future updates? My first thought is to create a separate database but then I’m stuck with fully qualifying all the references back to the original database which may cause issues promoting database changes from test to production.
© Stack Overflow or respective owner