Last active
August 24, 2016 12:19
-
-
Save anzekrpic/4264e981563b98bc4fdc94e4a315bd2d to your computer and use it in GitHub Desktop.
AX modelElements in models between build versions
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
select mf.name, count(*)as 'Element count' from modelelementdata med | |
join modelmanifest mf on mf.modelid = med.modelid | |
where mf.VersionBuildNo between 1000 and 3999 | |
group by mf.name |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment