Ask a Question related to ASP Database, Design and Development.
-
CJM #1
Re: Error: Cannot create new connection because in manual or distributed transaction mode
Luke,
The first & second SP's both return a Scope_Identity() value for the record
that the SP Inserts.
However, I ignore the first one, but need to act on the second one. If I
ignored the returned value from the second recordset, I could continue to
use the original connection.
I understand what you mean about the connection potentially being occuped,
but I'm unclear as to how you think I should check this.
Thanks
Chris
"[MSFT]" <lukezhan@online.microsoft.com> wrote in message
news:eQwtUsrGEHA.2308@cpmsftngxa06.phx.gbl..."occupied"> Hi Chris,
>
> From another post, I know you have temporarily get around this problem by
> creating a new connection for the SP. My question is, if the second SP
> didn't return a Recordset, is there going to being such a problem? Since
> the new connection can work, the original connection seems to be> by something. It looks to me that we may check the recordset first.
>
> Luke
> Microsoft Online Support
>
> Get Secure! [url]www.microsoft.com/security[/url]
> (This posting is provided "AS IS", with no warranties, and confers no
> rights.)
>
CJM Guest
-
Distributed Mode Requirements for MX7
I'm having some trouble with a client trying to get distributed mode up and going on their system. They have (A)IIS -> (B)CFMX7 in Standalone... -
Distributed Transaction in different web services
Hello All We have 3 differen services (in 3 different server) Service A,B,C . We want to implement distributed transaction when call methods of B... -
COM+ unable to talk to Microsoft Distributed Transaction Coordinator
I have a Windows 2003 Server machine on which I am getting the following error, when I try to access the COM+ Applications. "An error occured... -
Distributed Transaction Error
Hi there We have a asp page in which we are making some update calls connecting to SQL Server 2000. it's been done by... -
SIMULATING DISTRIBUTED TRANSACTION FAILURE
Hi all, has anybody ever simulated a distributed transaction failure? I would like to make some test, and in order to have the views... -
[MSFT] #2
Re: Error: Cannot create new connection because in manual or distributed transaction mode
Hi Chris,
You may check the connection's State after it execute the second SP, for
example:
Do While <some condition>
sSQL = "Exec etc"
oConn.Execute sSQL
sSQL = "Exec etc"
rs = oConn.Execute (sSQL)
Response.Write oConn.State
sSQL = "Exec etc"
oConn.Execute sSQL <---- fails here
sSQL = "Exec etc"
oConn.Execute sSQL
Loop
To see if it is in correct state (ready to execute next SP). Additionally,
you may try a client side cursor for the connection object to see if it
will help.
Luke
Microsoft Online Support
Get Secure! [url]www.microsoft.com/security[/url]
(This posting is provided "AS IS", with no warranties, and confers no
rights.)
[MSFT] Guest



Reply With Quote

