Viewing 5 posts - 1 through 5 (of 5 total)
Thank you Jeff, that is what I have been leaning to as well. Seems to just make the process that much easier.
August 4, 2009 at 7:07 am
Sorry it took awhile to reply to everyone was out of town for the weekend. What I am doing is trying to create userids from a database which we...
August 3, 2009 at 7:20 am
Thanks Jack this is what I was looking for and I am now able to make sure each id is unique when making userids by combing year, last name, first...
July 31, 2009 at 3:02 pm
Here is what I am currently trying but I am having issues with it. First time trying a loop in SQL:
DECLARE @i INT
DECLARE @id VARCHAR(64)
DECLARE @newid VARCHAR(64)
DECLARE @count INT
SET...
July 31, 2009 at 12:26 pm
I do not currently have the check feature. I am using this to create the ids
insert into _userid
Select Left(p.usernumber,2) + i.lastname + Left(i.firstname,1) + COALESCE(Left(i.middlename,1),'') As userid
from dbo.person p,
dbo.id...
July 31, 2009 at 8:09 am
Viewing 5 posts - 1 through 5 (of 5 total)