Sponsored Links

Interview Questions



INTERVIEW QUESTIONS MICROSOFT DOTNET DETAILS

Question: When multiple users are working on one application, the SQL/Oracle statement gets locked when one user is working, thus another user cannot work simultaneously. How can multiple users work. Thus give me syntax for freeing SQL/Oracle queries in order for working of multiple users.

Answer: Oracle statement does not get locked. What gets locked is the 'row' alone. Normally, single row needs to be modified by a single transaction only at a time, and oracle correctly locks the row, when it updates/deletes. For reads, i.e, 'select' statement, the row is not locked unless it is a 'select for update'; The complete table never gets locked except in case of some DCL statements, when it is required to be locked.

Category DotNet Interview Questions & Answers - Exam Mode / Learning Mode
Rating (0.2) By 9561 users
Added on 3/29/2014
Views 67992
Rate it!

Question: When multiple users are working on one application, the SQL/Oracle statement gets locked when one user is working, thus another user cannot work simultaneously. How can multiple users work. Thus give me syntax for freeing SQL/Oracle queries in order for working of multiple users.

Answer:

Oracle statement does not get locked. What gets locked is the 'row' alone. Normally, single row needs to be modified by a single transaction only at a time, and oracle correctly locks the row, when it updates/deletes. For reads, i.e, 'select' statement, the row is not locked unless it is a 'select for update'; The complete table never gets locked except in case of some DCL statements, when it is required to be locked. Source: CoolInterview.com

Answered by: suresh menon | Date: 4/14/2009 | Contact suresh menon Contact suresh menon

you can use nolock statement in the select query. This will not lock the rows or records which is used by another user.

Ex: select columnlist from tablename (nolock) Source: CoolInterview.com

Answered by: shiraz | Date: 6/29/2009 | Contact shiraz Contact shiraz

Perform every insert, update and delete query via stored procedure, because a stored procedure executes as a whole and performing locking itself. Please try this, thanks. Source: CoolInterview.com

Answered by: Sumnesh Lakhiwal | Date: 7/3/2009 | Contact Sumnesh Lakhiwal Contact Sumnesh Lakhiwal

You can use No Lock in select statement so that multiple user can work on it.

Syntex for SQL Server:

SELECT * FROM Employees(NoLock) Source: CoolInterview.com

Answered by: Ashish Sharma | Date: 8/10/2009 | Contact Ashish Sharma Contact Ashish Sharma

This can be done by using a transaction and setting the isolation level according (ReadCommitted, ReadUncommitted, RepeatableRead or Synchronous). A new transaction shud be created for different users to maintaint he integrity of the data. Source: CoolInterview.com

Answered by: Aravinthan | Date: 8/24/2009 | Contact Aravinthan Contact Aravinthan

When someone begins modifying data in SQL Server, that data becomes locked. Locking prevents any other connection from accessing that data-even to query it. The data will only be accessible to other users when the transaction is either committed or rolled back.

I can demonstrate this behavior rather simply using the pubs sample database that comes with SQL Server. Open up two windows in Query Analyzer. In the first window, raise the price of all books in the pubs database by executing the following SQL:

use pubs
go
begin tran
update titles
set price = price * 1.05
where

title_id = 'BU2075'
Because I haven't yet executed a commit statement in the code the change is still not finished.
Now in the other window, I'll try to query the titles table by executing:

select title_id,title,price
from titles
order by title_id.
You will not get any results. Instead, the little globe on the bottom will keep spinning. Although I'm only updating one row, my select statement includes the one row that is being changed. Therefore, no data will be returned till the update is either committed or rolled back.
The solution chosen by SQL Server potentially lowers throughput and performance. The longer data is locked, or the larger the amount of data being locked, the more likely that other users will have to wait for their statements to execute. Therefore, as a programmer, it is important to keep transactions small and fast.

In more recent versions of the product, Microsoft has enabled SQL Server to lock smaller amounts of data at a time, which is a big improvement. In version 6.5 and below, the smallest lock was on a page. So even if you were only modifying one row out of 10 on a page, all 10 rows would be locked. This increased the likelihood of causing a wait for another connection till the modification was completed. In version 7, Microsoft introduced row-level locking, so now SQL Server locks only the rows that are actually being changed.

SQL Server's solution sounds simple, but there's a lot that has to happen behind the scenes to maintain sufficient performance. For example, if you are modifying many rows, SQL Server will escalate the lock to the page level or even the table level so as not to have to track and maintain separate locks for each record.
Source: CoolInterview.com

Answered by: faiz | Date: 8/29/2009 | Contact faiz Contact faiz

In this situation data base relase the lock after some time which is in millisecond.There for if transaction is fail by any user, he has to handle it explicitly by retry it again.We should aviod to handle the lock explicitly, because every data base handle lock by itself. Source: CoolInterview.com

Answered by: Amreek Singh | Date: 9/22/2009 | Contact Amreek Singh Contact Amreek Singh


If you have the better answer, then send it to us. We will display your answer after the approval.
Rules to Post Answers in CoolInterview.com:-
  • There should not be any Spelling Mistakes.
  • There should not be any Gramatical Errors.
  • Answers must not contain any bad words.
  • Answers should not be the repeat of same answer, already approved.
  • Answer should be complete in itself.
Name :*
Email Id :*
Answer :*
Verification Code Code Image - Please contact webmaster if you have problems seeing this image code Not readable? Load New Code
Process Verification Enter the above shown code: *
Inform me about updated answers to this question

Related Questions
View Answer
What is cts and cls?
View Answer
What is the purpose of DOTNET?
View Answer
Give the detail procedure of how to add different controls at runtime in VB and dot Net. The controls should be added as per the customers requirement at the customers place without intervention of the programmer. Similarly how to remove these controls which are generated by the customer at runtime?
View Answer
With respect to security ,which one is the better choice?.Net or J2EE? Explain.

View Answer
What is the difference between the C#.NET and VB.NET?

View Answer
Can implement same method name in both base class And derived class with different action?

View Answer
Can i change private assembly to shared assembly?How?

View Answer
How u can create XML file?

View Answer
How can I read .doc document in ASP.Net?

View Answer
Can we run .NET in unix plateform?

View Answer
In .NET Compact Framework, can I free memory explicitly without waiting for garbage collector to free the memory?

View Answer
what i do for load testing in . net application .



View Answer
How many types of assemblies are there , wat are they?

View Answer
What's ArrayList in .Net (VB.Net or C#)
What's the advantageous using ArrayList.




View Answer
How to clear a datagrid on a button click?

View Answer
How will you make .NET programs work in Linux ?

View Answer
Given a server with 4 cpu's, and no databases write a pseudocode to search for the word camera in 100,000 html documents.



View Answer
With respect to security ,which one is the better choice ,.Net or J2EE? Explain.........

View Answer
What Is The Difference Between ViewState and SessionState

View Answer

Please Note: We keep on updating better answers to this site. In case you are looking for Jobs, Pls Click Here Vyoms.com - Best Freshers & Experienced Jobs Website.

View All DotNet Interview Questions & Answers - Exam Mode / Learning Mode



User Options
India News Network

Latest 20 Questions
Payment of time- barred debt is: (a) Valid (b) Void (c) Illegal (d) Voidable
Consideration is defined in the Indian Contract Act,1872 in: (a) Section 2(f) (b) Section 2(e) (c) Section 2(g) (d) Section 2(d)
Which of the following is not an exception to the rule, "No consideration, No contract": (a) Natural love and affection (b) Compensation for involuntary services (c) Completed gift (d) Agency
Consideration must move at the desire of: (a) The promisor (b) The promisee (c) The promisor or any other party (d) Both the promisor and the promisee
An offer which is open for acceptance over a period of time is: (a) Cross Offer (b) Counter Offer (c) Standing Offer (d) Implied Offer
Specific offer can be communicated to__________ (a) All the parties of contract (b) General public in universe (c) Specific person (d) None of the above
_________ amounts to rejection of the original offer. (a) Cross offer (b) Special offer (c) Standing offer (d) Counter offer
A advertises to sell his old car by advertising in a newspaper. This offer is caleed: (a) General Offer (b) Special Offer (c) Continuing Offer (d) None of the above
In case a counter offer is made, the original offer stands: (a) Rejected (b) Accepted automatically (c) Accepted subject to certain modifications and variations (d) None of the above
In case of unenforceable contract having some technical defect, parties (a) Can sue upon it (b) Cannot sue upon it (c) Should consider it to be illegal (d) None of the above
If entire specified goods is perished before entering into contract of sale, the contract is (a) Valid (b) Void (c) Voidable (d) Cancelled
______________ contracts are also caled contracts with executed consideration. (a) Unilateral (b) Completed (c) Bilateral (d) Executory
A offers B to supply books @ Rs 100 each but B accepts the same with condition of 10% discount. This is a case of (a) Counter Offer (b) Cross Offer (c) Specific Offer (d) General Offer
_____________ is a game of chance. (a) Conditional Contract (b) Contingent Contract (c) Wagering Contract (d) Quasi Contract
There is no binding contract in case of _______ as one's offer cannot be constructed as acceptance (a) Cross Offer (b) Standing Offer (c) Counter Offer (d) Special Offer
An offer is made with an intention to have negotiation from other party. This type of offer is: (a) Invitation to offer (b) Valid offer (c) Voidable (d) None of the above
When an offer is made to the world at large, it is ____________ offer. (a) Counter (b) Special (c) General (d) None of the above
Implied contract even if not in writing or express words is perfectly _______________ if all the conditions are satisfied:- (a) Void (b) Voidable (c) Valid (d) Illegal
A specific offer can be accepted by ___________. (a) Any person (b) Any friend to offeror (c) The person to whom it is made (d) Any friend of offeree
An agreement toput a fire on a person's car is a ______: (a) Legal (b) Voidable (c) Valid (d) Illegal



Fresher Jobs | Experienced Jobs | Government Jobs | Walkin Jobs | Company Profiles | Interview Questions | Placement Papers | Companies In India | Consultants In India | Colleges In India | Exams In India | Latest Results | Notifications In India | Call Centers In India | Training Institutes In India | Job Communities In India | Courses In India | Jobs by Keyskills | Jobs by Functional Areas

Testing Articles | Testing Books | Testing Certifications | Testing FAQs | Testing Downloads | Testing Interview Questions | Testing Jobs | Testing Training Institutes

Gate Articles | Gate Books | Gate Colleges | Gate Downloads | Gate Faqs | Gate Jobs | Gate News | Gate Sample Papers | Gate Training Institutes

MBA Articles | MBA Books | MBA Case Studies | MBA Business Schools | MBA Current Affairs | MBA Downloads | MBA Events | MBA Notifications | MBA FAQs | MBA Jobs
MBA Job Consultants | MBA News | MBA Results | MBA Courses | MBA Sample Papers | MBA Interview Questions | MBA Training Institutes

GRE Articles | GRE Books | GRE Colleges | GRE Downloads | GRE Events | GRE FAQs | GRE News | GRE Training Institutes | GRE Sample Papers

IAS Articles | IAS Books | IAS Current Affairs | IAS Downloads | IAS Events | IAS FAQs | IAS News | IAS Notifications | IAS UPSC Jobs | IAS Previous Question Papers
IAS Results | IAS Sample Papers | IAS Interview Questions | IAS Training Institutes | IAS Toppers Interview

SAP Articles | SAP Books | SAP Certifications | SAP Companies | SAP Study Materials | SAP Events | SAP FAQs | SAP Jobs | SAP Job Consultants
SAP Links | SAP News | SAP Sample Papers | SAP Interview Questions | SAP Training Institutes |




Copyright ©2003-2024 CoolInterview.com, All Rights Reserved.
Privacy Policy | Terms and Conditions