I need to delete employees as they wont have access and so that their name is out of the system. I can disable a user, but i cant delete them since they added pages and spaces. How can i accomplish this?
Hi Alex,
If this user has edited any content on the system, you won't be able to delete him/her. But only deactivate.
If this user has only created content, then you can associate all content created to another user and then delete him/her.
Please let us know if this helps you.
Cheers!
We've done this several times when we wanted to assign content to another LDAP user. This is our process:
update content set creator = 'tmp_user' where creator = 'del_user';
update content set lastmodifier = 'tmp_user' where lastmodifier = 'del_user';
update content set creator = 'ldap_user' where creator = 'tmp_user'; update content set lastmodifier = 'ldap_user' where lastmodifier = 'tmp_user';
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.