Viewing 5 posts - 1 through 5 (of 5 total)
Peter,
A thousand thanks! It looks and tests out nicely. I have a few minor issues that I think I can work out.
Jake
June 30, 2006 at 7:25 am
Here it is.
Thanks,
Jake
create procedure spGetNextSurrogateKey @iTableName VARCHAR(30),
@oNewKey int output
As
begin transaction
UPDATE tciSurrogateKey
SET NextKey = CASE NextKey
WHEN 2147483647 THEN 1
ELSE NextKey + 1
...
June 30, 2006 at 5:47 am
Hi Peter,
Thanks for the suggestion, however, I noticed that you have modified 'exec spGetNextSurrogateKey..' to
'Select dbo.fnGetNextSurrogateKey...' Do I need to create this fn? If I run your script against...
June 30, 2006 at 4:25 am
I think I found my issue. I was Installing using 'sa' -SQL security. 'sa' on my laptop did not have a password. So, I run install again using Windows Authentication(assinged a...
May 17, 2006 at 3:44 am
I am currently having issues. The install seems to be hanging. It's been running for over an hour. Screen appears frozen at Updating Your System, Spawning Instances.
Thanks,
Jake
May 16, 2006 at 9:06 pm
Viewing 5 posts - 1 through 5 (of 5 total)