How to turn columns into rows

Hi. Does anyone know how to turn columns into rows ie:
select field1, field2, field3, field4, field5 from table
desired result:
field1 field2
field1 field3
field1 field4
field1 field5
Thank you!

Something like this ?
select field1
, case n.l
when 1 then field2
when 2 then field3
when 3 then field4
when 4 then field5
end field
from table
, (select level l from dual connect by level <= 4) n

Similar Messages

  • How to convert columns into rows using  transpose function

    Hi
    anybody tell me how to convert columns values into rows using transpose function.

    Since BluShadow went to all the trouble to put it together, someone should use it.
    See the post titled How do I convert rows to columns? here SQL and PL/SQL FAQ
    John

  • How to split columns into rows

    Hi All,
    Below is my table structure:=
    SQL> create table split(id number,value varchar2(200));
    Table created.
    SQL> insert into split values(1,'X,Y,Z');
    1 row created.
    SQL> insert into split values(2,'A,B,C');
    1 row created.
    SQL> commit;
    Commit complete.
    Expected Output
    ID Value
    1 X
    1 Y
    1 Z
    2 A
    2 B
    3 C
    I know the feature of converting rows into columns by listagg in Oracle 11g, but is there any feature to convert rows into columns based on a delemiter..."," in my case.
    Please help....
    Thanks
    Arijit

    >
    is there any feature to convert rows into columns based on a delemiter
    >
    Here is one way
    VAR csv VARCHAR2(100)EXEC :csv := 'abc,de,fg,hij,klmn,o,pq,rst,uvw,xyz';
    The query:
    WITH data AS( SELECT SUBSTR(csv, INSTR(csv,',',1,LEVEL)+1,                     INSTR(csv,',',1,LEVEL+1) - INSTR(csv,',',1,LEVEL)-1 ) token    FROM ( SELECT ','||:csv||',' csv FROM SYS.DUAL ) CONNECT BY LEVEL < LENGTH(:csv)-LENGTH(REPLACE(:csv,',',''))+2 )SELECT token  FROM data;See http://projectwownow.blogspot.com/2010/02/oracle-convert-csv-string-into-rows.html

  • How to convert  columns into rows

    present result
    Mat_num        comp_code   disc          amount     
    800000     SG01      SAPLF005                    0.00
    800000     SG01      SAPLF005               31,500.00
    6300001    SPM       SAPLF005                    0.00
    6300001    SPM       SAPLF005              108,888.00
    APS100     SMTP      SAPLF005                    0.00
    APS100     SMTP      SAPLF005                    0.00
    required format
    Mat_num       disc             SG01          SMTP          SPM
    800000   SAPLF005   31,500.00           0.00          0.00
    800000   SAPLF005        0.00           0.00          0.00 
    6300001  SAPLF005        0.00         0.00     108,888.00     
    6300001  SAPLF005        0.00         0.00           0.00  
    APS100   SAPLF005        0.00         0.00           0.00 
    APS100   SAPLF005        0.00         0.00           0.00
    Plain Text Attachment [ Scan and Save to Computer ]
    REPORT  Z_CALC2                                 .
    TABLES : KNC1.
    TYPE-POOLS: SLIS.
      type-pools : abap.
    field-symbols: <dyn_table> type standard table,
                   <dyn_wa>,
                   <dyn_field>.
    data: dy_table type ref to data,
          dy_line  type ref to data,
          xfc type lvc_s_fcat,
          ifc type lvc_t_fcat.
    DATA: BEGIN OF ITAB OCCURS 0,
              KUNNR LIKE KNC1-KUNNR,
              BUKRS LIKE KNC1-BUKRS,
              GJAHR LIKE KNC1-GJAHR,
              USNAM LIKE KNC1-USNAM,
              UMSAV LIKE KNC1-UMSAV,
          END OF ITAB.
    *Result table
    TYPES BEGIN OF RES_ITAB.
    * RES_ITAB(10) TYPE C DEFAULE 'ZRES_ITAB'.
    INCLUDE STRUCTURE ZRES_ITAB.
    TYPES END OF RES_ITAB.
    SELECT-OPTIONS : CCODE FOR KNC1-BUKRS DEFAULT 'SG01' TO 'SPM '.
    DATA : BEGIN OF COMP_ITAB OCCURS 0,
              BUKRS LIKE KNC1-BUKRS,
           END OF COMP_ITAB.
    DATA: COLS TYPE I,
          gap(10) TYPE c,
          Company_title type string .
    start-of-selection.
      perform get_NUM_COLS.
      perform get_structure.
      perform create_dynamic_itab.
      perform get_data.
    *  perform write_out.
    FORM GET_NUM_COLS.
    SELECT KUNNR BUKRS GJAHR USNAM UMSAV INTO TABLE ITAB FROM KNC1 WHERE
    BUKRS IN CCODE.
    CLEAR ITAB.
    *CLEAR RES_ITAB.
    LOOP AT ITAB .
         COMP_ITAB-BUKRS = ITAB-BUKRS.
         APPEND COMP_ITAB.
    CLEAR COMP_ITAB.
    ENDLOOP.
    SORT COMP_ITAB BY BUKRS.
    DELETE ADJACENT DUPLICATES FROM COMP_ITAB.
    DESCRIBE TABLE COMP_ITAB LINES COLS.
    ENDFORM.
    *Get table structure
    form get_structure.
    data : idetails type abap_compdescr_tab,
           xdetails type abap_compdescr.
    data : ref_table_des type ref to cl_abap_structdescr.
    data fld_pos type i value 1.
    * Get the structure of the table.
      ref_table_des ?=
                  cl_abap_typedescr=>describe_by_name( 'ZRES_ITAB' ).
      idetails[] = ref_table_des->components[].
      loop at idetails into xdetails.
        clear xfc.
        XFC-COL_POS = fld_pos.
        xfc-fieldname = xdetails-name .
        xfc-datatype = xdetails-type_kind.
        xfc-inttype = xdetails-type_kind.
        xfc-intlen = xdetails-length.
        xfc-decimals = xdetails-decimals.
        append xfc to ifc.
        fld_pos = fld_pos + 1.
      endloop.
      DO  COLS TIMES.
        clear xfc.
        READ TABLE COMP_ITAB INDEX SY-INDEX.
        XFC-COL_POS = fld_pos.
        xfc-fieldname = COMP_ITAB-BUKRS .
        xfc-datatype = 'F'.
    *    xfc-inttype = 'F'.   'details-type_kind.
        xfc-intlen = 14.
    *    xfc-decimals = xdetails-decimals.
        append xfc to ifc.
        fld_pos = fld_pos + 1.
      ENDDO.
      clear xfc.
        XFC-COL_POS = fld_pos.
        xfc-fieldname = 'RECORD_TOTAL' .
        xfc-datatype = 'F'.
        xfc-inttype  = 'F'.
        xfc-intlen = 14.
    *    xfc-decimals = xdetails-decimals.
        append xfc to ifc.
    endform.
    form create_dynamic_itab.
    * Create dynamic internal table and assign to FS
      call method cl_alv_table_create=>create_dynamic_table
                   exporting
                      it_fieldcatalog = ifc
                   importing
                      ep_table        = dy_table.
      assign dy_table->* to <dyn_table>.
    * Create dynamic work area and assign to FS
      create data dy_line like line of <dyn_table>.
      assign dy_line->* to <dyn_wa>.
    endform.
    form get_data.
    LOOP AT ITAB.
            <DYN_WA>-KUNNR = ITAB-KUNNR.
            <DYN_WA>-USNAM = ITAB-USNAM.
            DO COLS TIMES.
               IF <DYN_WA>
    DESCRIBE TABLE <dyn_table>.
    *WRITE:/ SY-TFILL.
    * Select Data from table.
    * <dyn_table> = ITAB[].
    *LOOP AT ITAB.
    *    RES-KUNNR = ITAB-KUNNR.
    *    RES-USNAM = ITAB-USNAM.
    *    CASE ITAB-GJAHR.
    *        WHEN 2005.
    *            RES-UMSAV1 = ITAB-UMSAV.
    *        WHEN 2006.
    *            RES-UMSAV2 = ITAB-UMSAV.
    *        WHEN 2007.
    *            RES-UMSAV3 = ITAB-UMSAV.
    *    ENDCASE.
    *    RES-TOTAL = RES-UMSAV1 + RES-UMSAV2 + RES-UMSAV3 .
    * APPEND RES.
    *ENDLOOP.
    endform.
    form write_out.
      loop at <dyn_table> into <dyn_wa>.
        do.
          assign component  sy-index
             of structure <dyn_wa> to <dyn_field>.
          if sy-subrc <> 0.
            exit.
          endif.
          if sy-index = 1.
            write:/ <dyn_field>.
          else.
            write: <dyn_field>.
          endif.
        enddo.
      endloop.
    endform.
    Edited by: Alvaro Tejada Galindo on Feb 28, 2008 11:56 AM

    solved myself

  • How to display the rows in to columns and columns into rows?

    DES:- I know by using pivot and unpivot you can convert rows into columns and columns into rows but i don't know how to write the syntax?

    Hi,
    Besides the places Martin mentioned above, there are many examples in the forum FAQ:
    https://community.oracle.com/message/9362005#9362005
    For an example of both PIVOT and UNPIVOT in the same query, see
    http://forums.oracle.com/forums/thread.jspa?threadID=920854&tstart=0

  • Problem in displaying the data of columns into rows in sap script

    hi,
    i am working on a sap script and i have to display the dat which is displayed in column into rows but it is not displaying it properly.
    eg, C
        12.1
        Si
        5.5
    it is displaying the data right now like this but i want to display the  data like this:-
    eg, C      Si
        12.1   5.5
    plzzprovide me guidelines how to solve this problem.

    hi,
    i am using this code to display the data:-
    plzz provide me guidelines where i am getting wrong?
    TOPparCOMPONENT DESP,,,,,, INS. LOT #, , , , , , MIC,,,,,,,,,, MIC VALUEparENDTOPparFINAL
    PROTECT
    IF &I_FINAL-PRUEFLOS& NE '000000000000'
    &I_FINAL-MAKTX(23)&&i_final-prueflos(12Z)&
    &I_FINAL-kurztext(25)&
    &I_FINAL-original_input(8)&
    ELSE
    &I_FINAL-MAKTX(23)&     
    &I_FINAL-kurztext(25)&
    &I_FINAL-original_input(8)&
    ENDIF
    ENDPROTECT
    ITEMHEAD
    POSITION WINDOW
    SIZE WIDTH +0 . 4 CH HEIGHT +1 LN
    BOX FRAME 10 TW
    BOX HEIGHT '1.35' LN INTENSITY 20
    IF &PAGE& = '1'
    BOX XPOS '0' CH YPOS '0' CM WIDTH '0' CM HEIGHT '43' LN FRAME '10' TW
    For horizontal line at top
    BOX XPOS '0' CH YPOS '0' CM WIDTH '75' CH HEIGHT '0' LN FRAME '10' TW
    COLUMN LINES...
    END OF COLUMN LINES...
    BOX XPOS '0' CH YPOS '43' LN WIDTH '75' CH HEIGHT '0' LN FRAME '10'TW
    BOX XPOS '75' CH YPOS '0' LN WIDTH '0' CH HEIGHT '43' LN FRAME '10'TW
    ELSE
    COLUMN LINES...
    END OF COLUMN LINES...
    BOX XPOS '0' CH YPOS '0' CM WIDTH '0' CM HEIGHT '47' LN FRAME '10' TW
    BOX XPOS '0' CH YPOS '0' CM WIDTH '75' CH HEIGHT '0' LN FRAME '10' TW
    BOX XPOS '0' CH YPOS '0' CM WIDTH '45' CM HEIGHT '0' LN FRAME '10' TW
    BOX XPOS '20' CH YPOS '0' CM WIDTH '0' CM HEIGHT '47' LN FRAME '10' TW
    BOX XPOS '0' CH YPOS '47' LN WIDTH '75' CH HEIGHT '0' LN FRAME '10'TW
    BOX XPOS '75' CH YPOS '0' LN WIDTH '0' CH HEIGHT '47' LN FRAME '10'TW
    ENDIF
    LINEFEED
    NEWPAGE
    NEW-PAGE
    provide me guidelines to solve this problem.
    Edited by: ricx .s on Mar 13, 2009 5:58 AM

  • Transpose columns into rows

    hi ,
    i need to transpose columns into rows ,
    i know i can use the UNION ALL but my num of columns will most likely not be fixed so how can i do that ?
    pls advise

    This is from one of the forms link,, i reallyy dont know the link, but i guess this is "adrains" code
    SQL> WITH ilv AS (
      2      SELECT str || ','                                   AS str
      3      ,     (LENGTH(str) - LENGTH(REPLACE(str, ','))) + 1 AS no_of_elements
      4      FROM   t
      5      )
      6  SELECT RTRIM(str, ',')                              AS original_string
      7  ,      SUBSTR(str, start_pos, (next_pos-start_pos)) AS single_element
      8  ,      element_no
      9  FROM  (
    10         SELECT ilv.str
    11         ,      nt.column_value AS element_no
    12         ,      INSTR(
    13                   ilv.str,
    14                   ',',
    15                   DECODE(nt.column_value, 1, 0, 1),
    16                   DECODE(nt.column_value, 1, 1, nt.column_value-1)) + 1 AS start_pos
    17         ,      INSTR(
    18                   ilv.str,
    19                   ',',
    20                   1,
    21                   DECODE(nt.column_value, 1, 1, nt.column_value)) AS next_pos
    22         FROM   ilv
    23         ,      TABLE(
    24                   CAST(
    25                      MULTISET(
    26                         SELECT ROWNUM FROM dual CONNECT BY ROWNUM < ilv.no_of_elements
    27                         ) AS number_ntt )) nt
    28        );
    ORIGINAL_STRING                 SINGLE_ELEMENT  ELEMENT_NO
    X,Y,Z                           X                        1
    X,Y,Z                           Y                        2
    X,Y,Z                           Z                        3
    XXX,Y,ZZ,AAAAA,B,CCC,D,E,F,GGG  XXX                      1
    XXX,Y,ZZ,AAAAA,B,CCC,D,E,F,GGG  Y                        2
    XXX,Y,ZZ,AAAAA,B,CCC,D,E,F,GGG  ZZ                       3
    XXX,Y,ZZ,AAAAA,B,CCC,D,E,F,GGG  AAAAA                    4
    XXX,Y,ZZ,AAAAA,B,CCC,D,E,F,GGG  B                        5
    XXX,Y,ZZ,AAAAA,B,CCC,D,E,F,GGG  CCC                      6
    XXX,Y,ZZ,AAAAA,B,CCC,D,E,F,GGG  D                        7
    XXX,Y,ZZ,AAAAA,B,CCC,D,E,F,GGG  E                        8
    XXX,Y,ZZ,AAAAA,B,CCC,D,E,F,GGG  F                        9
    XXX,Y,ZZ,AAAAA,B,CCC,D,E,F,GGG  GGG                     10
    13 rows selected.
    Note that the above SQL performs the following steps:
        * determines how many elements are in each string (WITH clause);
        * for each string, generates a collection of n elements (TABLE expression), where n is the derived number of elements in the string. Note in particular the use of "less than" in the "CONNECT BY ROWNUM < ilv.no_of_elements" on line 26. In all versions other than 10.1.x, this will need to be "CONNECT BY ROWNUM <= ilv.no_of_elements" (i.e. "less than or equal to"). There is an unusual bug with this row-generation technique in 10.1 that generates an additional row from the CONNECT BY;
        * uses the generated rows in a Cartesian Product with the original data to generate n rows per string, based on the above definition of n;
        * calculates the start and end position of each element in each string (INSTR); and
        * cuts each element from each string (SUBSTR).

  • One Column into Rows

    I have data in a table that looks like below:
    ColumnA               ColumnB
    123                    abc|cde|fgr
    345                    def|ght|sew
    890                    deq|nmk|lop|lip|fre|dwsThere is no limit on how many values you can have in ColumnB and they are pipe delimited.
    I need to split this one column into rows as:
    ColumnA               ColumnB
    123                    abc
    123                    cde
    123                    fgr
    345                    def
    345                    ght
    890                    fre
    890                    dwsThanks in advance!

    with sample_data as (
                         select 123 columna,'abc|cde|fgr' columnb from dual union all
                         select 345,'def|ght|sew' from dual union all
                         select 890,'deq|nmk|lop|lip|fre|dws' from dual
    select  columna,
            regexp_substr(columnb,'[^|]+',1,column_value) columnb
      from  sample_data,
            table(
                  cast(
                       multiset(
                                select  level
                                  from  dual
                                  connect by level <= length(regexp_replace(columnb || '|','[^|]'))
                       as sys.OdciNumberList
      order by columna,
               column_value
       COLUMNA COLUMNB
           123 abc
           123 cde
           123 fgr
           345 def
           345 ght
           345 sew
           890 deq
           890 nmk
           890 lop
           890 lip
           890 fre
       COLUMNA COLUMNB
           890 dws
    12 rows selected.
    SQL> SY.

  • HOW TO TURN $6 INTO $6,000!!!!!! READING THIS COULD CHANGE YOUR LIFE!

    HOW TO TURN $6 INTO $6,000!!!!!! READING THIS COULD CHANGE
    YOUR LIFE!
    I found this on a bulletin board and decided to try it. A
    little while back,
    I was browsing through newsgroups, just like you are now, and
    came across an
    article similar to this that said you could make thousands of
    dollars within
    weeks with only an initial investment of $6.00! So I thought,
    Yeah right,
    this must be a scam,but like most of us, I was curious, so I
    kept reading.
    Anyway, it said that you send $1.00 to each of the 6 names
    and address
    stated in the article. You then place your own name and
    address in the
    bottom of the list at #6, and post the article in at least
    200 newsgroups.
    (There are thousands) No catch, that was it. So after
    thinking it over, and
    talking to a few people first, I thought about trying it. I
    figured: what
    have I got to lose except 6
    stamps and $6.00, right? Then I invested the measly $6.00.
    Well GUESS
    WHAT!!...
    within 7 days, I started getting money in the mail! I was
    shocked! I figured
    it would end soon, but the money just kept coming in. In my
    first week, I
    made about $25.00. By the end of the second week I had made a
    total of over
    $1,000.00! In the third week I had over $10,000.00 and it's
    still growing.
    This is now my fourth week and I have made a total of just
    over $42,000.00
    and it's still coming in rapidly. It's certainly worth $6.00,
    and 6 stamps,
    I have spent more than that on the lottery!! Let me tell you
    how this works
    and most importantly, why it works....Also, make sure you
    print a copy of
    this article NOW, so you can get the information off of it as
    you need it. I
    promise you
    that if you follow the directions exactly, that you will
    start making more
    money than you thought possible by doing something so easy!
    Suggestion: Read this entire message carefully! (Print it out
    or download
    it.) Follow the simple directions and watch the money come
    in! It's easy.
    It's legal. And, your investment is only $6.00 (Plus postage)
    IMPORTANT: This is not a rip-off; it is not indecent; it is
    not illegal; and
    it is virtually no risk - it really works!!!! If all of the
    following
    instructions are adhered to, you will receive extraordinary
    dividends.
    PLEASE NOTE: Please follow these directions EXACTLY, and
    $50,000 or more can
    be yours in 20 to 60 days. This program remains successful
    because of the
    honesty and integrity of the participants. Please continue
    its success by
    carefully
    adhering to the instructions. You will now become part of the
    Mail Order
    business. In this business your product is not solid and
    tangible, it's a
    service. You are in the business of developing Mailing Lists.
    Many large
    corporations are happy to pay big bucks for quality lists.
    However, the
    money made from the mailing lists is secondary to the income
    which is made
    from people like you and me asking to be included in that
    list. Here are the
    4 easy steps to success:
    STEP 1: Get 6 separate pieces of paper and write the
    following on each piece
    of paper; PLEASE PUT ME ON YOUR MAILING LIST. Now get 6 US
    $1.00 bills and
    place ONE inside EACH of the 6 pieces of paper so the bill
    will not be seen
    through the envelope (to prevent thievery). Next, place one
    paper in each of
    the 6 envelopes and seal them. You should now have 6 sealed
    envelopes, each
    with a piece of paper stating the above phrase, your name and
    address, and a
    $1.00 bill. What you are doing is creating a service. THIS IS
    ABSOLUTELY
    LEGAL! You are requesting a legitimate service and you are
    paying for it!
    Like most of us I was a little skeptical and a little worried
    about the
    legal aspects of it all. So I checked it out with the U.S.
    Post Office
    (1-800-725-2161) and they
    confirmed that it is indeed legal! Mail the 6 envelopes to
    the following
    addresses:
    Mailing Adresses
    Stephanie Hicks
    1283 Evening Canyon
    Henderson NV 89014
    Ross Wilson
    202 Belmont Dr.
    Thibodaux, LA 70301
    James Small
    4690 Sierra St.
    Riverside, CA 92504
    Thomas G.
    P.O. Box 591939
    Houston, TX 77259
    S. Parker
    159 Main Street
    Dadeville, Alabama 36853
    A. Wyman
    9734 Landowne ct.
    Orlando, FL 32817
    STEP 2: Now take the #1 name off the list that you see above,
    move the other
    names up (6 becomes 5, 5 becomes 4, etc...) and add YOUR Name
    as number 6 on
    the list.
    STEP 3: Change anything you need to, but try to keep this
    article as close
    to
    original as possible. Now, post your amended article to at
    least 200
    newsgroups. (I think there are close to 24,000 groups) All
    you need is 200,
    but remember, the more you post, the more money you make!
    This is perfectly
    legal! If you have any doubts, refer to Title 18 Sec. 1302
    & 1341 of the
    Postal lottery laws. Keep a copy of these steps for yourself
    and, whenever
    you need money, you can use it again, and again.
    PLEASE REMEMBER that this program remains successful because
    of the honesty
    and integrity of the participants and by their carefully
    adhering to the
    directions. Look at it this way. If you are of integrity, the
    program will
    continue and the money that so many others have received will
    come your way.
    NOTE: You may want to retain every name and address sent to
    you, either on a
    computer or hard copy and keep the notes people send you.
    This VERIFIES that
    you are truly providing a service. (Also, it might be a good
    idea to wrap
    the $1 bill in dark paper to reduce the risk of mail theft.)
    So, as each
    post is downloaded and the directions carefully followed, six
    members will
    be reimbursed for their participation as a List Developer
    with one dollar
    each. Your name will move up the list geometrically so that
    when your name
    reaches the #1 position you will be receiving thousands of
    dollars in
    CASH!!! What an opportunity for only $6.00 ($1.00 for each of
    the first six
    people listed above) Send it now, add your own name to the
    list and you're
    in business!
    ---DIRECTIONS ----- FOR HOW TO POST TO NEWSGROUPS------------
    Step 1) You do
    not need to re-type this entire letter to do your own
    posting. Simply put
    your cursor at the beginning of this letter and drag your
    cursor to the
    bottom of this document, and select 'copy' from the edit
    menu. This will
    copy the entire letter into the computer's memory.
    Step 2) Open a blank 'notepad' file and place your cursor at
    the top of the
    blank page. From the 'edit' menu select 'paste'. This will
    paste a copy of
    the letter into notepad so that you can add your name to the
    list.
    Step 3) Save your new notepad file as a .txt file. If you
    want to do your
    postings in different settings, you'll always have this file
    to go back to.
    Step 4) Use Netscape or Internet explorer and try searching
    for various
    newsgroups (on-line forums, message boards, chat sites,
    discussions.) Step
    5) Visit these message boards and post this article as a new
    message by
    highlighting the text of this letter and selecting paste from
    the edit menu.
    Fill in the Subject, this will be the header that everyone
    sees as they
    scroll through the list of postings in a particular group,
    click the post
    message button. You're done with your first one!
    Congratulations...THAT'S
    IT! All you have to do is jump to different newsgroups and
    post away, after
    you get the hang of it, it will take about 30 seconds for
    each newsgroup!
    **REMEMBER, THE MORE NEWSGROUPS YOU POST IN, THE MORE MONEY
    YOU WILL MAKE!!
    BUT YOU HAVE TO POST A MINIMUM OF 200**
    That's it! You will begin receiving money from around the
    world within days!
    You may eventually want to rent a P.O.Box due to the large
    amount of mail
    you will receive. If you wish to stay anonymous, you can
    invent a name to
    use, as long as the postman will deliver it.
    **JUST MAKE SURE ALL THE ADDRESSES ARE CORRECT.** Now the WHY
    part: Out of
    200 postings, say I receive only 5 replies (a very low
    example). So then I
    made $5.00 with my name at #6 on the letter. Now, each of
    the 5 persons who just sent me $1.00 make the MINIMUM 200
    postings, each
    with my name at #5 and only 5 persons respond to each of the
    original 5,
    that is another $25.00 for me, now those 25 each make 200
    MINIMUM posts with
    my name at #4 and only 5 replies each, I will bring in an
    additional
    $125.00! Now, those 125 persons turn around and post the
    MINIMUM 200 with my
    name at #3 and only receive 5 replies each, I will make an
    additional
    $626.00! OK, now here is the fun part, each of those 625
    persons post a
    MINIMUM 200 letters with my name at #2 and they each only
    receive 5 replies,
    that just made me $3,125.00!!! Those
    3,125 persons will all deliver this message to 200 newsgroups
    with my name
    at #1 and if still 5 persons per 200 newsgroups react I will
    receive
    $15,625,00!With an original investment of only $6.00!
    AMAZING! When your
    name is no longer on the list, you just take the latest
    posting in the
    newsgroups, and send out another $6.00 to names on the list,
    putting your
    name at number 6 again. And start posting again. The thing to
    remember is:
    do you realize that thousands of people all over the world
    are joining the
    internet and reading these articles
    everyday?, JUST LIKE YOU are now!! So, can you afford $6.00
    and see if it
    really works?? I think so... People have said, "e;what if the
    plan is played
    out and no one sends you the money? So what! What are the
    chances of that
    happening when there are tons of new honest users and new
    honest people who
    are joining the internet and newsgroups everyday and are
    willing to give it
    a try?
    Estimates are at 20,000 to 50,000 new users, every day, with
    thousands of
    those joining the actual internet.
    Remember: play FAIRLY and HONESTLY and this will really work.

    HOW TO TURN $6 INTO $6,000!!!!!! READING THIS COULD CHANGE
    YOUR LIFE!
    I found this on a bulletin board and decided to try it. A
    little while back,
    I was browsing through newsgroups, just like you are now, and
    came across an
    article similar to this that said you could make thousands of
    dollars within
    weeks with only an initial investment of $6.00! So I thought,
    Yeah right,
    this must be a scam,but like most of us, I was curious, so I
    kept reading.
    Anyway, it said that you send $1.00 to each of the 6 names
    and address
    stated in the article. You then place your own name and
    address in the
    bottom of the list at #6, and post the article in at least
    200 newsgroups.
    (There are thousands) No catch, that was it. So after
    thinking it over, and
    talking to a few people first, I thought about trying it. I
    figured: what
    have I got to lose except 6
    stamps and $6.00, right? Then I invested the measly $6.00.
    Well GUESS
    WHAT!!...
    within 7 days, I started getting money in the mail! I was
    shocked! I figured
    it would end soon, but the money just kept coming in. In my
    first week, I
    made about $25.00. By the end of the second week I had made a
    total of over
    $1,000.00! In the third week I had over $10,000.00 and it's
    still growing.
    This is now my fourth week and I have made a total of just
    over $42,000.00
    and it's still coming in rapidly. It's certainly worth $6.00,
    and 6 stamps,
    I have spent more than that on the lottery!! Let me tell you
    how this works
    and most importantly, why it works....Also, make sure you
    print a copy of
    this article NOW, so you can get the information off of it as
    you need it. I
    promise you
    that if you follow the directions exactly, that you will
    start making more
    money than you thought possible by doing something so easy!
    Suggestion: Read this entire message carefully! (Print it out
    or download
    it.) Follow the simple directions and watch the money come
    in! It's easy.
    It's legal. And, your investment is only $6.00 (Plus postage)
    IMPORTANT: This is not a rip-off; it is not indecent; it is
    not illegal; and
    it is virtually no risk - it really works!!!! If all of the
    following
    instructions are adhered to, you will receive extraordinary
    dividends.
    PLEASE NOTE: Please follow these directions EXACTLY, and
    $50,000 or more can
    be yours in 20 to 60 days. This program remains successful
    because of the
    honesty and integrity of the participants. Please continue
    its success by
    carefully
    adhering to the instructions. You will now become part of the
    Mail Order
    business. In this business your product is not solid and
    tangible, it's a
    service. You are in the business of developing Mailing Lists.
    Many large
    corporations are happy to pay big bucks for quality lists.
    However, the
    money made from the mailing lists is secondary to the income
    which is made
    from people like you and me asking to be included in that
    list. Here are the
    4 easy steps to success:
    STEP 1: Get 6 separate pieces of paper and write the
    following on each piece
    of paper; PLEASE PUT ME ON YOUR MAILING LIST. Now get 6 US
    $1.00 bills and
    place ONE inside EACH of the 6 pieces of paper so the bill
    will not be seen
    through the envelope (to prevent thievery). Next, place one
    paper in each of
    the 6 envelopes and seal them. You should now have 6 sealed
    envelopes, each
    with a piece of paper stating the above phrase, your name and
    address, and a
    $1.00 bill. What you are doing is creating a service. THIS IS
    ABSOLUTELY
    LEGAL! You are requesting a legitimate service and you are
    paying for it!
    Like most of us I was a little skeptical and a little worried
    about the
    legal aspects of it all. So I checked it out with the U.S.
    Post Office
    (1-800-725-2161) and they
    confirmed that it is indeed legal! Mail the 6 envelopes to
    the following
    addresses:
    Mailing Adresses
    Stephanie Hicks
    1283 Evening Canyon
    Henderson NV 89014
    Ross Wilson
    202 Belmont Dr.
    Thibodaux, LA 70301
    James Small
    4690 Sierra St.
    Riverside, CA 92504
    Thomas G.
    P.O. Box 591939
    Houston, TX 77259
    S. Parker
    159 Main Street
    Dadeville, Alabama 36853
    A. Wyman
    9734 Landowne ct.
    Orlando, FL 32817
    STEP 2: Now take the #1 name off the list that you see above,
    move the other
    names up (6 becomes 5, 5 becomes 4, etc...) and add YOUR Name
    as number 6 on
    the list.
    STEP 3: Change anything you need to, but try to keep this
    article as close
    to
    original as possible. Now, post your amended article to at
    least 200
    newsgroups. (I think there are close to 24,000 groups) All
    you need is 200,
    but remember, the more you post, the more money you make!
    This is perfectly
    legal! If you have any doubts, refer to Title 18 Sec. 1302
    & 1341 of the
    Postal lottery laws. Keep a copy of these steps for yourself
    and, whenever
    you need money, you can use it again, and again.
    PLEASE REMEMBER that this program remains successful because
    of the honesty
    and integrity of the participants and by their carefully
    adhering to the
    directions. Look at it this way. If you are of integrity, the
    program will
    continue and the money that so many others have received will
    come your way.
    NOTE: You may want to retain every name and address sent to
    you, either on a
    computer or hard copy and keep the notes people send you.
    This VERIFIES that
    you are truly providing a service. (Also, it might be a good
    idea to wrap
    the $1 bill in dark paper to reduce the risk of mail theft.)
    So, as each
    post is downloaded and the directions carefully followed, six
    members will
    be reimbursed for their participation as a List Developer
    with one dollar
    each. Your name will move up the list geometrically so that
    when your name
    reaches the #1 position you will be receiving thousands of
    dollars in
    CASH!!! What an opportunity for only $6.00 ($1.00 for each of
    the first six
    people listed above) Send it now, add your own name to the
    list and you're
    in business!
    ---DIRECTIONS ----- FOR HOW TO POST TO NEWSGROUPS------------
    Step 1) You do
    not need to re-type this entire letter to do your own
    posting. Simply put
    your cursor at the beginning of this letter and drag your
    cursor to the
    bottom of this document, and select 'copy' from the edit
    menu. This will
    copy the entire letter into the computer's memory.
    Step 2) Open a blank 'notepad' file and place your cursor at
    the top of the
    blank page. From the 'edit' menu select 'paste'. This will
    paste a copy of
    the letter into notepad so that you can add your name to the
    list.
    Step 3) Save your new notepad file as a .txt file. If you
    want to do your
    postings in different settings, you'll always have this file
    to go back to.
    Step 4) Use Netscape or Internet explorer and try searching
    for various
    newsgroups (on-line forums, message boards, chat sites,
    discussions.) Step
    5) Visit these message boards and post this article as a new
    message by
    highlighting the text of this letter and selecting paste from
    the edit menu.
    Fill in the Subject, this will be the header that everyone
    sees as they
    scroll through the list of postings in a particular group,
    click the post
    message button. You're done with your first one!
    Congratulations...THAT'S
    IT! All you have to do is jump to different newsgroups and
    post away, after
    you get the hang of it, it will take about 30 seconds for
    each newsgroup!
    **REMEMBER, THE MORE NEWSGROUPS YOU POST IN, THE MORE MONEY
    YOU WILL MAKE!!
    BUT YOU HAVE TO POST A MINIMUM OF 200**
    That's it! You will begin receiving money from around the
    world within days!
    You may eventually want to rent a P.O.Box due to the large
    amount of mail
    you will receive. If you wish to stay anonymous, you can
    invent a name to
    use, as long as the postman will deliver it.
    **JUST MAKE SURE ALL THE ADDRESSES ARE CORRECT.** Now the WHY
    part: Out of
    200 postings, say I receive only 5 replies (a very low
    example). So then I
    made $5.00 with my name at #6 on the letter. Now, each of
    the 5 persons who just sent me $1.00 make the MINIMUM 200
    postings, each
    with my name at #5 and only 5 persons respond to each of the
    original 5,
    that is another $25.00 for me, now those 25 each make 200
    MINIMUM posts with
    my name at #4 and only 5 replies each, I will bring in an
    additional
    $125.00! Now, those 125 persons turn around and post the
    MINIMUM 200 with my
    name at #3 and only receive 5 replies each, I will make an
    additional
    $626.00! OK, now here is the fun part, each of those 625
    persons post a
    MINIMUM 200 letters with my name at #2 and they each only
    receive 5 replies,
    that just made me $3,125.00!!! Those
    3,125 persons will all deliver this message to 200 newsgroups
    with my name
    at #1 and if still 5 persons per 200 newsgroups react I will
    receive
    $15,625,00!With an original investment of only $6.00!
    AMAZING! When your
    name is no longer on the list, you just take the latest
    posting in the
    newsgroups, and send out another $6.00 to names on the list,
    putting your
    name at number 6 again. And start posting again. The thing to
    remember is:
    do you realize that thousands of people all over the world
    are joining the
    internet and reading these articles
    everyday?, JUST LIKE YOU are now!! So, can you afford $6.00
    and see if it
    really works?? I think so... People have said, "e;what if the
    plan is played
    out and no one sends you the money? So what! What are the
    chances of that
    happening when there are tons of new honest users and new
    honest people who
    are joining the internet and newsgroups everyday and are
    willing to give it
    a try?
    Estimates are at 20,000 to 50,000 new users, every day, with
    thousands of
    those joining the actual internet.
    Remember: play FAIRLY and HONESTLY and this will really work.

  • To convert columns into row

    Hi All,
    I need help in building view which actually can show columns data as row.
    e.g.
    row is as follows
    Name Age Salary
    ABC 25 10000
    BBC 28 12000
    The above tables data I want to get as
    Name ABC BBC
    Age 25 28
    Salary 10000 12000
    Thanks in advance.

    Even if I don't really understand such requirement, I wrote some times ago such function to play around that :
    Re: Converting Columns into rows
    Nicolas.

  • Converting columns into rows

    Dear all....I need to convert all columns into rows in a table. For example table has following columns:
    Emp_Cod........Val1......Val2......Val3
    1 a b c
    Now I wish that each column should display as a value like:
    Emp_Cod........Val1
    1 a
    1 b
    1 c
    Now the one way to solve this job is to write a union statement for each column but for this I'll have to write equal number of select statements as there are columns.
    What I need that is there anyway to write minimum code for this job, is there any alternate way???

    SQL> with t as(select 1 emp_code, 'a' val1, 'b' val2, 'c' val3 from dual)
      2  select*from t unpivot(v for c in(val1,val2,val3));
    EMP_CODE  C     V                                                      
            1  VAL1  a                                                      
            1  VAL2  b                                                      
            1  VAL3  c                                                      
    SQL> col COLUMN_VALUE for a20
    SQL> with t as(select 1 emp_code, 'a' val1, 'b' val2, 'c' val3 from dual)
      2  select*from t,table(sys.odcivarchar2list(val1,val2,val3));
    EMP_CODE  V  V  V  COLUMN_VALUE                                        
            1  a  b  c  a                                                   
            1  a  b  c  b                                                   
            1  a  b  c  c                                                   

  • Does anyone know how I turn negatives into a positive on Aperture please?  I have scanned  a bunch of negs and want ot make a contact sheet. Would really appreciate some clues on where to start.  Thanks

    does anyone know how I turn negatives into a positive on Aperture please?  I have scanned  a bunch of negs and want ot make a contact sheet. Would really appreciate some clues on where to start.  Thanks

    Yeah, it's simple. You scan your images singly, then import them. Then, one by one adjust them. Under the adjustment brick, pull up the CURVES tool. It is one of dozens available from the pulldown menu on the left side.
    So, with your image in view, you click on the adjustment tool, select CURVES (which will be at the bottom of a few other adjustment sliders such as EXPOSURE) under the Histogram and then grab the bottom of the right hand curve and swing it all the way to the left. Then grab the left hand curve and drag it all the way to the right.
    The right curve represents highlights. The left curve represents shadows. Now the two are reversed. Your negative is now a positive. For added control, you can create mid-tone curves of your own and make finer adjustments. I haven't done this much so the experts might weigh in here with corrections and added advice.

  • How to freeze column and row headers of a table

    How to freeze column and row headers of a table in jsp and javascript. An example is available in
    http://www.massless.org/_tests/grid1/ pls help to find a solutionj
    Thanks in anticipation
    Sreejesh

    At least I don't stop you from that. I also don't see any benefits in this topic.
    Success.

  • How to convert columns to rows

    I have 70 columns and I need to convert them into rows. Please help!
    Currently, it is showing as listed below
    message 1 message 2 message 3 message 4 message 5 .......... message 70
    system 1 20 10 40 60 100
    system 2 40 30 50 80 110
    system 3 60 60 70 90 120
    The desire output
    system 1 system 2 system 3
    message 1 20 40 60
    message 2 10 30 60
    message 3 40 50 70
    message 70

    Something like...
    SQL> ed
    Wrote file afiedt.buf
      1  select decode(rn,1,'Empno :'||empno
      2                  ,2,'Ename ('||empno||') :'||ename
      3                  ,3,'Job ('||empno||') :'||job
      4               ) as col
      5  from emp
      6       cross join (select rownum rn from dual connect by rownum <= 3)
      7* order by empno, rn
    SQL> /
    COL
    Empno :7369
    Ename (7369) :SMITH
    Job (7369) :CLERK
    Empno :7499
    Ename (7499) :ALLEN
    Job (7499) :SALESMAN
    Empno :7521
    Ename (7521) :WARD
    Job (7521) :SALESMAN
    Empno :7566
    Ename (7566) :JONES
    Job (7566) :MANAGER
    Empno :7654
    Ename (7654) :MARTIN
    Job (7654) :SALESMAN
    Empno :7698
    Ename (7698) :BLAKE
    Job (7698) :MANAGER
    Empno :7782
    Ename (7782) :CLARK
    Job (7782) :MANAGER
    Empno :7788
    Ename (7788) :SCOTT
    Job (7788) :ANALYST
    Empno :7839
    Ename (7839) :KING
    Job (7839) :PRESIDENT
    Empno :7844
    Ename (7844) :TURNER
    Job (7844) :SALESMAN
    Empno :7876
    Ename (7876) :ADAMS
    Job (7876) :CLERK
    Empno :7900
    Ename (7900) :JAMES
    Job (7900) :CLERK
    Empno :7902
    Ename (7902) :FORD
    Job (7902) :ANALYST
    Empno :7934
    Ename (7934) :MILLER
    Job (7934) :CLERK
    42 rows selected.

  • Convert single column into rows

    hi Gurus,
    I have one table test colums are id and name.
    id number
    name varchar2
    data is like
    id name
    1 xy
    2 xyy
    3 mm
    4 pp
    Now my requirement is to convert single column id into rows
    i,e my output should be of singel rows like :- 1,2,3,4
    How to achive this result .
    I dont have any idea to do this query.
    Please help guys.
    Thanks in advance.
    Vijay

    Well,
    As long as your code doesn't have to run in production, simplest way is:
    WM_CONCAT (but it's not documented)
    or use XMLAGG, it's simpler than a connect by:
    MHO%xe> with t as (
      2  select 1 col, 'xy' str from dual union all
      3  select 2, 'xyy' from dual union all
      4  select 3, 'mm'from dual union all
      5  select 4, 'pp' from dual union all
      6  select 8, 'pp' from dual union all
      7  select 12, 'pp' from dual union all
      8  select 40, 'pp' from dual
      9  )-- actual query, based on id's generated above:
    10  select rtrim(xmlagg(xmlelement(e,col||',')).extract('//text()'),',') col
    11  from   t;
    COL
    1,2,3,4,8,12,40
    1 rij is geselecteerd.

Maybe you are looking for

  • Trying to drag and drop a text parameter, but it only applies to one letter

    Hiya, In Motion 3, you could drag and drop a Text - Style Parameter to another text object. Now, in Motion 4, when I try to drag a Parameter it only applies to the first letter of my text object. So when I drag my Glow from one object to another, my

  • Upgrading from Labview 8.0 to Labview 8.6

    Software installed in my system (Window 2000): Testand 3.5 Labview 8.0 Cvi 8.0 Device drivers NI-488.2 VERSION 2.46 NI-VISA VERSION 3.6 NI-DAQMX VERSION 8.1.0F1 I want to install LABVIEW 8.6 instead of LABVIEW 8.0 1.Do I have to upgrade Testand,Cvi,

  • "Trading Partner" feild in contrl data tab of Gener data in Customer Master

    can anyone of SAP GURUS guide me in this area purpose of this feild and in what sense we can use the feild with 1 real time example regds

  • Oracle 9.2.0.6 support for RHEL 4 AS update 4

    Hi All, Where can i get information on the support matrix for oracle 9.2.0.6 for Red hat Enterprise Linux 4 Advanced server update 4. The document at http://www.oracle.com/technology/support/metalink/index.html does not give information on the 'updat

  • How to process old WLSTORE table

    Hi, For some reason, the JDBC WLSTORE table, has reached more than 200.000 rows. For this reason due performance, we created a new WLSTORE. Question is how to process the transations that are keep in the old and unused WLSTORE? Best REgards,