Hello, I am designing a User
table in my database. I have about 30 or so options for each user that can be either "allow" or "disallow".
My question is should I store these as 30 bit
columns or should I use a single int
column to store them and parse out each bit in my application?
Also, our database is SQL Server 2008 and 2005 (depending on environment)