How to attach a excel file as Clob from database into a plsql data table - plsql

I want to attach a clob file into oracle PLSQL data table. is there a code, please send me.

Related

How to handle clob column in iics/informatica cloud

I am trying to map data from my oracle database to flatfile. But as I have CLOB column in my source table, my synchronization job is failing with error "Internal error. The DTM process terminated unexpectedly. Contact Informatica Global Customer Support". But if I convert the CLOB using to_char and try, it's working.But it works only for data less than 4000 chanracters. I have data lot more than this size. Please suggest.
Can you please check data type of said column in informatica ?have you tried using STRING or TEXT data type?

Datatype error in teradata

i export the netezza table records into csv file with time format column 00:00:00 and import the csv file data into teradata table. But my records are not inserted in teradata because of time datatype. In csv files i use varchar datatype for time column in unix script and use time datatype for teradata. I want to know the reason for why records not inserted in teradata tables.

How to read from a file using asp.net

I have Uploaded a file into server and I want to read the data from that file and insert data into the oracle. I am using a list for taking the data from the file and Data is reading from this List. No problem with my code. It reads completely and data's are inserted into the oracle table Locally.. But After Hosting the data's not completely inserted to the table..After inserting some data it become stuck.

How to send datatable as a parameter to mysql store procedure through asp.net code

How to send datatable as a parameter to mysql store procedure through asp.net code.
if any solution is there, can anyone please tell me. Its urgent
thank you,
You could write it to a .csv and use LOAD DATA INFILE
- LOAD DATA INFILE Syntax
Else you you have to loop through the datatable and insert one by one row.
References
Best way to Bulk Insert from a C# DataTable
I would parse the data set and for each data row call a stored procedure passing parameters for one data row. If you don't want that, then there are other import facilities (bulk import) like http://brockangelo.com/2009/04/27/how-to-bulk-import-into-a-mysql-database or MySQL bulk insert from CSV data files.

Cannot export table from PL/SQL developer having a column datatype as CLOB

I need to export table having a column datatype as clob.
I need to have inserts scripts for that table. But I get following error when I try to export the table from PL/SQL developer
Table XYZ contains one or more CLOB columns. Cannot export in SQL format, use PL/SQL Developer format instead
Is there a way I can export tables with CLOB column datatype using plain SQL scripts?
I know that topic is old but maybe someone in future need this:
When You export a blob field use this
dbms_lob.substr( blob_field , 3999, 1) blob_field
where blob_field is your cblob
As of the latestest version of SQLDeveloper you can try out xml export, this at least worked for me for CLOBs.

Resources