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 Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ALTER TABLE <table name> MODIFY LOB("<column name>") (CACH

Status
Not open for further replies.

ddrillich

Technical User
Jun 11, 2003
546
US
Good Day,

We got a recommendation from the software vendor to perform the following change on the DB:

ALTER TABLE IKS_BINARYDOCUMENT MODIFY LOB("IKS_CONTENTDATA") (CACHE)

ALTER TABLE IKS_ASCIIDOCUMENT MODIFY LOB("IKS_CONTENTDATA") (CACHE)

These are pretty large tables -

SQL> select count(*) from ikmapp.IKS_BINARYDOCUMENT;

COUNT(*)
----------
1142049

SQL> select count(*) from ikmapp.IKS_ASCIIDOCUMENT;

COUNT(*)
----------
227680


What does this change do? Does it place a certain column in memory?


Regards,
Dan
 
is the IKS_CONTENTDATA column a Large Object (LOB)? If yes, then the ALTER would bring the LOB Data into Memory but I have this feeling that this might bring the system to its knees if you do

Code:
SELECT * FROM IKS_BINARYDOCUMENT

or

Code:
SELECT * FROM IKS_ASCIIDOCUMENT

-Engi
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top