You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Queries to find the orphaned groups and whether they have any members in them:
SELECTn.id, n.text, m2m.*,c.ClubRouteFROM UmbracoNode n LEFT JOIN cmsMember2MemberGroup m2m ONn.id=m2m.MemberGroupLEFT JOIN StoolballClub c ONn.uniqueId=c.MemberGroupKeyWHEREn.nodeObjectTypeIN ('366E63B9-880F-4E13-A61C-98069B029728') andn.textLIKE'club/%'ANDc.ClubRoute IS NULLSELECTn.id, n.text, m2m.*, t.TeamRouteFROM UmbracoNode n LEFT JOIN cmsMember2MemberGroup m2m ONn.id=m2m.MemberGroupLEFT JOIN StoolballTeam t ONn.uniqueId=t.MemberGroupKeyWHEREn.nodeObjectTypeIN ('366E63B9-880F-4E13-A61C-98069B029728') andn.textLIKE'team/%'ANDt.TeamRoute IS NULLSELECTn.id,n.text, m2m.*, t.TeamRouteFROM UmbracoNode n LEFT JOIN cmsMember2MemberGroup m2m ONn.id=m2m.MemberGroupLEFT JOIN StoolballTeam t ONn.uniqueId=t.MemberGroupKeyWHEREn.nodeObjectTypeIN ('366E63B9-880F-4E13-A61C-98069B029728') andn.textLIKE'Team owner:%'ANDt.TeamRoute IS NULLSELECTn.id,n.text, m2m.*, c.CompetitionRouteFROM UmbracoNode n LEFT JOIN cmsMember2MemberGroup m2m ONn.id=m2m.MemberGroupLEFT JOIN StoolballCompetition c ONn.uniqueId=c.MemberGroupKeyWHEREn.nodeObjectTypeIN ('366E63B9-880F-4E13-A61C-98069B029728') andn.textLIKE'competition/%'ANDc.CompetitionRoute IS NULLSELECTn.id,n.text, m2m.*, ml.MatchLocationRouteFROM UmbracoNode n LEFT JOIN cmsMember2MemberGroup m2m ONn.id=m2m.MemberGroupLEFT JOIN StoolballMatchLocation ml ONn.uniqueId=ml.MemberGroupKeyWHEREn.nodeObjectTypeIN ('366E63B9-880F-4E13-A61C-98069B029728') andn.textLIKE'location/%'ANDml.MatchLocationRoute IS NULLSELECTn.id,n.text, m2m.*, s.SchoolRouteFROM UmbracoNode n LEFT JOIN cmsMember2MemberGroup m2m ONn.id=m2m.MemberGroupLEFT JOIN StoolballSchool s ONn.uniqueId=s.MemberGroupKeyWHEREn.nodeObjectTypeIN ('366E63B9-880F-4E13-A61C-98069B029728') andn.textLIKE'school/%'ANDs.SchoolRoute IS NULL
The text was updated successfully, but these errors were encountered:
Queries to find the orphaned groups and whether they have any members in them:
The text was updated successfully, but these errors were encountered: