|
|
-
manik Liked 1 Years ago through Pages
We wish to use these pages for publishing various documents, announcements, FAQ etc related to beyondrelational.com...
|
-
manik Liked 1 Years ago through Just Learned
Though I know viewstate is vulnerable to security as it reveals sensitive information, I always thought that its reasonably difficult to decode. But i found that decoding viewstate is very much simpler. ASP.NET has a class "LosFormatter", by using which...
|
-
manik Learned 1 Years ago through Just Learned
Though I know viewstate is vulnerable to security as it reveals sensitive information, I always thought that its reasonably difficult to decode. But i found that decoding viewstate is very much simpler. ASP.NET has a class "LosFormatter", by using which...
|
-
manik Liked 1 Years ago through Just Learned
Though I know viewstate is vulnerable to security as it reveals sensitive information, I always thought that its reasonably difficult to decode. But i found that decoding viewstate is very much simpler. ASP.NET has a class "LosFormatter", by using which...
|
-
manik Learned 1 Years ago through Just Learned
Though I know viewstate is vulnerable to security as it reveals sensitive information, I always thought that its reasonably difficult to decode. But i found that decoding viewstate is very much simpler. ASP.NET has a class "LosFormatter", by using which...
|
-
manik Liked 1 Years ago through Just Learned
Though I know viewstate is vulnerable to security as it reveals sensitive information, I always thought that its reasonably difficult to decode. But i found that decoding viewstate is very much simpler. ASP.NET has a class "LosFormatter", by using which we
|
-
manik Answered 1 Years ago through Quizzes
When we are trying to retrieve or select any data, that query or user requests a shared lock on the table/data. However if another query is running prior to this one such as update query, that would have created an exclusive lock on the table/data which...
|
-
manik Answered 1 Years ago through Quizzes
Query using like operator: select name from table where name like '[A-J]%'
Query using between operator: In this case, the last character is not included in SQL Server 2005 hence instead of 'J', 'K' is taken as limit value.
select name from emp_tabl...
|
-
manik Answered 1 Years ago through Quizzes
The mentioned problem was because of the "Instead of Trigger" in place on TableA. Instead of updating the TableA, the instead of trigger is executed and updates the TableB.
There are DDL, DML, Logon and Instead of triggers.
**DML Triggers:**
DML ...
|
-
manik Answered 1 Years ago through Quizzes
The default isolation level in SQL Server is read committed.
If the user fires update in one transaction and other user tries to access the same table, the statement will be in wait state until the prior transaction is committed or rolled back.
**Re...
|