InterviewSolution
Saved Bookmarks
| 1. |
Can Lob Values Be Deleted From The Database? |
|
Answer» When INTERNAL LOB DATATYPE (BLOB, CLOB, and NCLOB) column values are DELETED, both locator and values are deleted. If an EXTERNAL LOB (BFILE) value is deleted, then only the locator value is deleted. The external file has to be manually deleted from the SERVER file system. When Internal LOB datatype (BLOB, CLOB, and NCLOB) column values are deleted, both locator and values are deleted. If an external LOB (BFILE) value is deleted, then only the locator value is deleted. The external file has to be manually deleted from the server file system. |
|