There are two ways this could be done. First using custom variables. You would define a custom variable such as "useraccount". And then for each user you would assign a unique value. Then when a page "owned" by that user is viewed, you modify the tracking code to include the unique value for the custom variable associated with the user that owns the page. Then when you want to do reporting you would run your queries (using the Google Analytics API) and set a filter against the value for the custom variable corresponding to that user.
A second approach, as "Devin M" explained, is based on the URL (or page path). If your users only have one page then this could be feasible. But if they may have multiple pages this would get very tricky. Because you would then be writing very complex queries against the API for the pages owned by that user account.
I have been building in "CMS Support" into a service I created called EmbeddedAnalytics. EmbeddedAnalyitcs started as a service integrating with the Google Analytics API, allowing publishers to define charts against their GA data and then embedding them into their site. As the product has matured, I have gained a lot of interest from CMS type developers who want a way to provide statistical charts for the users. And we have been slowly building in support to meet their needs.