Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
Dharmendra
Starting Member
2 Posts |
Posted - 2011-02-12 : 02:50:19
|
Hi this is Dharmendra ..i got the error while login to an account to a website. it shows error of crash of server ...as i think ..when i cheked the data base on my sever..Following is the error which i got..source = VsJITdebugger"An unhandeled Microsoft .Net Framwork exception error occcured in w3wp.exe[5752]. Just in time debugging this exception failed with the following error: Debugger could not be started because no user is logged on.Exception Information: As warning."Exception Type:IndexOutOfRangeException" please help if some one has the idea to resolve it.your effort is highly appreciable.Thank you.. |
|
Transact Charlie
Master Smack Fu Yak Hacker
3451 Posts |
Posted - 2011-02-14 : 05:46:53
|
The important piece is:Exception Type:IndexOutOfRangeExceptionYour database has answered a query and returned a list containing too few (probably zero) returns or too many returns to cram into whatever structure is allocated to that return in the application.This is generally caused by a failed insert that wasn't part of transaction resulting in data that doesn't obey your business rules.Of course, from the info provided this is all just an educated guess.Good luckCharlie===============================================================Msg 3903, Level 16, State 1, Line 1736The ROLLBACK TRANSACTION request has no corresponding BEGIN TRANSACTION |
 |
|
|
|
|