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, 5199👍, 0💬
Popular Posts:
What is difference between custom JSP tags and JavaBeans? Custom JSP tag is a tag you defined. You d...
How To Get the Last ID Assigned by MySQL? - MySQL FAQs - Managing Tables and Running Queries with PH...
What is difference between custom JSP tags and JavaBeans? Custom JSP tag is a tag you defined. You d...
Describe different elements in Static Chart diagrams ? Package: - It logically groups element of a U...
Which is the best place to store ConnectionString in Dot Net Projects? I am about to deploy my first...