Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6841313
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T23:57:03+00:00 2026-05-26T23:57:03+00:00

Hi I have a table column in Oracle 10 which contain a string array

  • 0

Hi I have a table column in Oracle 10 which contain a string array like that:

TERMS_TABLE

DOC_ID | TERMS_ARRAY
120 | apple,orange,banana,.....,termN

There are N terms.
I want to separate commas from the TERMS_ARRAY and insert them another table

COMMA_SEP_TABLE

DOC_ID |TERM
120 | apple
120 | orange
120 | banana
..... 

I try these code but it does not do anything :

 CREATE OR REPLACE SEPERATE_COMMA     IS
  l_tab DBMS_UTILITY.LNAME_ARRAY ;

 l_tablen number;
 CURSOR CUR1 IS SELECT * FROM TERMS_TABLE ;

 BEGIN
  EXECUTE IMMEDIATE ('TRUNCATE TABLE COMMA_SEP_TABLE);

  FOR R IN CUR1
  LOOP
  DBMS_UTILITY.comma_to_table (R.TERMS_ARRAY, l_tablen, l_tab);

  FOR i IN 1 .. l_tablen
  LOOP
     INSERT INTO COMMA_SEP_TABLE
          VALUES (R.DOC_ID, l_tab (i));

     COMMIT;
  END LOOP;
 END LOOP;
 END;

How can separate commas ?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T23:57:04+00:00Added an answer on May 26, 2026 at 11:57 pm

    …..Here is the answer if you are using Oracle 10g and above:

    SELECT doc_id,REGEXP_SUBSTR(terms_table.terms_array,'[^,]+',1,LEVEL) term 
    FROM terms_table  
    CONNECT BY LEVEL <= LENGTH(REGEXP_REPLACE(terms_table.terms_array,'[^,]+')) + 1
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an oracle table which has a column that stores XML in a
we have a table in an Oracle Database which contains a column with the
We have a Oracle 9i database and OrderDetails table which has a column to
I have an Oracle table with data that looks like this: ID BATCH STATUS
I have an Oracle (10.2.0.4) database table with a column which is encrypted by
I have an oracle table with a column from type SYS.XMLTYPE and a storage
I have a table column that needs to be limited to a certain width
I have a table in Oracle 10g that contains some information as follows: SQL>
I have a query which retrieves the data from Oracle DB. The table which
I have this table in an Oracle DB which has a primary key defined

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.