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 answers
Related Questions in JSON
- Handling both JSON and form values in POST request body with unknown values in Golang
- JSON Body is Not Passing Certain Strings
- Custom rewriter for json
- TypeScript: Type checking while parsing an arbitrary JSON that is typed/
- I dont understand what to do with: System.Text.Json.JsonException: 'The JSON value could not be converted to System.Collections.Generic.IEnumerable`1
- How to perform CRUD operations on a static JSON array in Angular? (without API)
- Dynamic Nested Multi-Dimensional Arrays in Rust
- Creating bar chart in FastAPI
- How to encode ttsJson data?
- Trying to get the id of the last element in my json file through an api
- How to give index id to my uploaded json file in FastAPI?
- JQ JSON - Values to Array
- Spring boot JSON parse error: Unexpected character error
- convert csv file with json data inside to a column, rows table in 2nd csv file
- Sigma.JS custom rendering
Related Questions in ORACLE
- sqlplus myusername/mypassword@ORCL not working with Oracle on Docker
- Oracle setting up on k8s cluster using helm charts enterprise edition
- Oracle Managed Data Access Client can't work from IIS but work for local debug environment
- If composite indexing created - indexing is called?
- Oracle Http server ISNT-07551
- why here not creating table?
- Data migration from Oracle Database Clob to GCP Bucket
- SQL Alchemy custom type, forcing blob bind parameter
- How to send message to syslog agent in plsql
- Whatever the data available in previous record it should add to the new record
- I have an Oracle SQL query that is giving me a "ORA-00918: column ambiguously defined" error on a line that is a comment line
- 'ORA-12170: TNS:Connect timeout occurredORA-12170: TNS:Connect timeout occurred' ERROR while working on oracle with laravel
- Is their any way i can open parallel query tabs
- VSCode Libraries not showing for New Java Project
- I can't ssh to my instance, Connection refused
Related Questions in CLOB
- Hibernate ClobJdbcType bindings: what are the diferences?
- Data migration from Oracle Database Clob to GCP Bucket
- How to pass a CLOB pramater to a PL/SQL procedure call in Python
- Convert BASE64 to a BLOB in PL/SQL
- EF 6.2 string to Oracle DB CLOB error - ORA-22275
- Oracle Clob data type and java.sql.ResultSet.getString() working?
- Extracting all lines from CLOB that begin with a letter or digit
- XMLTABLE to extract values from CLOB XML with multiple attributes
- The minimum size of Oracle LOB
- Oracle - Updating CLOB Column
- Oracle - Typing to insert / update CLOB column
- Oracle : Insert text with </br> right before existing text
- Informatica PowerCenter - How to get all occurrences of a string and its subsequent values from CLOB field in source table
- How to handle deprecated warning for CLOB_DURATION_SESSION
- How to save varchar2 column in oracle using PySpark?
Related Questions in VARCHAR2
- create oracle materialized view with fields having varchar2(char)
- out varchar2 in package.procedure is giving numeric or value error
- Convert Varchar2 into time
- How to save varchar2 column in oracle using PySpark?
- Is there a range of VARCHAR2 which can be automatically convert to NUMBER in SQL?
- What could cause ORA-00910: specified length too long for its datatype?
- How to insert unicode data into varchar2 oracle db column from code or from command line sqlplus command?
- VARCHAR2 column formatting in spool file
- Remove Duplicate nested phrases from a string with Oracle Regexp_replace
- Oracle VARCHAR2 - Inserted value too large for column
- Split json field to extract value in oracle sql
- How to convert CLOB to VARCHAR2 in Oracle
- LISTAGG 4000 Character Limit - Result of string concatenation is too long
- Oracle: how to convert varchar2 to date
- how to store double colon values in oracle database table
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?
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)
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.