i can't insert column value greater than 4000 characters at
one instance even i am using CLOB datatype . how to insert
efficiently more than 4000 characters ? And please let me
know how to impose inline and out-of line constraints on
oracle column???
Thanks in Advance...
Prakash
Answers were Sorted based on User's Feedback
Answer / prakashdasari
we can solve this problem in two ways as of my knowledge.
1)Write that total information (>4000) in a file and upload this file to CLOB data type.
2)Another way is we need to split the string to <=4000 characters substrings and each one need to be append by using to_clob() function available in oracle.
for ex. to_clob('4000characters sub string') | to_clob('4000characters sub string') | to_clob('4000characters sub string') |....... so on.
i used second one for my requirement because i dont want to disturb my well developed product code.Just i added as a extra function.
Than Q...
| Is This Answer Correct ? | 5 Yes | 0 No |
What is a public synonym?
What is oracle server autotrace in oracle?
What is literal?
What happens if you set the sga too low in oracle?
Can cursor variables be stored in PL/SQL tables.If yes how. If not why?
What is difference between cartesian join and cross join?
can u plz provide me oca sql dumps please i need them
What is the difference between RBBMS & DBMS?
i have executed the Delete command after the I have created table whether deletions will be commit or not? if table is successfully created?
How to run queries on external tables?
Explain oracle data types with examples?
is there a tool to trace queries, like profiler for sql server?