Viewing 7 posts - 16 through 22 (of 22 total)
Thank you for the help, I really appreciate it. I have updated my code, but I am still receiving the error regarding the select statement towards the end of my...
June 6, 2012 at 9:59 am
As for defining the purpose of this script a little more clearly, this whole thing is being used in an incredibly simple manner. I know that giving users the power...
June 4, 2012 at 4:00 pm
Thanks everyone for the comments! And again I apologize for my lack of knowledge on the subject, I am very new to sql and these forums, thanks for being patient...
May 25, 2012 at 9:36 am
The countSSN procedure runs fine, but what I am trying to do is actually physically replace the values in the table with these count values generated by the countSSN procedure....
May 25, 2012 at 9:12 am
I don't think I'm being clear enough, what I want is the procedure to run so it will replace all of the table values under ssn with COMPLETELY DIFFERENT count...
May 25, 2012 at 8:55 am
use Brett_Test
GO
if exists (select * from sysobjects where type = 'P' and name = 'countSSN')
drop procedure countSSN
GO
create procedure countSSN
as
set nocount on;
...
May 25, 2012 at 7:50 am
Thank you for your input!
SSCommitted,
There is no real correlation between the SSN and the new value ........ The purpose of this is to mask the SSN because it is considered...
May 24, 2012 at 3:22 pm
Viewing 7 posts - 16 through 22 (of 22 total)