Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
How To View and Change the Current Transaction Isolation Level
How To View and Change the Current Transaction Isolation Level? - MySQL FAQs - Transaction Management: Commit or Rollback
✍: FYIcenter.com
If you want to view or change the current transaction isolation level, you can use the following commands:
The tutorial exercise below shows you how to view and change transaction isolation level:
>\mysql\bin\mysql -u dev -piyf fyi mysql> SELECT @@TX_ISOLATION FROM DUAL; +-----------------+ | @@TX_ISOLATION | +-----------------+ | REPEATABLE-READ | +-----------------+ 1 row in set (0.46 sec) mysql> SET TRANSACTION ISOLATION LEVEL READ COMMITTED; Query OK, 0 rows affected (0.10 sec) mysql> SELECT @@TX_ISOLATION FROM DUAL; +----------------+ | @@TX_ISOLATION | +----------------+ | READ-COMMITTED | +----------------+ 1 row in set (0.02 sec)
2007-05-11, 5251👍, 0💬
Popular Posts:
If we have two version of same assembly in GAC how do we make a choice ? OK first let’s try to under...
Explain simple Walk through of XmlReader ? In this section we will do a simple walkthrough of how to...
How To Enter Characters as HEX Numbers? - MySQL FAQs - Introduction to SQL Basics If you want to ent...
1. The basics first, please define the web in simple language? How is it connected with internet? Wh...
Can you explain steps in function points? Below are the steps in function points: >First Count ILF, ...