Issues with language-specific characters and Multi Lexer

I want to create a text index with global lexer and different languages. But how to create the index to satisfy all languages?
Oracle EE 10.2.0.4 (UTF8) on Solaris 10
1.) Create global lexer with german as default and czech, turkish as additional languages.
begin
     ctx_ddl.drop_preference('global_lexer');
     ctx_ddl.drop_preference('german_lexer');
     ctx_ddl.drop_preference('turkish_lexer');
     ctx_ddl.drop_preference('czech_lexer');
end;
begin
     ctx_ddl.create_preference('german_lexer','basic_lexer');
     ctx_ddl.create_preference('turkish_lexer','basic_lexer');
     ctx_ddl.create_preference('czech_lexer','basic_lexer');
     ctx_ddl.create_preference('global_lexer', 'multi_lexer');
end;
begin
     ctx_ddl.set_attribute('german_lexer','composite','german');
     ctx_ddl.set_attribute('german_lexer','mixed_case','no');
     ctx_ddl.set_attribute('german_lexer','alternate_spelling','german');
     ctx_ddl.set_attribute('german_lexer','base_letter','yes');
     ctx_ddl.set_attribute('german_lexer','base_letter_type','specific');
     ctx_ddl.set_attribute('german_lexer','printjoins','_');
     ctx_ddl.set_attribute('czech_lexer','mixed_case','no');
     ctx_ddl.set_attribute('czech_lexer','base_letter','yes');
     ctx_ddl.set_attribute('czech_lexer','base_letter_type','specific');
     ctx_ddl.set_attribute('czech_lexer','printjoins','_');
     ctx_ddl.set_attribute('turkish_lexer','mixed_case','no');
     ctx_ddl.set_attribute('turkish_lexer','base_letter','yes');
     ctx_ddl.set_attribute('turkish_lexer','base_letter_type','specific');
     ctx_ddl.set_attribute('turkish_lexer','printjoins','_');
     ctx_ddl.add_sub_lexer('global_lexer', 'default', 'german_lexer');
     ctx_ddl.add_sub_lexer('global_lexer', 'czech',   'czech_lexer',   'CZH');
     ctx_ddl.add_sub_lexer('global_lexer', 'turkish', 'turkish_lexer', 'TRH');
end;
/2.) Create table and insert data
drop table text_search;
create table text_search (
     lang   varchar2(5)
   , name   varchar2(100)
insert into text_search(lang, name) values ('DEH', 'Strauß');
insert into text_search(lang, name) values ('DEH', 'Möllbäck');
insert into text_search(lang, name) values ('TRH', 'Öğem');
insert into text_search(lang, name) values ('TRH', 'Öger');
insert into text_search(lang, name) values ('CZH', 'Tomáš');
insert into text_search(lang, name) values ('CZH', 'Černínová');
commit;3.) The index creation now produces different results depending on the language settings:
-- *Option A)*
alter session set nls_language=german;
drop index i_text_search;
create index i_text_search on text_search (name)
   indextype is ctxsys.context
        parameters ('
                section group CTXSYS.AUTO_SECTION_GROUP
                lexer global_lexer language column lang
                memory 300000000'
select * from dr$i_text_search$I;
-- *Option B)*
alter session set nls_language=turkish;
drop index i_text_search;
create index i_text_search on text_search (name)
   indextype is ctxsys.context
        parameters ('
                section group CTXSYS.AUTO_SECTION_GROUP
                lexer global_lexer language column lang
                memory 300000000'
select * from dr$i_text_search$I;
-- *Option C)*
alter session set nls_language=czech;
drop index i_text_search;
create index i_text_search on text_search (name)
   indextype is ctxsys.context
        parameters ('
                section group CTXSYS.AUTO_SECTION_GROUP
                lexer global_lexer language column lang
                memory 300000000'
select * from dr$i_text_search$I;And now I get different:
Option A)
dr$i_text_search$I with nls_language=german:
STRAUß
STRAUSS
MOLLBACK
OĞEM
OGER
TOMAŠ
ČERNINOVA
Problems, e.g.:
A turkish client now does not find his data (the select returns 0 rows)
alter session set nls_language=turkish;
select * from text_search
where contains (name, 'Öğem') > 0;
Option B)
dr$i_text_search$I with nls_language=turkish:
STRAUß
STRAUSS
MÖLLBACK
ÖĞEM
ÖGER
TOMAŠ
ČERNINOVA
Problems, e.g.:
A czech client now does not find his data (the select returns 0 rows)
alter session set nls_language=czech;
select * from text_search
where contains (name, 'Černínová') > 0;
Option C)
dr$i_text_search$I with nls_language=czech:
STRAUß
STRAUSS
MOLLBACK
OĞEM
OGER
TOMAS
CERNINOVA
Problems, e.g.:
A turkish client now does not find his data (the select returns 0 rows)
alter session set nls_language=turkish;
select * from text_search
where contains (name, 'Öğem') > 0;
----> How can these problems be avoided? What am I doing wrong?

