User Profile

Collapse

Profile Sidebar

Collapse
dchamber
dchamber
Last Activity: Jan 11 '12, 04:39 PM
Joined: Dec 7 '11
Location: Warner Robins, GA, USA
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • dchamber
    started a topic What is Cloud Computing?

    What is Cloud Computing?

    What is Cloud Computing?

    While this is a common question it is not easy to answer. The quick answer is that cloud computing is computing, in the cloud. But this gives us the question - what is the cloud? Is it just a new name from client server or N-Tier architecture? The complete answer is more complex.

    In fact, there are several definitions for cloud computing. Technical authorities differ on the definitions and the...
    See more | Go to post
    Last edited by sicarie; Dec 8 '11, 04:17 PM. Reason: Removing link to personal site

  • Here is a way to do it with straight SQL in Oracle. This uses the CSV string a,b,c,d ; However, it could be any string.

    Code:
    select substr(csv, 
       instr(csv,',',1,lev) + 1, 
       instr(csv,',',1,lev+1 )-instr(csv,',',1,lev)-1) 
    from 
      (select ','||'a,b,c,d'||',' csv from dual), 
      (select level lev from dual connect by level <= 100) 
    where lev <= length(csv)-length(replace(csv,','))-1;
    See more | Go to post
    Last edited by sicarie; Dec 12 '11, 03:13 AM. Reason: removing link to personal website; adding code tags

    Leave a comment:

No activity results to display
Show More
Working...