Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Hello, I use a table with a blob

Status
Not open for further replies.

pbopbo

Programmer
Aug 14, 2003
17
CH
Hello,

I use a table with a blob. When I insert something in this blob I get an opened cursor named
Code:
table_e_400_6eec_5_0_0
which is visible with the query
Code:
select user_name, count(1) as count, sql_text 
from sys.v_$open_cursor 
group by user_name, sql_text
order by count;
I found an explanation about what it means at
but no explanation if it is normal or what should I do in case it's a problem.

Anyone have already heard about this ?

Thanx

Philippe
 
Hi,
From the article it appears to be the normal Oracle behavior...

Basic Note: If it ain't broke, don't fix it....


[profile]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top