Click here to Skip to main content
15,902,892 members
Home / Discussions / Database
   

Database

 
Questionembeddd query Pin
baranils25-Feb-08 8:22
baranils25-Feb-08 8:22 
GeneralRe: embeddd query Pin
Krish - KP25-Feb-08 16:33
Krish - KP25-Feb-08 16:33 
GeneralSimple admin question for user logins Pin
Leo Smith25-Feb-08 8:20
Leo Smith25-Feb-08 8:20 
GeneralRe: Simple admin question for user logins Pin
Krish - KP25-Feb-08 16:22
Krish - KP25-Feb-08 16:22 
GeneralSQL record locking (to prevent other READS?) Pin
BungleBonce25-Feb-08 5:57
BungleBonce25-Feb-08 5:57 
GeneralRe: SQL record locking (to prevent other READS?) Pin
andyharman25-Feb-08 7:51
professionalandyharman25-Feb-08 7:51 
GeneralRe: SQL record locking (to prevent other READS?) Pin
BungleBonce26-Feb-08 0:38
BungleBonce26-Feb-08 0:38 
GeneralRe: SQL record locking (to prevent other READS?) Pin
andyharman26-Feb-08 4:32
professionalandyharman26-Feb-08 4:32 
Your error message infers that your isolation level is not "committed read" (hence my warning about this in my original response). The MS article infers that you are trying to set the isolation-level in the "GetNext" SP, after the transaction has been started. If you are using ADO then the connection's "IsolationLevel" property should be set to "adXactReadCommitted" before the transaction starts.

You need to be really careful about the isolation level and the scope of your transaction otherwise you will find that your separate processes will have to wait for each over to complete - if you do it really wrong then you could find that parallel processing actually takes longer than using just a single process.

The technique that I specified should work even if you don't use the "READPAST" hist specified (so long as you don't start a transaction in your client-side code until AFTER you have called my SP.

Hope that helps.
Andy
Generalautomatic stored procedure or trigger Pin
Mogaambo25-Feb-08 2:55
Mogaambo25-Feb-08 2:55 
GeneralRe: automatic stored procedure or trigger Pin
DoomedOne25-Feb-08 3:46
DoomedOne25-Feb-08 3:46 
GeneralRe: automatic stored procedure or trigger Pin
Mogaambo25-Feb-08 4:28
Mogaambo25-Feb-08 4:28 
GeneralRe: automatic stored procedure or trigger Pin
DoomedOne25-Feb-08 5:54
DoomedOne25-Feb-08 5:54 
QuestionMS Access permissions issue...? Pin
ChandraRam25-Feb-08 1:11
ChandraRam25-Feb-08 1:11 
AnswerRe: MS Access permissions issue...? Pin
Krish - KP25-Feb-08 16:44
Krish - KP25-Feb-08 16:44 
GeneralRe: MS Access permissions issue...? Pin
ChandraRam25-Feb-08 17:55
ChandraRam25-Feb-08 17:55 
GeneralSQL 2005 Login Issue [modified] Pin
Brady Kelly25-Feb-08 0:37
Brady Kelly25-Feb-08 0:37 
GeneralRe: SQL 2005 Login Issue Pin
User 27100925-Feb-08 0:50
User 27100925-Feb-08 0:50 
GeneralRe: SQL 2005 Login Issue Pin
Jacquers25-Feb-08 0:53
Jacquers25-Feb-08 0:53 
GeneralOT: SQL 2005 Login Issue Pin
RichardGrimmer25-Feb-08 1:22
RichardGrimmer25-Feb-08 1:22 
GeneralRe: OT: SQL 2005 Login Issue Pin
Brady Kelly25-Feb-08 1:40
Brady Kelly25-Feb-08 1:40 
QuestionHow to get the varbinary value from SQLServer2005 and display that string in WebForm? Pin
Tamizh24-Feb-08 23:14
Tamizh24-Feb-08 23:14 
QuestionRe: How to get the varbinary value from SQLServer2005 and display that string in WebForm? Pin
pmarfleet25-Feb-08 2:10
pmarfleet25-Feb-08 2:10 
Questiontable datatype in sp sql server Pin
Sonia Gupta24-Feb-08 23:04
Sonia Gupta24-Feb-08 23:04 
GeneralRe: table datatype in sp sql server Pin
Joe25-Feb-08 1:06
Joe25-Feb-08 1:06 
GeneralFinding Database name Pin
alok_2k324-Feb-08 19:59
alok_2k324-Feb-08 19:59 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.