there´s no problem in making your primary key from various fields, thats a Natural Key.
You can use a Identity column (associated with a unique index on the candidate fields) to make a Surrogate Key.
That´s a old discussion. I prefer surrogate keys in most situations.
But there´s no excuse for the lack of a key
RE: EDIT
yeah, there´s a lot of controversy about that :D
I don´t see any obvious advantage on natural keys, besides the fact that it is the natural choice. You will always think in Name, SocialNumber - or something like that - instead of idPerson.
Surrogate keys are the answer to some of the problems that natural keys have (propagating changes for example).
As you get used to surrogates, it seems more clean, and manageable.
But in the end, you´ll find out that its just a matter of taste - or mindset -. People "think better" with natural keys, and others don´t.