You need to change your base_letter_type from specific to generic. Also, if you are going to use both alternate_spelling and base_letter in your german_lexer, then you might want to set override_base_letter to true. Please see the run of your code below, with those changes applied. The special characters got mangled in my spool file, but hopefully you get the idea.
SCOTT@orcl_11gR2> begin
  2            ctx_ddl.drop_preference('global_lexer');
  3            ctx_ddl.drop_preference('german_lexer');
  4            ctx_ddl.drop_preference('turkish_lexer');
  5            ctx_ddl.drop_preference('czech_lexer');
  6  end;
  7  /
PL/SQL procedure successfully completed.
SCOTT@orcl_11gR2> begin
  2            ctx_ddl.create_preference('german_lexer','basic_lexer');
  3            ctx_ddl.create_preference('turkish_lexer','basic_lexer');
  4            ctx_ddl.create_preference('czech_lexer','basic_lexer');
  5            ctx_ddl.create_preference('global_lexer', 'multi_lexer');
  6  end;
  7  /
PL/SQL procedure successfully completed.
SCOTT@orcl_11gR2> begin
  2            ctx_ddl.set_attribute('german_lexer','composite','german');
  3            ctx_ddl.set_attribute('german_lexer','mixed_case','no');
  4            ctx_ddl.set_attribute('german_lexer','alternate_spelling','german');
  5            ctx_ddl.set_attribute('german_lexer','base_letter','yes');
  6            ctx_ddl.set_attribute('german_lexer','base_letter_type','generic');
  7            ctx_ddl.set_attribute('german_lexer','override_base_letter', 'true');
  8            ctx_ddl.set_attribute('german_lexer','printjoins','_');
  9 
10            ctx_ddl.set_attribute('czech_lexer','mixed_case','no');
11            ctx_ddl.set_attribute('czech_lexer','base_letter','yes');
12            ctx_ddl.set_attribute('czech_lexer','base_letter_type','generic');
13            ctx_ddl.set_attribute('czech_lexer','printjoins','_');
14 
15            ctx_ddl.set_attribute('turkish_lexer','mixed_case','no');
16            ctx_ddl.set_attribute('turkish_lexer','base_letter','yes');
17            ctx_ddl.set_attribute('turkish_lexer','base_letter_type','generic');
18            ctx_ddl.set_attribute('turkish_lexer','printjoins','_');
19 
20            ctx_ddl.add_sub_lexer('global_lexer', 'default', 'german_lexer');
21            ctx_ddl.add_sub_lexer('global_lexer', 'czech',   'czech_lexer',   'CZH');
22            ctx_ddl.add_sub_lexer('global_lexer', 'turkish', 'turkish_lexer', 'TRH');
23  end;
24  /
PL/SQL procedure successfully completed.
SCOTT@orcl_11gR2> drop table text_search;
Table dropped.
SCOTT@orcl_11gR2> create table text_search (
  2         lang      varchar2(5)
  3       , name      varchar2(100)
  4  );
