|
Documentation here[^].
Member 11373638 wrote: How the isolation level changes and will it be one of the reason for the deadlock? A deadlock occurs when a transaction is waiting for another transaction to finish, where the latter is also waiting on the first. The victim is determined by the priority.
First part is identifying the queries that cause the lock in the first place.
Bastard Programmer from Hell
If you can't read my code, try converting it here[^]
|
|
|
|
|
Eddy,
I did all these findings and altered the procedures. But still I am getting the deadlock. I am just struck with this Serializable isolation. Will it be also a reason for the locks?
Regards
-Mahesh
|
|
|
|
|
Member 11373638 wrote: I did all these findings Which findings?
Member 11373638 wrote: and altered the procedures. What did you alter?
Member 11373638 wrote: I am just struck with this Serializable isolation. There is two queries that keep waiting on each other. Once you know which ones, you can check whether they use the default isolation. I don't see a reason why this should be "serialized" and not the default value.
Depending on WHAT the queries do, you can define an alternative. If it is a read, then you might opt for a dirty read - or to wait until the other query is finished. If it are two writes, then you'd either need a queue, or a way to specify whom the victim will be. It will never be possible to update a single field using two queries simultaneous, so there will always be a victim unless the logic changes.
TL;DR yes, but changing the level will not automatically fix it.
Bastard Programmer from Hell
If you can't read my code, try converting it here[^]
|
|
|
|
|
Eddy,
Yeah your correct, in my case one query was doing a select and other doing a update on the same record. I changed it and thought it will work fine, but i was wrong and this time also deadlock came. And good document related to deadlocks in case of Update and Select in a same table??
One more thins as per your advice changing the isolation level wont help rite!!
Regards
-Mahesh
|
|
|
|
|
Member 11373638 wrote: in my case one query was doing a select and other doing a update on the same
record. That's good; I was afraid you'd be doing two insert/update queries, launching them after another, each in a separate thread. For a read, there's multiple ways to handle the situation, but the server will need to be told what to do.
There are isolation levels and query-hints to get the behaviour that you'd want. It'd be a huge coincident if there is always "someone" requesting a record at the moment that the PC is writing it. It is fast in writing a record (and updating the indexes, starting triggers and.. it still takes time)
So, best is to identify why someone is always reading after that update. One cause could be that the piece of code that is updating the record, is also fetching it, immediately, simply to refresh the data on the form. In that case it should block/delay the execution until the update-command returns. Even better; don't do the select at all, but refresh using the values that you already have.
Is it the same PC/terminal that executes the select after the initial update? You could verify quickly (assuming that the problem is repeatable, is it?) using a trace[^].
Member 11373638 wrote: And good document related to deadlocks in case of Update and Select in a same
table?? I favor MSDN for documentation; besides the isolation levels, you'd also need to see the queries that get executed to determine the current and the desired behaviour. The might already contain or need additional hints[^]. The existing query might already contain a bad idea[^]. And there's a page in the ADO.NET section that may be interesting, even though we are only looking at the database. It's worth the read[^]; it mentions a third possibility - if both statements actually belong together, then they should be wrapped in a transaction. (Could be the case if there's a calculated field in there)
That's a lot of documentation to wade through and probably a lot of code to check. Best idea is to start with the bad idea link
Bastard Programmer from Hell
If you can't read my code, try converting it here[^]
|
|
|
|
|
Eddy,
Thanks for your useful information. Both the queries are executed through the same terminal. As per your suggestion I will try to use the hints and lets see whether it really helpful.
Regards
-Mahesh
|
|
|
|
|
You're welcome
Out of curiousity, was it caused by the bad idea?
Bastard Programmer from Hell
If you can't read my code, try converting it here[^]
|
|
|
|
|
We're using Entity Framework 4, ASP.NET MVC 4 and SQL Server 2008 R2. We have some join tables for several entities, for many-many relationships. I'm working to create audit tables/data for each of these relationships/join tables. So far in my research, I've found that triggers are common. We use Windows Authentication, and we have a User table that stores authorized domain users. For our audit tables, we'd like to know which user modified the relationship.
The problem I have is, how do we get the ID from our User table based on the user who updated a relationship using our MVC application? I've looked at some options, and the only thing I can come up with so far, in a trigger, is this:
SELECT @username = nt_username FROM sys.sysprocesses WHERE spid = @@SPID
That will retrieve my username without the domain, which is what I want. I can then compare it to our User table and get the ID where the username matches. But is this the best way to go about it?
djj55: Nice but may have a permission problem
Pete O'Hanlon: He has my permission to run it.
|
|
|
|
|
Matt U. wrote: But is this the best way to go about it? Compared to which other way?
I like triggers; it'll do what it is supposed to do without having to do anything special in the calling code.
The nt_username[^] field from the current process will always be the Windows user name, so that would look correctly too. IIRC then the variable "SYSTEM_USER" should return the same.
There's two or three alternative approaches that come to mind, each of them not as good as triggers.
Bastard Programmer from Hell
If you can't read my code, try converting it here[^]
|
|
|
|
|
Thanks for the info! I've been working to put it together using triggers and I can't imagine any way that would be simpler. I think I'll just go that route. I only asked because I'm not entirely familiar with triggers, setting up audit tables, and so on.
djj55: Nice but may have a permission problem
Pete O'Hanlon: He has my permission to run it.
|
|
|
|
|
You're welcome
|
|
|
|
|
As much as I loathe triggers spit audit is the one area where they are the right tool for the job.
We have a Modified and ModifiedBy field on EVERY table and use that in the trigger to identify the culprit. We also do not use EF or windows authentication, our apps use app specific credentials to connect to the database.
Never underestimate the power of human stupidity
RAH
|
|
|
|
|
hi every body . I learn database I practive coding.plz share me database contact.mdf of microsoft .Thank you!
|
|
|
|
|
What exactly do you want?
There are only 10 types of people in the world, those who understand binary and those who don't.
|
|
|
|
|
I need to download and install the
database contacts.mdf, which is used in all samples, but can't find it on
the Web... neither in the manual.
Can anyone help?
|
|
|
|
|
|
i prative example..but i dont have file database Contact.mdf,.,.i cant fint it .plz help me .thank you
http://msdn.microsoft.com/en-us/library/ff847525.aspx
|
|
|
|
|
The article says it's part of the download.
There are only 10 types of people in the world, those who understand binary and those who don't.
|
|
|
|
|
link download die bro
|
|
|
|
|
Right, which means you're stuck. Try seeing if there is contact information on that page.
There are only 10 types of people in the world, those who understand binary and those who don't.
|
|
|
|
|
|
|
Can anyone here help in creating a Tables with Primary Key and Foreign Key? I have created tables but failed in Primary Key and Foreign Key. I am very new to Database.
CustInfo DealerInfo AssDealerInfo VehicleInfo LineItem
CustID(PK) DealerID(PK) AsDealerID(PK) VID(PK) LineItemID (PK)
Now I want a Foreign Key dependency on AssDealerInfo that should have access to all the other tables.
How to achieve this?
Your help is much appreciated.
Thanks
Happy Coding!
|
|
|
|
|
Can you please provide more information about attributes you have in your tables and which ones you would like to have Foreign Key constraints on ?
And please explain what have you tried so far. What sort of errors did you get?
If you haven't tried anything yet I would point you to these links:
[General Create table and Primary Keys]
[Foreign Keys]
|
|
|
|
|
Thank you for the article. I have gone through it earlier but this time it is nice to read again. And I am using System i Navigator. Now in general DB2 or AS400 how can I create a Stored Procedure with parameters for Insert Statement?
I totally agree that when everyone in the world is moving with new technologies and migrating data from AS400 to Oracle/SAP or some other things. I am still using this because my boss just loves AS400 like crazy.
Your help is much appreciated.
Thanks
Happy Coding!
|
|
|
|