A very nice post on SQLDictionary table.. telling the information about all the tables created in AX.
Courtesy: http://axnotes.blogspot.com/
If you run this query in SQL Mgmt Studio, you'll get a list of the tables in your AOT:
SELECT *
FROM SqlDictionary
WHERE fieldid = 0
AND flags <> 1
ORDER BY name
Courtesy: http://axnotes.blogspot.com/
If you run this query in SQL Mgmt Studio, you'll get a list of the tables in your AOT:
SELECT *
FROM SqlDictionary
WHERE fieldid = 0
AND flags <> 1
ORDER BY name
Comments
Post a Comment