Hi,
DB2 V9.5.5 on Win 2003
Other than command line explain, how can I see the select statement's table access isolation level ?
I was able to use command line, still have a doubt.
Here is the story.
My developers want to execute all selects at UR level in an SP, default being CS.
Just for example
Code:
CREATE PROCEDURE TESTSP()
LANGUAGE SQL
BEGIN
SET ISOLATION UR;
insert into testsp SELECT CTIME FROM tests;
SET ISOLATION RESET;
END
@
I want to see table access isolation level in tabscan in
SELECT CTIME FROM tests statement.
Can some one help me with idea to test this. Using visual explain and/or IBM Data Studio.
I had used visual explain some times but do not know where the table access level could be found.
Thanks
DBFinder