I have inherited some programming duties from my coleagues(<-spelling), with which I am given a users table structured as such:
userID BigInt (1,1)
Username Nvarchar(100)
UserPass Nvarchar(100)
Profile Nvarchar(max)
They have programmed all logic for the username/password, and the client went back to them and stated "We now want user profiles". Since the client already has control of the db, we are not allowed to mmodify existing storage objects, however, they did give us the new Profile field.
What I am wondering is this: What would be better for performance...? Are there any benchmarks anywhere?
A)Storing profile data as XML
B)Storing profile data as JSON
C)Storing profile data as a comma-delimited list
D)Other that I have not thought of...maybe store a XML file in the filesystem tied to the userID?
for any of the above, I will be typing out and breaking out into objects. Personally I would say JSON, and I can utilize the JSON.Net library
p.s. This will be in .Net 4, and SQL 2008 R2 on a Win2k8 R2 server (that is personally theirs, and very powerful)
