Which datatype is used to store video files

datatypesoracleoracle-10g

I am working on a web application using JSP.

I want to ask which datatype(with syntax) is used to store video files in Oracle database.

Best Answer

You probably shouldn't be storing the video in the database at all. Just store the metadata about it in the database and put the video itself on a filesystem, which is much more appropriate for storing such stuff.

More details in the two good answers at Images, PDF, audio and video files in MySQL - of which this question is arguably a duplicate.