Guest User

Untitled

a guest
May 16th, 2018
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. -- Count Layers per Map document
  2. SELECT
  3. count(LYR_Name) AS Count,
  4. LYR_Name,
  5. LYR_Path
  6. FROM Layers
  7. --where LYR_Path like 'C:%'
  8. GROUP BY
  9. LYR_Name,
  10. LYR_Path
  11. ORDER BY Count
  12. DESC
Add Comment
Please, Sign In to add comment