Table created.
SCOTT@orcl_11gR2> insert into text_search(lang, name) values ('DEH', 'Strauß');
1 row created.
SCOTT@orcl_11gR2> insert into text_search(lang, name) values ('DEH', 'Möllbäck');
1 row created.
SCOTT@orcl_11gR2> insert into text_search(lang, name) values ('TRH', 'Öğem');
1 row created.
SCOTT@orcl_11gR2> insert into text_search(lang, name) values ('TRH', 'Öger');
1 row created.
SCOTT@orcl_11gR2> insert into text_search(lang, name) values ('CZH', 'Tomáš');
1 row created.
SCOTT@orcl_11gR2> insert into text_search(lang, name) values ('CZH', 'ÄŒernÃnová');
1 row created.
SCOTT@orcl_11gR2> commit;
Commit complete.
SCOTT@orcl_11gR2>
SCOTT@orcl_11gR2> -- *Option A)*
SCOTT@orcl_11gR2> alter session set nls_language=german;
Session altered.
SCOTT@orcl_11gR2> drop index i_text_search;
drop index i_text_search
ERROR at line 1:
ORA-01418: Angegebener Index ist nicht vorhanden
SCOTT@orcl_11gR2> create index i_text_search on text_search (name)
  2       indextype is ctxsys.context
  3            parameters ('
  4                 section group CTXSYS.AUTO_SECTION_GROUP
  5                 lexer global_lexer language column lang
  6                 memory 300000000'
  7            );
Index created.
SCOTT@orcl_11gR2> select token_text from dr$i_text_search$I;
TOKEN_TEXT
AYEM
AŒERNA
CK
GER
LLBA
MA
NOVA
STRAUAY
TOMA
9 rows selected.
SCOTT@orcl_11gR2> alter session set nls_language=turkish;
Session altered.
SCOTT@orcl_11gR2> select * from text_search
  2  where contains (name, 'Öğem') > 0;
LANG
NAME
TRH
Öğem
1 row selected.
SCOTT@orcl_11gR2>
SCOTT@orcl_11gR2> -- *Option B)*
SCOTT@orcl_11gR2> alter session set nls_language=turkish;
Session altered.
SCOTT@orcl_11gR2> drop index i_text_search;
Index dropped.
SCOTT@orcl_11gR2> create index i_text_search on text_search (name)
  2       indextype is ctxsys.context
  3            parameters ('
  4                 section group CTXSYS.AUTO_SECTION_GROUP
  5                 lexer global_lexer language column lang
  6                 memory 300000000'
  7            );
Index created.
SCOTT@orcl_11gR2> select token_text from dr$i_text_search$I;
TOKEN_TEXT
AYEM
AŒERNA
CK
GER
LLBA
MA
NOVA
STRAUAY
TOMA
9 rows selected.
SCOTT@orcl_11gR2> alter session set nls_language=czech;
Session altered.
SCOTT@orcl_11gR2> select * from text_search
  2  where contains (name, 'ÄŒernÃnová') > 0;
LANG
NAME
CZH
ÄŒernÃnová
1 row selected.
SCOTT@orcl_11gR2>
SCOTT@orcl_11gR2> -- *Option C)*
SCOTT@orcl_11gR2> alter session set nls_language=czech;
Session altered.
SCOTT@orcl_11gR2> drop index i_text_search;
Index dropped.
SCOTT@orcl_11gR2> create index i_text_search on text_search (name)
  2       indextype is ctxsys.context
  3            parameters ('
  4                 section group CTXSYS.AUTO_SECTION_GROUP
  5                 lexer global_lexer language column lang
  6                 memory 300000000'
  7            );
Index created.
SCOTT@orcl_11gR2> select token_text from dr$i_text_search$I;
TOKEN_TEXT
AYEM
AŒERNA
CK
GER
LLBA
MA
NOVA
STRAUAY
TOMA
9 rows selected.
SCOTT@orcl_11gR2> alter session set nls_language=turkish;
Session altered.
SCOTT@orcl_11gR2> select * from text_search
  2  where contains (name, 'Öğem') > 0;
LANG
NAME
TRH
Öğem
1 row selected.
SCOTT@orcl_11gR2>

