Are there any other alternative for storing large amounts of data other than CLOB in Oracle 10g?
The maximum size of JSON file that I need to store in this field is 150Kb. Can I use VARCHAR2 or NTEXT for this purpose? The content of JSON file may be copied as text too if it is necessary to avoid using a CLOB.
Thanks in advance for any help.
Alternatives to Oracle CLOB for Storing JSON
8.5k Views Asked by RBz At
1
There are 1 best solutions below
Related Questions in JSON
- getting undefined while iterating json
- How can I serialize a numpy array while preserving matrix dimensions?
- What is best way to check if any of the property of object is null or empty?
- How to query JSON data according to JSON array's size with Spark SQL?
- Extracting data from json_decode with lat and lng geolocation
- Convert JSON.gz to JSON in node js
- How do I get the type to convert to when deserializing from Jackson
- Escape dot in jquery validate plugin
- Are allOf and properties keywords interchangeable?
- Sort continents by amount of countries
- Is there a data format lighter than json?
- Object of class CS_REST_Wrapper_Result could not be converted to string in CAMPAIGN MONITOR
- How to read JSON data from a web server running PHP and MySQL?
- Parse Nsmutabledictionary and extract value
- Handle empty JSON values in Java
Related Questions in ORACLE
- Column displays each count
- MAX and GROUP BY - SQL
- Best Practice for adding columns to a Table in Oracle database
- Updating an Oracle row with value from same row
- Retrieving data from Oracle database
- Ibatis execute update sql on oracle, it is not working and no exceptions
- Building an sql execution plan history
- Implementation of Rank and Dense Rank in MySQL
- how to update the date field for this specific condition using oracle query?
- Oracle stored procedure wrapping compile error with inline comments
- Android: How to connect oracle database using Android Java code?
- SQL Conditional Join on Columns
- Multi value wildcard search in ibatis
- Get count of consecutive days meeting a given criteria
- How to update the metadata of a layer in Oracle imported through FME Workbench?
Related Questions in CLOB
- CLOB value in out/return from plsql (invalid LOB locator specified: ORA-22275)
- In Oracle, how to select LOBs from remote database without copying to local tables?
- nested clob xmlelemnt oracle sql select
- utf-8 oracle clob, write/read pdf in java?
- How to create a select statement that satisifies multiple condition from a single column?
- Insert xml Node into a CLOB column with namespace in Oracle
- SOCI clob data type in oracle c++
- Put and get data from table containing BLOB,CLOB raw by raw in oracle
- How to sqoop to import oracle clob data to avro files on hdfs
- Exception while Inserting Oracle DB table with Clob column in Groovy
- Oracle change column type from CLOB to NCLOB
- Alternatives to Oracle CLOB for Storing JSON
- Grails/GORM lazy loading of CLOB field
- The length of a CLOB is 0?
- Exception while using .setClob()
Related Questions in VARCHAR2
- Varchar2 column versus variable memory allocation in pl/sql
- TSQL procedure call to PLSQL procedure : ORA-06502: PL/SQL: numeric or value error
- Alternatives to Oracle CLOB for Storing JSON
- PL/SQL select multiple varchar2 into one varchar2
- Check if number in varchar2 is greater than n
- Name of day padded with spaces prevent proper behavior
- What is the major difference between Varchar2 and char
- PLSQL - Convert Char Array To Varchar2
- How does varchar2 sorting in oracle works?
- Casting a column value as VARCHAR2() that holds 9 characters (TOPIC: ORACLE SQL & PL for Developers)
- ORA-01722: invalid number rows start with comma transfer VARCHAR2 TO_NUMBER
- How to use varchar2 variable in XMLTable function?
- Oracle - The lowest VARCHAR2 value
- Joining on a varchar to a char does not work in JPA (oracle)
- Convert Varchar2 into time
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
In 10g, the maximum size of a
VARCHAR2orNVARCHAR2column is only 4kb. Under 12c, if you have theMAX_STRING_SIZEserver property set toEXTENDED, this limit can be increased to 32kb, but still nowhere near 150kb.You will either need to use
CLOB, or break your 150kb down into 4kb chunks.One option for breaking down your data is to store the data in a table where each row represents one line of the file:
Alternatively, if you can upgrade to 12c, you can take advantage of native JSON support.