Open joe-crawford opened 8 months ago
One possibility for wider database metadata to record could be gleaned from the sys.databases
system table, for example:
select
name,
database_id,
create_date,
compatibility_level, -- Gives the version of SQL Server installed on
collation_name
-- ... and maybe other settings...
from
sys.databases
For use in https://github.com/MauroDataMapper/mdm-standardisation, we should record the source database name in the Database profile on the imported DataModel.
aliases
value is being populated by the importer (looks like this may be sometimes populated based on the source name if the imported label is different) and update mdm-standardisation if needed.