<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/"><channel><title>Oracle on Thaimeo Blog</title><link>https://blog.thaimeo.info/tag/oracle/</link><description>Recent content in Oracle on Thaimeo Blog</description><generator>Hugo</generator><language>en</language><lastBuildDate>Tue, 03 Mar 2015 17:35:55 +0000</lastBuildDate><atom:link href="https://blog.thaimeo.info/tag/oracle/index.xml" rel="self" type="application/rss+xml"/><item><title>Tách chuỗi thành mảng trong oracle</title><link>https://blog.thaimeo.info/2015/03/03/tach-chuoi-thanh-mang-trong-oracle/</link><pubDate>Tue, 03 Mar 2015 17:35:55 +0000</pubDate><guid>https://blog.thaimeo.info/2015/03/03/tach-chuoi-thanh-mang-trong-oracle/</guid><description>/* Formatted on 3/4/2015 12:32:08 AM (QP5 v5.126) */ DECLARE l_input VARCHAR2 (4000) := ‘1,2,3’; l_count BINARY_INTEGER; l_array DBMS_UTILITY.lname_array; BEGIN SELECT param_value INTO l_input FROM item_param_detail WHERE param_value LIKE ‘TO%,%’; DBMS_UTILITY.comma_to_table ( list =&amp;gt; REGEXP_REPLACE (l_input, ‘(^|,)’, ‘\1x’), tablen =&amp;gt; l_count, tab =&amp;gt; l_array); DBMS_OUTPUT.put_line (l_count); FOR i IN 1 .. l_count LOOP DBMS_OUTPUT.put_line( ‘Element … Read more</description></item></channel></rss>