Display data in reverse order.

Hi everone,

I'm dispalying two fields in forms 10g to display Arabic and English chracters.
It will correctly display Arabic and English data, but for some Arab data, he demonstrated in the reverse order.

How can I solve this?

my location is
11.2.0.3.0, charcterset AR8MSWIN1256 Oracle database
Server of applications Oracle 10 g, NLS_LANG = AR8MSWIN1256
Order Developer suite 10 g


Thank you
Omer

I got there is character '_' chr (220) in the folder that is not Arabic characters is why oracle does not display data correctly. I have replace the data as replace (Field1, chr39). Chr (220) | Chr (39)) and now it works for me.

Tags: Oracle Development

Similar Questions

  • display data in the order of the CSA

    Hello

    I want to display these data in the order of the CSA, but its doesn't come not properly arrested IE by the no.

    Column
    1 abc defg
    2 aer ftg
    Cheikh Tidiane 11 efg
    20 Amps efg

    I use this query
    Select f_n had order by regexp_substr(f_n,'[0-9]*',1)

    but then this comes as
    1 abc defg
    Cheikh Tidiane 11 efg
    2 aer ftg
    20 Amps efg

    I want to like

    1 abc defg
    2 aer ftg
    Cheikh Tidiane 11 efg
    20 Amps efg

    Thank you

    Hello

    user13305573 wrote:
    Thank you

    It works
    I wanted to know one thing

    If I have a columnr as
    1.1.1 abc efg
    1.1.2 bdg efg

    So how can I use the query so that I can get the results in the order of the CSA.

    I use like this order of

    order by to_number (regexp_substr (f_n,'[0-9] + (\.))) [ 0-9] *) ?', 1)) ;

    But it's 1.1 and 1.2 correctly and not for large 1.1.1

    It would be sort "1.11' front ' 1.2'; This is not what you want, is it?

    I think that's what you want:

    order by  to_number (regexp_substr (f_n, '[0-9]+', 1, 1))
    ,       to_number (regexp_substr (f_n, '[0-9]+', 1, 2))
    ,       to_number (regexp_substr (f_n, '[0-9]+', 1, 3))
    

    The 4th argument to REGEXP_SUBSTR he said what case to take.

  • convert a docx 200 page pdf document but the file is displayed in the reverse order. Difficulty please?

    I converted a document of 200 pages Word docx to PDF. PDF resulting excellent except the fact that the document now bed (and pages) in the order reverses. This is my first attempt and I hope there is a simple solution if the product will be of no use to me. Can someone help please?

    Of the Print Options tab dialog box > reverse the order of the characters is enabled.

  • Sequence of the Arabic word in a Dreamweaver CC is displayed in reverse order

    Sequence of the Arabic word in a Dreamweaver CC is displayed in reverse order from left to right. For example: "It is a black car" appears as "black car, one that is" from right to left. Is this a software problem or a solution to this problem. Thank you.

    Sorry, that didn't fix it. I have not worked with Arabic myself.

    There is a document at the W3C that can help you. Here is the link:

    http://www.w3.org/TR/html401/struct/dirlang.html

  • Sites are now for each display day in history in reverse order.

    In history; the sites visited using Firefox as my browser, in reverse order. My OS is Windows 7. Only, this started 4 days ago.

    Can be sort can help you, see screenshot.

  • How to display data series changed after each step in labview gui, that is to say after the match point fantasy, after substring etc.

    Hi, I have a labview GUI that receives data serially through VISA and basically chops to the strings and realize games until I have values that I'm looking for. I have then convert Ascii string in decimal and feed the new values to a waveform. However, I discovered that some of the output values are incorrect. I checked this by pulling data through Realterm.

    Is it possible that I can see the modified data after each step in the user interface so that I can find where the problem is? I created indicators after each step, but they do not display data, I guess that its because the data is moving too quickly.

    I am very new to labview and struggled through every bit of this GUI, as none of you regular posters know. If you can suggest a solution, please know that I will probably ask more fundamental questions in order to implement your solution.

    I enclose my GUI with a screenshot of the same data through the Realterm. Basically any where you see xxxx TR TR or W xxxxW, know that it is the data between them is to say xxxx that corresponds to the data of interest. Everything else is ignored.

    I suspect that the problem lies in the string to decimal conversion and where 3 digit values increase to 4-digit values. That is, all values of less than 850 are correct but it is the maximum value is reached. My values are expected to reach 2500. Any help would be greatly appreciated.

    You have other debugging tools available to you.  You can use the run culminating to slow down the code and show you the data flowing from each wire.

    You can create a Subvi, which takes the data of each wire and written to a log file if you can review it later.

    You give not the screenshots to your message.

  • query to display data in table with several detail table

    Hi all

    I have a few cases with a table header that have more than 3 table of detail, and I have to generate the query to show all the data horizontally.

    tblHdr have column A (PK)

    tblDtl1 have column A (FK), B (PK)

    tblDtl2 have column A (FK), C (PK)

    tblDtl3 have column A (FK), D (PK)

    and I need a query to display data like this:

    AB1C3D1
    AB2C4D2
    AC5D3
    AC6

    all the Details of the table should display data based on the relationship of tblHdr (A).

    tblDtl1 have only 2 rows of data for the FK A

    tblDtl2 just for FK 4 lines of data

    tblDtl3 only 3 lines of data for the FK A

    Another example:

    AB1C1D1
    AB2C2
    A

    B3

    tblDtl1 only 3 lines of data for the FK A

    tblDtl2 have only 2 rows of data for the FK A

    tblDtl3 have only 1 rows of data for the FK A

    Please shed some light. for the record, I'll use this query in ADF, so I'll put using PLSQL in second priority.  I prefer to do it in the SQL query.

    Thank you

    Here are 3 ways. First test of data:

    drop table ta purge;
    create table ta as
    SELECT 'A' AS A FROM dual
    union all
    select 'B' from dual;
    
    drop table tb purge;
    create table tb as
    SELECT 'A' AS A, 'B1' AS B FROM dual
    UNION ALL
    SELECT 'A', 'B2' FROM dual ;
    
    drop table tc purge;
    create table tc as
    SELECT 'A' AS A, 'C1' AS C FROM dual
    UNION ALL
    SELECT 'A', 'C2' FROM dual
    UNION ALL
    SELECT 'A', 'C3' FROM dual
    UNION ALL
    SELECT 'A', 'C4' FROM dual ;
    
    drop table td purge;
    create table td as
    SELECT 'A' AS A, 'D1' AS D FROM dual
    UNION ALL
    SELECT 'A', 'D2' FROM dual
    UNION ALL
    SELECT 'A', 'D3' FROM dual;
    

    Now 3 solutions: full join, group by and pivot:

    with b as (
      select a, b,
      row_number() over(partition by a order by b) rn
      from tb
    )
    , c as (
      select a, c,
      row_number() over(partition by a order by c) rn
      from tc
    )
    , d as (
      select a, d,
      row_number() over(partition by a order by d) rn
      from td
    )
    select a, b, c, d
    from ta left join b using(a)
    full join c using(a, rn)
    full join d using(a, rn)
    order by a, rn;
    
    select a, max(b) b, max(c) c, max(d) d
    from (
      select a, null b, null c, null d, 1 rn
      from ta
      union all
      select a, b, null, null,
      row_number() over(partition by a order by b) rn
      from tb
      union all
      select a, null, c, null,
      row_number() over(partition by a order by c) rn
      from tc
      union all
      select a, null, null, d,
      row_number() over(partition by a order by d) rn
      from td
    )
    group by a, rn
    order by a, rn;
    
    select A,B,C,D from (
      select 'A' tab, a, null val, 1 rn from ta
      union all
      select 'B' tab, a, b,
      row_number() over(partition by a order by b) rn
      from tb
      union all
      select 'C' tab, a, c,
      row_number() over(partition by a order by c) rn
      from tc
      union all
      select 'D' tab, a, d,
      row_number() over(partition by a order by d) rn
      from td
    )
    pivot(max(val) for tab in('B' B, 'C' C, 'D' D))
    order by a, rn;
    
    A B C D
    A B1 C1 D1
    A B2 C2 D2
    A C3 D3
    A C4
    B

    Personally, I would prefer to view the data by using a 'join the union', in order to avoid the impression that the different detail records are related somehow.

    select ta.a, b, c, d
    from tb full join tc on 1=0
    full join td on 1=0
    right join ta on ta.a in (tb.a, tc.a, td.a);
    
    A B C D
    A B1
    A B2
    A C1
    A C2
    A C3
    A C4
    A D1
    A D2
    A D3
    B
  • Placed the text from MS Word table columns now are in reverse order, why?

    Registered Google Doc under MS Docx, and then place the file in ID (version 5.5), all the tables are in reverse order of column.

    In addition, I can only select a right line, rather than the usual left side.

    I've never had this happen, but this is the first project where the original source was Google Docs.

    Wow, it's weird, but I can confirm that it is doing the same thing for me, the problems of selection and everything.

    If you display import options when it is placed and you check Remove Styles and formatting, he brings her in as planned. However, if you keep the styles, he seems to be applying the law in order from left to the cells.

    Must be saved outside as Word? When I exported my test document .rtf, he seemed to be imported into InDesign properly and seems to bring over all the styles used in the Google Doc correctly.

  • Clip loading reverse order?

    I have a component in my library which is a miniature. Well the thin just inside is a code to load a thumbnail jpg file.
    Here's the situation. I use a loop for to add a series of these linked clip displayed on the stage. All of same clip, the path of thumb and various pos FLF is pass to the clip as a parameter. The question is how the burden of the clamp. They appear one after the other, but the load order is reversed. The last one added to the timeline is the first loading a ti and display follow each other and so on. If there is a loop of 10, 10 and 9, 8, 7 clip load...

    Why? Is it as LIFO of Java concept. Last in first out which Manager flash it?

    Thanks for your help.

    I know that I can put the reverse order and attached the last of them on the stage first and so on, but I understand the problem, do not have a work around... ;-)

    Yes, maybe they start to load to closely. There are several images, never great, a few thumbnails. The size of each is approximately the same. I did the test online. Even if on the computer, it might be different, the real test is online.

    Maybe I can use the ' for in ' GWD says or any simply begin with the last element and then to I-. Well I'll try it.
    Tanx for your help both

    HO, also, thank everything in the ' for in '. I didn't know that it worked this 'Stock' way first, and it can be useful sometimes. I appreciate your help!

  • Unable to display data for the date where there is no entry in the table

    Hello

    I need a urgent, described below:

    I have a table named as 'dirty', consisting of three columns: empno, sale_amt and sale_date.
    (Please ref. The table with data script as shown below)

    Now, if I run the query:
    "select trunc (sale_date) sale_date, sum (sale_amt) total_sale of the sales group by order trunc (sale_date) by 1.
    It then displays the data for the dates there is an entry in this table. But it displays no data for the
    date in which there is no entry in this table.

    If you run the Table script with data in your schema, then u will see that there is no entry for the 28th. November 2009 in
    sales table. Now the above query displays data for the rest as his dates are in the table of the sale with the exception of 28. November 2009.
    But I need his presence in the result of the query with the value "sale_date' as '28. November 2009 "and that of"total_sale"as
    « 0 ».

    Y at - there no way to get the result I need?

    Please help as soon as POSSIBLE.

    Thanks in advance.

    Create the table script that contains data:
    ------------------------------------------

    CREATE TABLE SALE
    (
    NUMBER EMPNO,
    NUMBER OF SALE_AMT
    DATE OF SALE_DATE
    );
    TOGETHER TO DEFINE
    Insert into SALES
    (EMPNO, SALE_AMT, SALE_DATE)
    Values
    (100, 1000, TO_DATE (DECEMBER 1, 2009 10:20:10 ',' DD/MM/YYYY HH24:MI:SS'));))
    Insert into SALES
    (EMPNO, SALE_AMT, SALE_DATE)
    Values
    (100, 1000, TO_DATE (NOVEMBER 30, 2009 10:21:04 ',' DD/MM/YYYY HH24:MI:SS'));))
    Insert into SALES
    (EMPNO, SALE_AMT, SALE_DATE)
    Values
    (100, 1000, TO_DATE (NOVEMBER 29, 2009 10:21:05 ',' DD/MM/YYYY HH24:MI:SS'));))
    Insert into SALES
    (EMPNO, SALE_AMT, SALE_DATE)
    Values
    (100, 1000, TO_DATE (NOVEMBER 26, 2009 10:21:06 ',' DD/MM/YYYY HH24:MI:SS'));))
    Insert into SALES
    (EMPNO, SALE_AMT, SALE_DATE)
    Values
    (100, 1000, TO_DATE (NOVEMBER 25, 2009 10:21:07 ',' DD/MM/YYYY HH24:MI:SS'));))
    Insert into SALES
    (EMPNO, SALE_AMT, SALE_DATE)
    Values
    (200, 5000, TO_DATE (NOVEMBER 27, 2009 10:23:06 ',' DD/MM/YYYY HH24:MI:SS'));))
    Insert into SALES
    (EMPNO, SALE_AMT, SALE_DATE)
    Values
    (200, 4000, TO_DATE (NOVEMBER 29, 2009 10:23:08 ',' DD/MM/YYYY HH24:MI:SS'));))
    Insert into SALES
    (EMPNO, SALE_AMT, SALE_DATE)
    Values
    (200, 3000, TO_DATE (NOVEMBER 24, 2009 10:23:09 ',' DD/MM/YYYY HH24:MI:SS'));))
    Insert into SALES
    (EMPNO, SALE_AMT, SALE_DATE)
    Values
    (200, 2000, TO_DATE (NOVEMBER 30, 2009 10:23:10 ',' DD/MM/YYYY HH24:MI:SS'));))
    Insert into SALES
    (EMPNO, SALE_AMT, SALE_DATE)
    Values
    (300, 7000, TO_DATE (NOVEMBER 24, 2009 10:24:19 ',' DD/MM/YYYY HH24:MI:SS'));))
    Insert into SALES
    (EMPNO, SALE_AMT, SALE_DATE)
    Values
    (300, 5000, TO_DATE (NOVEMBER 25, 2009 10:24:20 ',' DD/MM/YYYY HH24:MI:SS'));))
    Insert into SALES
    (EMPNO, SALE_AMT, SALE_DATE)
    Values
    (300, 3000, TO_DATE (NOVEMBER 27, 2009 10:24:21 ',' DD/MM/YYYY HH24:MI:SS'));))
    Insert into SALES
    (EMPNO, SALE_AMT, SALE_DATE)
    Values
    (300, 2000, TO_DATE (NOVEMBER 29, 2009 10:24:22 ',' DD/MM/YYYY HH24:MI:SS'));))
    Insert into SALES
    (EMPNO, SALE_AMT, SALE_DATE)
    Values
    (300, 1000, TO_DATE (NOVEMBER 30, 2009 10:24:22 ',' DD/MM/YYYY HH24:MI:SS'));))
    COMMIT;

    Any help will be necessary for me


    Kind regards
    WITH tab AS
      (SELECT TRUNC(sale_date) sale_date,
        SUM(sale_amt) total_sale
         FROM sale
       GROUP BY TRUNC(sale_date)
       ORDER BY 1
      )
     SELECT sale_date,
      NVL(total_sale,0) total_sale
       FROM tab
       model
       REFERENCE refmodel ON (SELECT 1 indx, MAX(sale_date)-MIN(sale_date) AS daysdiff , MIN(sale_date) minsaledate FROM tab)
         dimension BY (indx)
         measures(daysdiff,minsaledate)
       main main_model
       dimension BY (sale_date)
       measures(total_sale)
       RULES upsert SEQUENTIAL ORDER ITERATE(1000) until (iteration_number>refmodel.daysdiff[1]-1)
       ( total_sale[refmodel.minsaledate[1]+iteration_number]=total_sale[cv()] )
    ORDER BY sale_date
    

    using a clause type

    Ravi Kumar

  • How to display date / time in the browser console?

    How to display date / time in the browser console?

    You can set through the Options (gear icon) page in the Web Console (Firefox/tools > Web Developer).
    This applies to the browser console and the Web console.

  • Add a maximum of added following reverse order of selection 12.4

    In all cases if not see this? Select a few songs to add to the next game, they get added in the reverse order.  It worked the way we should expect 12.3.

    Play the next still work correctly; Add several song and added to until the next in their order in the selection.

    I see that here. Just to be really irritating place next window is too narrow to show it happened with classical music where the number of movement is some way down the title.

    What a pain.

  • My smart playlist sort by release date in ascending order

    Hello

    I have a 7th generation iPod nano, the version of the software 1.0.4. Synchronize all all the podcasts of the nano unplayed episodes. I also sync a smart playlist that includes episodes of a number of podcasts I listen to. I want to have podcasts on this sorted list according to the date of output in ascending order, so I'm always hear older podcasts to the most recent. For some reason, the iPod nano will not sort podcasts in ascending order and sort in descending order, from the most recent to the oldest.

    In iTunes, under my Podcasts, I have all my podcasts listed by release date in ascending order, from oldest to newest.

    In iTunes, under playlists, I have all my podcasts listed by release date in ascending order, from the oldest to the newest, and smart playlist is also sorted by release date ascending, from the oldest to the newest.

    In iTunes, under devices-> iPod Nano-> Podcasts, each of the podcasts on the device is ordered by release date in ascending order, from oldest to newest.

    In iTunes, under devices-> iPod Nano-> [name of smart playlist], smart playlist is sorted by release date in ascending order, from oldest to newest.

    When I go to the machine and select Podcasts-> [name of the individual podcast], each of the podcasts is sorted by release date in ascending order, from oldest to newest.

    When I go to the machine and select music->-> [name of smart playlist] Playlists, episodes are sorted by release date in the ORDER SORTED by most RECENT to THE OLDEST.

    I restored the iPod nano (twice), and this did not affect the sort order.

    Can someone suggest something else I could try to get the podcasts to sort correctly?

    See you soon,.

    Hussar

    Well, I was able to work through this on my own. I disabled the "Sync Podcasts" block and sync had the nano, by removing all the podcasts of the device. I then re-checked the block "Sync Podcasts" and sync'd. Now, when I go to music-> [name of smart playlist]-> Playlists, episodes are sorted correctly, from the oldest to the newest, and several episodes that had previously denied same sync are now present.

    I'm fairly certain, however, that's not the way this is supposed to work.

  • Problem of sync Tungsten E2 to the exchange of data of the order of the day

    Hi guys,.

    I am a pretty old used PALM devices, I have a Tungsten E2 that starting yesterday now not able to sync my PC more with any pf. I tried with Win 7, Win 8 using the Desktop 6.2 via Bluetooth using the HotSync Manager.

    When I try to sync - upward, HotSync manager activity seems to be ok, the computer ask me the password I type and then the synchronization process starts, number of clicks green confirms the good performance of sync files syetm but when synchronization try to drive the agenda, he's missing, I mean that he doesn, t go more.

    In my opinion, it seems that some data in your handheld pointer has changed and so that data from the agenda of the handheld to the PC is blocked. Unfortunately, I can't check with cable USB WIN 7 and 8 do not work with USB.

    No idea how to fix this without losing my data?

    Thanks in advance

    Maurizio1960

    Hello and welcome to the HP support community!

    PalmOS devices have been able to sync via a USB cable for Vista64, Win7 and now Win8 for quite a while now.  We have a post sticky implemented in the top few positions listed in this section:

    64-bit drivers HotSync

    The data of the order of the day is updated on the computer in Palm Desktop?  Run the auditor of the Palm Desktop on Tools/Options/tools database to see if something needs to be repaired, then set the conduit Hotsync next to the order of the day on "Desktop replaces the handheld computer."

    As usual, we recommend that you install NVBackup on an SD card before risking the loss of personal data.  It can be copied to the card, the card inserted in your Palm and a full backup made and saved in the card.  NVBackup can be found at www.freewarepalm.com.

    Another suggestion would be to install DBFixit of Pimlicosoftware.com.  It is designed to fix data errors, some free, others require pay a registration fee that goes to a sanctuary for gorillas.

    WyreNut

  • Songs played in reverse order in mode 'album.

    iTunes on El Capitan.

    'Album' mode, listen to songs backwards. For example - if I start playback on the 10th track on the album, the song played is number 9, etc.

    In addition, the "buttons" PREVIOUS and NEXT are switched. If I click NEXT, he plays the PREVIOUS song, and vice versa. ***?

    This happens only in album mode.

    See you soon.

    This seems to be a long-standing bug that occurs when specific sort orders are selected for Albums (for example, if ordered by year descending sequence) and you start playing a song from an album - this seems to be a side effect of the order happening in view of songs (where sort descending year also reverses order of track number).  Play the album itself should get the order correct independent of the sort order.

    There was a discussion of this issue during the Forum of Windows a couple of days - it seems that the bug has been present in iTunes for several years.  May be, however, with a value of reporting via the iTunes Feedback page.

Maybe you are looking for