Advertisement

1 - 10 of 256 containing alltags:("clob") (0 seconds)
I would like a code example (SQL query ...) in order to read and write an clob (external and internal) with Oracle8i.
Zones: OracleDate Answered: 02/11/2000 Grade: A Views: 5
I can logon to an Oracle 8 database without any problems and I have verified that I am connected to Oracle 8.1.6 by running a select * from gv$version query.  When I create a new table and add colu...
Zones: Delphi ProgrammingDate Answered: 09/29/2000 Grade: B Views: 0
When i perform a upload file from local pc to the oracle database( using clob and blob)( the language used is java and JDBC), sometimes i get this error -->ORA-22920: row containing the LOB data to...
Zones: OracleDate Answered: 10/27/2000 Grade: A Views: 0
my procedure is:      (c1 in denemex.col1%type,      l_clob2 in denemex.col2%type) is  l_clob clob;  amount_var INTEGER:=32768; buffer varchar2(200); begin l_clob := null; amount_var:=2;...
Zones: OracleDate Answered: 05/26/2002 Grade: A Views: 0
how to search a clob for a particular pattern whether it exists or not "irrespective of case(either upper,lower or mixed)" ? Thanks in advance for Answering My question.
Zones: OracleDate Answered: 06/05/2002 Grade: A Views: 0
How to use CLOB fields in WHERE clause? --------------------------------------- create table t (id number, data clob); ...properly inserted number of records having clob data... select id...
Zones: OracleDate Answered: 10/23/2001 Grade: C Views: 40
I have table dcs_media_txt with one column as clob datatype   I have inserted  data into dcs_media_txt and able to select the data using select data from dcs_media_txt;   When i write pl/sql p...
Zones: OracleDate Answered: 03/24/2002 Grade: A Views: 0
Hello, can you please tell me, how can i insert some data in a clob field? insert into mytable (num, clob_field) values (1, ' . . . here is ca. 20kb of text-data . . . ); I got th...
Zones: OracleDate Answered: 02/20/2003 Grade: A Views: 0
I have a table "tab1"  that has a field "f1" of type Varchar2. But the content needs to be stored in the f1 field of tab1 table is more than 4KB. So I need to replace the table tab1 by "tab2" with ...
Zones: OracleDate Answered: 10/18/2003 Grade: A Views: 63
folks, I have written a procedure in Oracle which returns CLOB output parameter which contains Plain HTML code.  But I am unable to read the contents of the CLOB parameter. Please let me know If...
Zones: Web DevelopmentDate Answered: 06/19/2004 Grade: A Views: 0