Viewing 7 posts - 76 through 82 (of 82 total)
ChrisM@Work (3/4/2013)
prakashr.r7 (3/4/2013)
Yes...i am restricted, Chris 🙁 . This is how my functionality works. So i have to stick with it. no other option. Have to generate unique random values....
March 4, 2013 at 8:15 am
Eugene Elutin (3/4/2013)
CREATE VIEW dbo.UDFSafeNewIDBase AS SELECT NEWID() as...
March 4, 2013 at 7:52 am
Cadavre (3/4/2013)
Anyway, I guess that something like this...
March 4, 2013 at 7:49 am
IF NOT EXISTS(select * from SrcCodeMap where CodeID = @CodeID and LTRIM(RTRIM(PnxCodeValue)) = @result )
...
March 4, 2013 at 7:42 am
What ever the process, you can't generate unique random values more than allocated right, Chris ? I am just curious...
March 4, 2013 at 7:29 am
ChrisM@Work (3/4/2013)
with a view to making the entire process set-based?
INSERT INTO SrcCodeMap (JurisID, CodeID, SrcCodeValueRef, SrcCodeValue, SrcCodeDescr,...
March 4, 2013 at 7:27 am
GilaMonster (3/4/2013)
You've got no transactions in there, so every single statement is running in auto-commit, commit on completion. There's no 'uncommit' without explicit transactions.What are you trying to do here?
Yes,...
March 4, 2013 at 6:47 am
Viewing 7 posts - 76 through 82 (of 82 total)