Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Multiple users

Status
Not open for further replies.

Stripes1283

Programmer
Jun 13, 2007
28
0
0
ZA
Hi all, I am looking for an online data warehouse where i can have a single account, then have multiple users under me. Each one of those users must be able to log in and only see their uploaded data. Where i would be able to see all users under me, and each users must have his or her own log in credentials?

Any help would be much appreciated.

Kind Regards
 
Do you really mean data warehouse or something else?


About the lowest level of cloud computing resources is BLOB storage, more specifically "block BLOB storage." This provides programs with remote data stored as chunks of bytes within contianers. You can think of the BLOBs or chunks as "files" since they might contain a Wrord document, an image file, binary data, etc. The containers are similar in concept to "directories" or "folders."

Block BLOB storage often allows ranges of bytes to be read or changed, but normally programs would transfer entire BLOBs.


One of the oldest forms of this is WebDAV, an early "web service" protocol. There are WebDAV client redirectors that even allow a WebDAV root to be mounted as a network share, mapped to a Windows drive letter, etc. There are also WebDAV APIs for programmatic use that bypass such (often a little flaky) redirectors.

One easy to use WebDAV host I like is MyDrive. They offer an access-control model based on an admin user and sub-users (guests) with their own passwords. The admin can set guests' access rights to "folders" and these impact the contents of the container ("folder"). You can allow writes/uploads on one, set read-only access on another, etc.

They offer a basic free account level with limited space and one "guest" sub-user account.

Interaction can be through MyDrive's Web user interface or through a WebDAV redirector or client API.


Beyond WebDAV there are other block BLOB and page BLOB storage services from many cloud computing vendors. These tend to use more proprietary APIs and protocols though, making a vendor switch more effort than it needs to be.


Of course there are also more structured offerings out there, from key-value datastores to queues to full RDBMSs.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top