How to convert string to binary (CLOB to BLOB) ?
Hi,
In my application, binaries files (matlab) are generated. These files are converted into text files and then datas are loaded in a database as CLOB.
Here is an example of CLOB datas :
0.001
123.9876
34.87
Now, we don't want to convert binaries files to text files anymore. So, we want to store the data as BLOB.
The datas in the binaries files are in double format.
But, we have to convert the current datas in the database from CLOB to BLOB.
We don't want to use the procedure DBMS_LOB.converttoblob because we obtain ASCII format datas. In the BLOB column, we want binary datas.
In my application, binaries files (matlab) are generated. These files are converted into text files and then datas are loaded in a database as CLOB.
Here is an example of CLOB datas :
0.001
123.9876
34.87
Now, we don't want to convert binaries files to text files anymore. So, we want to store the data as BLOB.
The datas in the binaries files are in double format.
But, we have to convert the current datas in the database from CLOB to BLOB.
We don't want to use the procedure DBMS_LOB.converttoblob because we obtain ASCII format datas. In the BLOB column, we want binary datas.
0