I have a database server with few main databases, and few dozens of small ones.
These small databases are kind of intermediary/staging databases for data import from various sources into main database. Data import is a daily task. They are all quite similar in structure as the implementation of these data imports are similar, so basically they have a configuration tables, which define mapping, conversions etc, and the data tables, which contain the results of the import.
Some time ago there have been only the handful of small ones, but now I have more then 20 of them will grow further with the number of supported data feeds.
I have just migrated all the server environment to SQL Server 2008, and having some time now for clean-up/refactoring, I am thinking to merge all of data-import databases into just one database, and use database schema
to separate them.
Question-0: Any other ideas for the described situation?
Question-1: Shall I change from a separate database
to a separate schema
?
Question-2: !!!: Any tricky thing to be careful about in database schema
implementation?
Edit-1: highlighted question-2 as the most 'unanswered' currently.