Similar Messages

  • Issue with language specific characters combined with AD-Logon to BO platform and client tools

    We are using SSO via Win AD to logon to BO-Launchpad. Generally this is working which means for Launch Pad no manual log on is needed. But  this is not working for users which have language specific letters in their AD name (e.g. öäüéèê...).
    What we have tried up to now:
    If the AD-User name is Test-BÖ the log on is working with the user name Test-BO with logon type AD
    If the logon Type "SAP" is used than it is possible to use the name Test-BÖ as the username
    Generally it is no problem in AD to use language specific letters (which means it is possible to e.g. log on to Windows with the user Test-BÖ)
    It is possible to read out the AD attributes from BO side and add them to the user. Which means in the user attributes the AD name Test-BÖ is shown via automatic import from AD. So it's not the problem that the character does not reach BO.
    I have opened a ticket concerning that. SAP 1th level support is telling me that this is not a BO problem. They say it is a problem of Tomcat. I don't believe that because the log on with authentification type SAP is working.
    I have set up the same combination (AD User Test-BÖ with SAP User Test-BÖ) as a single sign on authentification in SAP BW and there it is working without problems.
    Which leads me to the conlusion: It is not a problem of AD. It is something which is connected to the BO platform but only combined with logon type AD because SAP Logon is working with language specific characters.

    I have found this article with BO support:
    You cannot add a user name or an object name that only differs by a character with a diacritic mark
    Basically this means AD stores the country specific letters as a base letter internally. Which means that if you have created a user with a country specific letter in the name you can also logon with the Base letter to Windows.
    SAP-GUI and Windows are maybe replacing the country specific letters by the base letter. Due to that SSO is working. BO seems not to be able to do that. Up to now the supporter from BO is telling me that this is not a BO problem.
    Seems to be magic that the colleagues of SAP-GUI are able to to it.

  • Problem with language specific characters on e-mail sending

    Hi,
    Problem with language specific characters on e-mail sending.
    How can it be fixed?
    Thanks.

    Hi,
    try to work on the charecter code set UTF-8 or UTF-16. You can define this in html.
    Or encode the charecter using java script.
    Hope this may help you.
    Deepak!!!

  • Runtime.exec() with language specific chars (umlauts)

    Hello,
    my problem is as follows:
    I need to run the glimpse search engine from a java application on solaris using JRE 1.3.1 with a search pattern containing special characters.
    Glimpse has indexed UTF8 coded XML files that can contain text with language specific characters in different languages (i.e. german umlauts, spanish, chinese). The following code works fine on windows and with JRE 1.2.2 on solaris too:
    String sSearchedFreeText = "Tür";
    String sEncoding = "UTF8";
    // Convert UTF8 search free text
    ByteArrayOutputStream osByteArray = new ByteArrayOutputStream();
    Writer w = new OutputStreamWriter(osByteArray, sEncoding);
    w.write(sSearchedFreeText);
    w.close();
    // Generate process
    String commandString = "glimpse -y -l -i -H /data/glimpseindex -W -L 20 {" + osByteArray.toString() + "}";
    Process p = Runtime.getRuntime().exec(commandString);
    One of the XML files contains:
    <group topic="service-num">
    <entry name="id">7059</entry>
    <entry name="name">T&#195;&#188;rverkleidung</entry>
    </group>
    Running the java code with JRE 1.2.2 on solaris i get following correct commandline
    glimpse -y -l -i -H /data/glimpseindex -W -L 20 {T&#195;&#188;rverkleidung}
    --> glimpse finds correct filenames
    Running it with JRE 1.3.1 i get following incorrect commandline
    glimpse -y -l -i -H /data/glimpseindex -W -L 20 {T??rverkleidung}
    --> glimpse finds nothing
    JRE 1.2.2 uses as default charset ISO-8859-1 but JRE 1.3.1 uses ASCII on solaris.
    Is it possible to change the default charset for the JVM in solaris environment?
    Or is there a way to force encoding used by Runtime.exec() with java code?
    Thanks in advance for any hints.
    Karsten

    osByteArray.toString()Yes, there's a way to force the encoding. You provide it as a parameter to the toString() method.

  • Issue with language settings and units

    Hello All,
    We are facing the issue where since yetsreday days our language sttings are not working anymore.
    The characteristics which were loading fine before suddenly started giving error and now there are lot of issue with the special characters.
    Since we have data in almost all the european languages and with the entries from there language specific keyboard therefore list of chars now cannot be maintained in the RSKC.
    We did a lot of verification and there was no changes done and no transport related to language settings was done.
    The settings maintained before was ALL_CAPITAL and it was working fine till yesterday.
    We have raised an OSS message with SAP but still wanted to know if anyone is aware of the reason.
    Thanks
    Ajeet

    Is this unicode issue ???
    Check the below thread :
    Loading data from Unicode R3 system to non unicode BW system
    Hope this helps.
    Edited by: Praveen G on Sep 16, 2008 3:12 AM

  • Language specific characters with JDBC

    Does anybody know how to insert language specific characters to Oracle tables using JDBC and without the overhead of unicode conversion back and forth?
    At the moment, all we can do is to convert those characters to unicode when inserting, and perform a reverse conversion when getting back from a resultset. This is cumbersome in large text data.
    Is there a way to configure the RDBMS and/or the operating system for this purpose? We are using Oracle 7.3.4 on Windows NT 4.0 SP5, Oracle JDBC Driver 8.1.6, and Java Web Server 2.0 (JDBC 1.0 compliant). Suggestions for Oracle 8.1.6 and Solaris 2.6 will also be appreciated.
    Ozan & Serpil

    Hi Jeremy,
    Below is meta tags for Turkish
    lt & meta http-equiv="Content-Type" content="text/html; charset=windows-1254" / & gt
    lt & meta http-equiv="Content-Type" content="text/html;charset=ISO-8859-9"  / & gt
    lt & meta http-equiv="Content-Language" content="tr" / & gt
    I tryed but result is the same.
    I think .irpt has no Turkish support.
    Thanks.

  • Copy paste text from pdf exported from Microsoft.Reporting.WinForms.ReportViewer control with Czech specific characters produced box charactex or ?.

    Used Visual studio 2012. In our project there is used the Microsoft.Reporting.WinForms.ReportViewer control. In the report handled by the control are TextBoxs with a text with Czech specific characters e.g. (ř, ě, ...) . When exporting the report to pdf,
    characters are displayed correctly. However when the text with czech characters in the pdf if copied and  placed into the seach box in the pdf document only box characters are displayed. The TextBox in the report use the default font Arial. When the report
    is exported to Word, and then the Word document is saved as a pdf document, its ok. Coping a text with Czech charactes in the result pdf document and pasting into the search box displays again Czech characters not box characters.
    Also when in the report handled by the ReportViewer control are several Tex Boxes and some of the boxes contains Czech characters and some not, after exporting to a pdf document there is problem with text selection. When in the pdf document I'm trying to
    select several paragraphs, some with Czech characters and some without them, selection behaves strangely and jumps from one paragraph to another unexpectedly.

    Hi,
    did you managed to avoid those squares?
    BTW: if any such char. is encountered in a line, the entire line of text is grabbled.
    I've tried even the ReportViewer from MSSQL 2014, but got the same problem. When I've tried IL Spy, I found a code, where it is checked if the PDFFont is composite - depending on that a glyph is created. But that still only a guess.
    I've tried Telerik's reporting, they have similar problem (beside other), but not with the special characters. They produced scuares for some sequences like: ft, fi, tí.
    Please give any info you got.
    Until then my advices for you:
    a) try JasperReports (seems theyre most advanced, although it is java)
    b) Developer express has quiet quality reports - and it seems they got those special chars. right :D
    c) I created a ticket and waiting for Telerik's response (but if I had to choose reporting, I vould stick with a) or b)

  • Lenovo G560 - Issue with won't boot and black screen after HDD upgrade

    Lenovo G560 - Issue with won't boot and black screen after HDD upgrade.
     What happen: My laptop was working fine, no blue screen issue, no funny business at all. I bought a new SSD Intel 120 GB and thought it would be a good idea to replace the HDD. I shutdown and disconnected the power adapter, waited a couple of minutes and removed the battery. I opened up the back case and replaced the HDD. And put all the screws back and put the battery back in.
    Problem: The very first time I turned the power on, nothing happens besides a black screen. I pressed the dvd drive it works and opens up and closes. I waited for about 30 mins and still has blac screen. When I mean black screen, no bios menu, no logo, just a black screen with the fan sound on.
    I have tried these:
    1. Unplugged everything - battery, adapter, and pressed the power on button for about 60 seconds, nothing, the laptop turns on with the LED display on for both on and battery LED's. But nothing but black screen, no sound of windows loading just the fan and black screen.
    2. I tried putting back my old 2.5" and nothing but black screen.
    Thoughts and suggestions?
    Solved!
    Go to Solution.

    Hi Autoexit173,
    Welcome to Lenovo Community!
     As per the query we understood that you are facing issue with system not booting in your Lenovo G560 laptop.
    As you have mentioned that the system not booting, please try to remove the RAM and  turn on the system and check if you can hear any beep sound. Also try to clean the RAM slots and check for the issue.
    Click here for the steps to remove the RAM and refer page number 40.
    Hope this helps. Do post back if issue persists!
    Best regards,       
    Ashwin.S
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • Is there an issue with Safari in Iphones and Ipads where it does not recognize option disabled="disabled" tag properly?

    Greetings everybody,
    I have run into a peculiar problem with the Safari browser on mobile platforms (IPad, IPod, IPhone) which I hope I can find a solution for in this community.
    I just launched a new website where I sell products with certain variations, for example please view this link: http://www.finerribbon.com/aegean-single-face-satin-ribbon.html
    On this particular product, the product variants are supposed to work in such a way where:
    If you select the value "1/8" from the "Choose Ribbon Width" field
    THEN
    The only options active and available to choose from in the "Choose Roll Size" field should be: 500 Yds, 20 Yds & Sample Swatch
    Now, if we browse to the above link in Safari using a desktop or a laptop, there are no problems at all, but if we browse to the above link using an IPhone or an Ipad, then we have a problem where all the options are available regardless of the values chosen, basically the above functonality does not work.
    I was told that there an issue with Safari in Iphones and Ipads where it does not recognize option disabled="disabled" tag properly, is this true? Can anyone advise me if there is a solution to this problem? I would sincerely apperciate it.
    Thank you very much for your time and help!

    Hi...
    I have run into a peculiar problem with the Safari browser on mobile platforms (IPad, IPod, IPhone) which I hope I can find a solution for in this community.
    Now, if we browse to the above link in Safari using a desktop or a laptop, there are no problems at all, but if we browse to the above link using an IPhone or an Ipad, then we have a problem
    At the top of this window you'll see the following:
    Apple Support Communities > Mac OS & System Software > Safari > Discussions
    This the Safari forum for the Mac OS X.
    Better that you post your topic here  > Developer Forums: Apple Support Communities
    I do see on my iPad what you are rreferring to. But you shoudl get the feedback you need in the developer forum.

  • TS1398 I have the ipad retina display version - I have a BIG issue with this when out and about that on about 50% of the time will it see my HTC mobile WiFi hotspot - rebooting either, or both devices doesn't cure the problem it drives me MAD!!!!

    I have the ipad retina display version - I have a BIG issue with this when out and about, that only about 50% of the time will it see my HTC mobile WiFi hotspot - rebooting either, or both devices doesn't cure the problem it drives me MAD!!!!
    The HTC hotspot works fine with everything else I connect to it.
    Also - ipad will not connect to my HTC via bluetooth. Again, I can connect to everything else with my HTC other than my ipad.
    I have to say this is my first venture into Apple products and I have always wanted to get away from my windows based laptop to get a MacBook, the problems I have had (flash player etc) & continue to have (as above) are putting me right off swapping over. I HATE technology that doesn't work and my ipad has been hard work!

    I stated my ipad as being an ipad2, but I now think it is a 3??? It was new Jan this year and is the 64gb retina display version.
    I really would like to get to the bottom on this problem wit mobile hotspots as it is sitting on my desk next to me now and I cannot get it to connect to my HTC mobile hotspot!!!! It might be taking a flying lesson soon at this rate!!! Grrrrrrr...........

  • Sync issues with iPhone 6 Plus and iTunes

    I'm having issues with syncing my iPhone and iTunes.
    I am running: Mavericks 10.9.3 | iTunes 11.4 | iOS 8.0.2
    Every time I try to sync my iPhone 6 Plus with iTunes, the sync process gets stuck on step 5 of 5 (waiting for changes to be applied).  The longest this has occurred for is 2hrs.  After this time I have stopped the sync and ejected my iPhone.
    I had another issue with my phone when playing music.  When going to play music, I was given the error message saying that the song could not be found.  I connected my iPhone to iTunes and went to the tab in summery page, 'on this iPhone'.  I found the song and could see that next to the song was a small what looked like dotted grey circle.  After Googling this, I found a video saying that if i was to remove all my music and then add it again, this should fix the problem with this song.  I did this and this was when the issue occurred again.
    I unticked the option to remove all music but the sync did not finish. So I cancelled the sync, ejected my iPhone and tried again.  This time, the summery page of my iPhone said there was no music on my iPhone and the 'on this iPhone'  tab, this all so said there was no music however, my music was still on my iPhone including the song that would not play.  All played ok.
    I have read lots in the Apple forums about lost of difference reason this may be happening.  Things like bugs in iOS 8, app updates being transferred during the sync process, the latest iTunes version has bugs and even a dodgy USB cable could cause it.  My iPod running iOS 5 syncs all ok but I get this problem as well on my iPad Air.
    I all so had this issue with my old iPhone 4S.  The problem occurred when running iOS 7 and 8 on the 4S.  When I had it on the 4S, I did a restore of the 4S 4 times and thought I had found the issue down too a dodgy app.  However, now that it has happened on my new iPhone and still not using that app, could this be an issue with my Mac/iTunes?
    I am in contact with Apple Care, but this is such a long process. 
    So if anybody could please offer any advice on this or steps to try to maybe solve the issue, it would be really helpful.   Or if anybody is experiencing the same problem, it would be good to know its not just my devices and Mac producing this sync problem.
    I will update my post with any information provided by Apple Care as and when I get it.
    Thanks for reading and thanks for your time.
    Mark. 

    Hi,
    Just wanted to updated my original post and give some more information on this issue that I'm having with my iOS devices running iOS 8.0.2 and iTunes 11.4.
    Firstly I just want to updated my details about what version of Mavericks I'm running.  I'm running 10.9.5 - I put the wrong version down in my original post.
    So over the last week, I have had a few phone calls with Apple Care an am dealing with a senior technical advisor about this issue.
    I have been given some instructions that I am currently working through to see if it solves the sync issue with iTunes and my iOS devices. 
    The Apple Care advisor has pointed out that a iTunes version issue with music that I have ripped to iTunes and the current iTunes version could be what is causing the problem.  For example, every song that I have purchased from iTunes since having an account, I was told are all exactly the same the same when it comes down the to data/information about that track/album that iTunes stores with the music but when it comes to music that I have added to iTunes myself from a CD,  this was added and encoded with the version of iTunes that was running at the time of adding the music.  So going through all the music that I added to iTunes over the last 10 years, you can imaging that there was lots of mixed version of iTunes linked to lots of different music.
    At the moment, I'm having to go through all my music and find any that I have added and create a new ACC version of that music and delete the old version.  However, due to the amount of music that I have, this is going to take a long time.  When I was on the phone to the Apple Care advisor, we did several albums as a test and they all synced over to my iPhone.  This may just have been luck though at that time.
    Now, I'm not saying that this will solve the problem that I have with the sync issue but I am going to try it and see how I get on.  The only down side to this fix as far as I can see at the moment, is  that when it's all done, I think I will have to fully restore all my iOS devices to get music on to them.
    I will of course updated this topic when I have got through all my music and tried to sync my iOS devices.
    Thank you all for your comments.

  • I have been having issues with not receiving texts and voicemails daily, for a few months now. If I turn the phone completely off, when I turn it back on the messages will flood in from hours before. I can't be continually turning off my phone in case som

    I have been having issues with not receiving texts and voicemails daily, for a few months now. If I turn the phone completely off, when I turn it back on the messages will flood in from hours before. I can't be continually turning off my phone in case someone left me a message. How do I resolve this issue?

    Wifi:  my Cell phone will remember 10 wifi connections.  So delete any you don't use often and your home wifi and try to enter home wifi again.
    if it still won't connect to home wifi, call your internet provider for help.  You may need a newer router or different settings Or upgraded service.   Your phone seeks the best connection and will refuse lesser connections.
    last resort.  Backup the phone.  Do a full reset, then restore as new with the backup.
    if still not fixed, go back to apple and insist on repair or replacement.
    HOWEVER.   voicemail is not a wifi issue, it's a carrier function, which is why the SIM card is a suspect.

  • Issues with Bex query structures and Crystal Reports/Webi

    Hi experts,
    I'm having an issue with Bex Query structures and nulls. I've built a Crystal Report against a Bex query that uses a Bex Query structure. The structure looks like the following
    Budget $
    Budget %
    Actual $
    Actual %
    Budget YTD
    etc
    if I drag the structure into the Crystal Report detail section with a key figure it displays like this
    Budget $     <null>
    Budget %     <null>
    Actual $     300
    Actual %     85
    Budget YTD     250
    the null values are displayed (and this is what is required). However if I filter using a Record selection or group on a profit centre then the nulls along with the associated structure component are not displayed.
    Actual $     300
    Actual %     85
    Budget YTD     250
    Webi is also behaving similarly. Can anyone explain why the above is happening and suggest a solution either on the Bex side of things or on the Crystal Reports side of things? I'm confused as to why nulls are displayed in the first example and not the second.
    Business Objects Edge 3.1 SP2
    SAP Int Kit SP2
    OS: Linux
    BW 701 Level 6
    Crystal Reports 2008 V1
    Thanks
    Keith

    Hi,
    Crystal Reports and Web Intelligence will only show data which is in the cube. You could have an actual 0 or Null entry whithout grouping but by changing the selection / grouping in the report the data does not include such entry anymore.
    ingo

  • HT1349 Has anyone had issues with the iphone 4s and facebook.

    Has anyone had issues with the iphone 4s and facebook. I have downloaded the app and sometimes it will let me log in and then it will log me out and not let me back in. I have deleted and downloaded it several times and nothing is working. HELP!

    @razmee: rather unhelpful.
    @tata - we're having the same trouble, and the only solution we've found doesn't fix it.
    1) uninstall
    2) login on PC/MAC and change password
    3) reboot iphone
    4) install facebook app, reboot again
    5) login from iphone. 
    No joy.
    Safari works, but not for the apps.
    Of course, it's Facebook that has to fix this.

  • My wife has issues with her AOL email and was told to contact Apple about a virus scan. Has anyone else had a similar issue?

    My wife has issues with her AOL email and a tech rep told her to contact Apple for a virus scan. Has anyone else had a problem like this?

    You forgot to describe the 'issues' but there are no viruses that affect Apple OS X.
    You may find this User Tip on Viruses, Trojan Detection and Removal, as well as general Internet Security and Privacy, useful:
    https://discussions.apple.com/docs/DOC-2435
    The User Tip (which you are welcome to print out and retain for future reference) seeks to offer some guidance on the main security threats and how to avoid them
    Bear in mind that from April to December 2011 there were only 58 attempted security threats to the Mac - a mere fraction compared to Windows malware:
    http://www.f-secure.com/weblog/archives/00002300.html
    (I have ClamXav set to scan incoming emails, but nothing else.)

Maybe you are looking for