Comment Re:Just say no, to SalesforceCRM (Score 1) 186
And there you go. If you're leaving Salesforce (or any system in favor of something new), you've already got a bit of a task ahead of you to get the data into your new system. Updating the file names would be a small part of your migration project.
You don't want to delete inactive users. If you do, what happens to all of the activities they've logged, or opportunities they've closed? Each of those items contains an ID pointing back to the user object. If you remove the user row, you end up with a bunch of records that can't display a value for who created/modified them. To work around that problem, you mark the user as inactive (freeing up a license), then create a view of just the active users. Problem solved.