April 12, 2012 at 9:27 am
I have a table with only two fields (columns).
strInitials - nvarchar(3)
Emp_No - int - Primary Key
However, I wish the strInitials to be unique, i.e. not repeated in the table.
Can I do this through a Constraint? What kinda of an expression might I add?
Thank you,
April 12, 2012 at 9:30 am
Ken at work (4/12/2012)
I have a table with only two fields (columns).strInitials - nvarchar(3)
Emp_No - int - Primary Key
However, I wish the strInitials to be unique, i.e. not repeated in the table.
Can I do this through a Constraint? What kinda of an expression might I add?
Thank you,
You can create a unique index on the column. However, what would you do with two of my girls if they worked for you. Both of their initials are KAP.
April 12, 2012 at 9:39 am
Hmm, that was so easy I'm embarrassed.
But then you had to go and bring reality into it.
How about KP1 and KP2? hehe
What would you suggest?
April 12, 2012 at 9:44 am
Maybe explain why you want to force something that is not naturally unique to be unique?
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
April 12, 2012 at 9:47 am
Close the two I mentioned when younger were actually K2 and K3. My oldest daughter was K1. The first names of all three of my daughters start with K.
Any way, I would not make strInitials unique. Doesn't really need to be since the emp_no is unique.
April 12, 2012 at 9:50 am
Hi Gail, hope everything is well. How are things abroad?
Ah well, since you asked. I personally would not use this as an index for the very reason you stated. My preference is the Employee Number.
However I'm working withing the constrains of the department and this department has used initials to identify people on their projects and at this point their preference is not to change. Nevertheless I'm working on that and have already suggested they change identifiers.
If this had been a new system instead of a replacement product it wouldn't even have been an option.
April 12, 2012 at 11:44 am
First thing would be to ask the department how they handle (or would handle) people with duplicate initials.
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
April 12, 2012 at 11:58 am
Yep, oddly enough that was the first thing I asked them when we got to this part.
And the answer is....
'Oh yeah, we had this problem before with a new hire. We had to change all the old ones to something else. We'll get back to you if we can switch to Emp No.'
🙂
Viewing 8 posts - 1 through 7 (of 7 total)
You must be logged in to reply to this topic. Login to reply