9.3 IOS sort does not

Anyone else having the problem of sorting in iBooks / my books/authors or by default in the given name/initials of the author rather than the name of sorting (name, first name) specified in iTunes? Just mess when you have a lot of books on the device. He now also default Bookshelf on the opening, not authors as I still had value. These are really annoying bugs, especially the sort because it is all nonsense to use iBooks as a library - get someone who actually reads books to take a look at the app before it was dismissed. Even on my iPhone, both local storage, no iCloud, new version of iTunes, several reboots, etc. resynched so it seems that it's a permanent screw.

I've lost all the sorting. My books used to show as recent, now I have no idea what sort of random, they are presented in. Also when I downloaded a new book, it would be labeled "new". Now, who has also disappeared. Also lost a pouch that existed before the upgrade.

Tags: iBooks

Similar Questions

  • Sorting does not work with ROW_NUMBER () OVER (ORDER BY

    CREATE OR REPLACE PROCEDURE SP_SALES)
    p_sales_id IN VARCHAR2,
    p_rownnum_from in NUMBERS
    p_rownnum_to in NUMBERS
    p_sort_by IN VARCHAR2,
    p_query ON SYS_REFCURSOR,
    )
    AS
    v_query VARCHAR2 (32000);
    v_sort_list VARCHAR2 (32000);
    BEGIN

    IF p_spv_sort_by IS NULL THEN
    v_sort_list: = 'nom_donne ASC ";
    ON THE OTHER
    v_sort_list: = p_spv_sort_by;
    END IF;

    DBMS_OUTPUT. Put_line ('v_sort_list' | v_sort_list);
    OPEN FOR P_query
    SELECT sales_id
    item_id,
    order_num,
    Employee_Name
    nom_donne
    dept_id,
    manager_name,
    NO_LIG
    Of
    (SELECT x.*,
    ROW_NUMBER () OVER (ORDER BY v_sort_list) no_lig
    OF (sales_id,
    item_id,
    order_num,
    Employee_Name
    nom_donne
    dept_id,
    manager_name,
    Vaughan Williams order.
    sale pol,
    CA of the EMP,
    WHERE pol.id = rvw.pr_order_id
    AND ca.empid = pol.employee_id
    (AND status = "SUP") x)
    WHERE the arguments no_lig BETWEEN p_rownnum_from AND p_rownnum_to;
    -ORDER by v_sort_list;
    DBMS_OUTPUT. Put_line ('v_sort_list' | v_sort_list);

    EXCEPTION
    WHILE OTHERS THEN
    DBMS_OUTPUT. PUT_LINE ('EX');
    END;
    END;
    /
    DISPLAY ERRORS


    Sorting does not work. I'm doing something wrong here?

    How to run for help below
    declare
    x SYS_REFCURSOR;
    number of y;
    BEGIN
    SP_SALES ('70159_502', 1, 5, 'GIVEN_NAME' |') ASC',: x);
    -dbms_output.put_line (: x);
    END;

    Hello

    According to the number of columns different, you can sort on and data types, it may be possible for you to include conditional logic in the existing statement without requiring dynamic sql code...

    DTYLER_APP@pssdev2> var p_spv_sort_by varchar2(100)
    DTYLER_APP@pssdev2>
    DTYLER_APP@pssdev2> exec :p_spv_sort_by:='some other column'
    
    PL/SQL procedure successfully completed.
    
    P_SPV_SORT_BY
    ----------------------------------------------------------------------------------------
    some other column
    
    DTYLER_APP@pssdev2>
    DTYLER_APP@pssdev2> WITH source AS
      2  (   SELECT 'a' given_name, 'z' other_column from dual UNION ALL
      3      SELECT 'b' given_name, 'y' other_column from dual UNION ALL
      4      SELECT 'c' given_name, 'x' other_column from dual
      5  )
      6  SELECT
      7      given_name,
      8      other_column,
      9      ROW_NUMBER ()
     10     OVER (
     11        ORDER BY
     12           CASE
     13              WHEN :p_spv_sort_by IS NULL THEN given_name
     14              WHEN :p_spv_sort_by = 'some other column' THEN other_column
     15           END)
     16        ROW_NUM
     17  FROM
     18      source
     19  /
    
    G O    ROW_NUM
    - - ----------
    c x          1
    b y          2
    a z          3
    
    3 rows selected.
    
    DTYLER_APP@pssdev2> exec :p_spv_sort_by:=NULL;
    
    PL/SQL procedure successfully completed.
    
    P_SPV_SORT_BY
    ----------------------------------------------------------------------------------------
    
    DTYLER_APP@pssdev2> WITH source AS
      2  (   SELECT 'a' given_name, 'z' other_column from dual UNION ALL
      3      SELECT 'b' given_name, 'y' other_column from dual UNION ALL
      4      SELECT 'c' given_name, 'x' other_column from dual
      5  )
      6  SELECT
      7      given_name,
      8      other_column,
      9      ROW_NUMBER ()
     10     OVER (
     11        ORDER BY
     12           CASE
     13              WHEN :p_spv_sort_by IS NULL THEN given_name
     14              WHEN :p_spv_sort_by = 'some other column' THEN other_column
     15           END)
     16        ROW_NUM
     17  FROM
     18      source
     19  /
    
    G O    ROW_NUM
    - - ----------
    a z          1
    b y          2
    c x          3
    
    3 rows selected.
    
    DTYLER_APP@pssdev2>
    

    But this would depend on the columns that you sort to be of the same data type or at least have the possibility of converting the same type of data without loss of the sort order.

    DTYLER_APP@pssdev2> WITH source AS
      2  (   SELECT 'a' given_name, sysdate - 2 other_column from dual UNION ALL
      3      SELECT 'b' given_name, sysdate - 1 other_column from dual UNION ALL
      4      SELECT 'c' given_name, sysdate  other_column from dual
      5  )
      6  SELECT
      7      given_name,
      8      other_column,
      9      ROW_NUMBER ()
     10     OVER (
     11        ORDER BY
     12           CASE
     13              WHEN :p_spv_sort_by IS NULL THEN given_name
     14              WHEN :p_spv_sort_by = 'some other column' THEN other_column
     15           END)
     16        ROW_NUM
     17  FROM
     18      source
     19  /
                WHEN :p_spv_sort_by = 'some other column' THEN other_column
                                                               *
    ERROR at line 14:
    ORA-00932: inconsistent datatypes: expected CHAR got DATE
    
    DTYLER_APP@pssdev2> WITH source AS
      2  (   SELECT 'a' given_name, sysdate - 2 other_column from dual UNION ALL
      3      SELECT 'b' given_name, sysdate - 1 other_column from dual UNION ALL
      4      SELECT 'c' given_name, sysdate  other_column from dual
      5  )
      6  SELECT
      7      given_name,
      8      other_column,
      9      ROW_NUMBER ()
     10     OVER (
     11        ORDER BY
     12           CASE
     13              WHEN :p_spv_sort_by IS NULL THEN given_name
     14              WHEN :p_spv_sort_by = 'some other column' THEN TO_CHAR(other_column,'YYYYMMDDHH24MISS')
     15           END)
     16        ROW_NUM
     17  FROM
     18      source
     19  /
    
    G OTHER_COLUMN            ROW_NUM
    - -------------------- ----------
    a 12-SEP-2011 15:04:19          1
    b 13-SEP-2011 15:04:19          2
    c 14-SEP-2011 15:04:19          3
    
    3 rows selected.
    

    HTH

    David

  • Reminders in iOS 10 does not synchronize with iCloud

    I have a frustrating problem.

    If I create or change a reminder in OSX 10.12, or online on iCloud, it syncs to all my devices.  However, if I create or edit a reminder in iOS 10.0.1 it does not sync to iCloud at all.

    I tried all the remedies I can find online, for example, all devices use the same iCloud account and the same reminders folder.

    Bright ideas please?

    Try toggling recalls power on each device to see if it could help.

  • screenshot with ios 10 does not

    .

    Just updated to 10.0.1 iOS and the screenshot does not...

  • I use a HP computer, when I try to load Mozilla home page says I use an iOS and does not load

    When I try to open the home page of Mozilla it says it can not open with an iOS and my computer does not meet the requirements. I use a HP computer. He used to pen without problem until I upgraded to version 33. I had to use my IE browser in order to send it to you. In my browser IE Mozilla home page opens correctly.

    PROBLEM SOLVED

    OK James, I was able to understand the problem. I use Avast Anti-virus program. It offers a feature called "Home Network Security" when I updated to the latest version, I thought I'd give this feature a try. I went and disabled this feature, and was able to get the Mozilla Web site to load properly. What I don't understand is why he just did with Mozilla's Web site and only if you are using Firefox. It didn't do it using IE or Maxthon browsers.

    anyway thanks a lot for the answer to my problem and try to solve it. When you said "it could be due to a proxy or even external software that changes the browser identifies itself asonline. It made me remember the change that I did with the Avast anti-virus program.

  • FIU ERROR Airprint 8 causing iOS update does not

    After update to iPhones and iPads Apple ios Airprint 8 does not. Printer works perfectly with my 5 that has not been updated and always running under IOS 7. Are there updates the firmware for B1165nfw laser printers soon to fix this?

    Unfortunately, according to the manual for your model (see link below) this method will work on a PC.  I think that some models will allow you to put the file on a USB and connect it to the printer, but I could not find information on how to do it for your printer. If you do not have a PC you can borrow a friends laptop just long enough for the printing and the firmware update software.

    [See:ftp.dell.com/.../dell-b1260dn_User%27s%20Guide_en-us.pdf]

  • L2l ios VPN does not

    Hi all

    I am reproducing my client on the GNS scénarion.

    It is a frank l2l ios vpn and I use on two NAT routers.

    When I train trigger (ping using the source interface) VPN, VPN is not coming, and there is no error during the isakmp debug

    Please go through the configuration below and suggest me

    Thanks toufik

    It does not appear to be configured for each LAN routing. May need to configure the default route on each router to point to the other.

    In addition, enabling the option 'enable isakmp crypto '.

    All the other configuration looks OK.

  • Look for iOS parameters does not show

    Hello

    Flash Pro CS6

    When I click on the settings icon change App, nothing happens.

    The only way to challenge is the movement of the file available somewhere else or change its name.

    I'm tired to do every time I want to put the window.

    Is there any solution for this?

    Hello

    Thank you for your detailed answer, but I don't want to use the XML, it would be the same. Whenever I want to change something, I would need to open XML.

    the problem is not me not knowing how to do the settings on the XML, this is where the dialog available named 'settings for iOS', which aims to make adjustments in an easier way for developers/designers and this dialog box does not appear.

    I'm tired to change the available file name in order to bring this dialog box.

    If this does not work well on CS6, there should not be such option in CS6, it's as simple as that.

    I had to install CreativeCloud and things work in CC, but for those who have the same problem and using CS6, the only thing I can say is GOOD LUCK.

    Thank you.

  • Function adobeDPS.libraryServices.folioMap.sort does not work

    Hello, I work with custom showcase and until yesterday the folioMap.sort function works fin, I get all folios published with this function, but today it does not work, I still get an empty array and my library looks like this:

    Screenshot 2014.05.30 16.40.47.png

    If I debugger it I found that my folios is always an empty array:

    Screen Shot 2014-05-30 at 5.01.18 PM.png

    What I am doing wrong?

    It is an option in the constructor of the App. I checked it once and my folioMap was also empty. So never mind.

  • iOS 3 does not appear on my phone to update my watch

    How can I update my watch to ios3 in. Its not appear on my phone as a download available.

    Hello

    You must first upgrade your iPhone to iOS 10 (do not forget to make a backup first):

    Update the software on your iPhone, iPad or iPod touch - Apple Support iOS

  • notifications of iOS 10 does not work

    Given that I have upgraded to iOS 10 on my iPhone 6 and got my new iPhone 7, my notifications do not work properly.  I used to get notifications of many different applications.  I have notifications enabled in the application and in the settings.  I've had several people look at and others noted that they are not getting them as well.

    any suggestions?

    Try resetting your device. This will not erase your data stored on that device.

    • Press and hold the sleep/wake button
    • Press and hold the Home button
    • Press and hold both buttons until the display turns off and on again with the Apple logo on the subject.

    Alternatively, you can go to settings - general - reset - Reset all settings

    If that doesn't work, restore your device to factory settings. Please note that this will delete the data on your device.

    Take a look this Apple Support article: use iTunes to restore the iPhone, iPad or iPod to factory settings - Apple Support.

  • VPN using hotspot with ios 10 does not

    I often work off site and use my iPhone AT & T s 6 to attach my work Windows 10 Pro (processor ASUS T300CHI) Tablet.  Although many places I work have Wifi, most only allow VPN I need to connect to my work server.  After updating ios 10 (I'm on 10.0.1), I did have problems engaging, but VPN doesn't work anymore.

    VPN integrated Windows 10 Pro on my Tablet has an automatic configuration that appears to detect the type of configuration (IKEv2/IPSec/PPTP/L2TP, etc.) and you just put in user name and password.  According to my dept IT, the VPN connection in the office not only supports PPTP (I understand has been disabled with ios 10) but also supports IKEv2 and L2TP/IPSec.  Nevertheless, I always left configuration VPN on Windows 10 in auto.  I tried selecting the connection type, but it did not work either.  Generally I get the error "failure of VPN tunnels.

    Any thoughts would be appreciated

    MattyBH,

    Please keep us informed if you were able to solve this problem.  I also have the same problem since the update iOS10.  I think it has to do with Apple, removing the IOS10 PPTP protocol... I was able to confirm the conclusion of downgrading to previous IOS 9.3 and my VPN works very well, unfortunately my users with iPHONE7 cannot sink their IOS and now can not access VPN through hotspots iOS10

  • imessage 10 iOS apps does not

    update to ios 10 went well but to play in the new imessge, I discovered that during the work of native applications as expected in imessage - music, recent, #images etc. - other applications do not work in imessage - eg espn, drafts, opentable, etc. - shows the icon on the screen of imessage when I go in the apps section, but she never updates with any content.

    everyone has experienced or has ideas on what to do?

    This happened to me until I went to the App store and noticed that these applications had very updated download.  After you download the update, and open the application itself (not in messages, but the actual application), I went back to the messages and they works perfectly!

    Good luck!

  • drop between mid-2009 and IOS device does not

    Mid 2009 Macbook Pro running El Capitan. Bluetooth and wifi on. When I opened Airdrop I see only the symbol of release with message "drop we will share you instantly... to share with someone using a Mac, ask them to go to Airdrop in the Finder. I don't see my IOS device on my Mackbook Pro, or I see my MackBook Pro on my IOS device in parachuting. Tech Genius Bar said that I had to add more storage for MacBook Pro. Made with a new SSD. Still not able to use Airdrop with IOS.

    It works as expected. Drop between iOS devices and Mac requires that the Mac is a 2012 model or newer.

    (140277)

  • 16 SDK using new AOA on iOS questions: does not meet the return of CameraRoll, skins list confused

    I have problems with the '-useLegacyAOT not ' (now default) and iOS apps. Under using the SDK 15 '-Yes useLegacyAOT ' no problem. With SDK 16 app has problems with many things, for example datagrid/list skins don't work – if you manually using setRendererStyle skin, it seems ALL skin conditions using selected skins, and the upSkin State uses skin selectedUpSkin as far as I can make out (in tests that seems to be the case). Either the application is not responding to the touch on the referral of cameraRoll, camera to take a picture or a video to record a video - my app is full screen, when he returns from one of them, it is therefore more full-screen (the bar at the top of the information page is visible) and I use stage.displayState = StageDisplayState.FULL_SCREEN_INTERACTIVE at the return of these calls who worked under the legacy AOT. Because the application is not responding, the only option is to restart the iphone and restart the application - not really an option.

    The problem of blocking the return of the camera, cameraroll and the video appears to be fixed in the SDK 17. Skin list confusion on iOS seems to still be there in 17 SDK (115), and I moved him to another post - marking it as correct.

Maybe you are looking for