Questions around use of thesaurus and synonyms

Q1. Does thesaurus support Japanese/Chinese/Korean? The document didn't say no. But didn't confirm it explicitly.
Q2. For ctxload to load a thesaurus import file, what encoding should be the file? UTF-8?
Q3. Is synonym relation reflextive in Oracle Text? After define EUR is Euro, should I define Euro is EUR?
Q4. From the document, when I define a synonym, I cannot specify language. If I define a synonym between 'USD' and 'US Dollar'. And when I query I use SYN(USD), will this expand into 'USD,US Dollar' no matter what language is the document?

Here are some information which may answer your questions
Ans1)
We have a limitation for language specific character sets
You can only add knowledge bases for languages with single-byte character sets.
You cannot create a knowledge base for languages which can be expressed only in multibyte character sets.
I think Japanese/Chinese/Korean are represented in multi byte character sets, so we cannot.
Ans2) Supplied knowledge bases with Oracle text are in WE8ISO8859P1. You can store an extended knowledge base in another character set such as US7ASCII.
Knowledge bases can be in any single-byte character set.
Ans 3) No you dont need to.It is reflexive.
you can check the following example
create table test(id number, text varchar(20));
insert into test values (1, 'os');
insert into test values( 2, 'operating system');
insert into test values(3, 'windows');
exec ctx_thes.create_thes('my_thes',FALSE);
exec ctx_thes.create_phrase('my_thes','os');
exec ctx_thes.create_phrase('my_thes','operating system');
exec ctx_thes.create_relation('my_thes','os','SYN','operating system');
declare
syno varchar2(50);
begin
syno := ctx_thes.syn('os','my_thes');
dbms_output.put_line('the synonym of os is : ' || syno);
end;
--o/p is the synonym of os is : {OS}|{OPERATING SYSTEM}
declare
syno varchar2(50);
begin
syno := ctx_thes.syn('operating system','my_thes');
dbms_output.put_line('the synonym of operating system is : ' || syno);
end;
--o/p is the synonym of op sys is : {OPERATING SYSTEM}|{OS}
Ans 4) I think you are trying to say the following
you have a thes file..say in spanish
and you have an entry in that file for USD Syn in English...
you want to ask whether still Oracle can return SYN(USD) = 'USD,US Dollar'
Am I right?

Similar Messages

  • Question about using 10g/11g and APEX ...

    Hi,
    I just recently learned of Oracle's APEX and have a few questions about using it.
    Can I use APEX with express, standard, and enterprise editions of 10g and 11g?
    Are all of these free to use?

    You might want to read about APEX rather than jumping into questions that are reasonably well documented. Info at http://www.oracle.com/technology/products/database/application_express/index.html
    Your specific questions:
    1) Apex is a package that can be installed into any properly licensed database.
    2) The price for the production license of the database varies by edition.
    The price for Express Edition is $0 for use in production. Part of the cost for that edition is 'no Oracle Support based support, no patches, data volume limitation, etc.'

  • Question on using Distinct operator and avoiding ORA-00936 error

    I may have answered my own question, by searching the OTN forums, but I just want to confirm what I've learned.
    I'm trying to use a distinct on one of my columns, where I am pulling multiple columns, and trying to avoid duplicate entries. From most of my textbook example, when an example is using a distinct, they were only pulling one column.
    From my example below, when I try to use a distinct, I get the following error: ORA-00936: missing expression:
    select p.list_id, distinct(p.associate_id), d.first, d.last, c.street1, c.street2, c.city, c.state, c.country, c.postal_code, c.email
    from sf.profiles p, demographics d, contact_info c
    where p.entity_id = d.entity_id
    and p.entity_id = c.entity_id
    and p.list_id = 111
    and associate_id in (insert associate_id in here
    );Once I searched OTN, I saw some examples, where they had the distinct operator as the first column. So I switched it with p.list_id, and the query ran find.
    select distinct p.associate_id, p.list_id, d.first, d.last, c.street1, c.street2, c.city, c.state, c.country, c.postal_code, c.email
    from sf.profiles p, demographics d, contact_info c
    where p.entity_id = d.entity_id
    and p.entity_id = c.entity_id
    and p.list_id = 111
    and associate_id in (insert associate_id in here);So, does the distinct operator have to go first, if using multiple columns?
    thanks
    Message was edited by:
    cmmiller

    With or without parenthesis, it's a distinct clause for all columns in select statement:
    SQL> select * from tt1;
            ID T
         10203 1
         10203 2
    SQL> select distinct(id), text from tt1;
            ID T
         10203 1
         10203 2
    SQL> select id, text from tt1;
            ID T
         10203 1
         10203 2
    SQL> Nicolas.

  • Question regarding use of Log and LogFactory in Servlets

    Hi,
    I saw the following code in an application and I would like to know where the log information would be stored. It appears that the log information is not displayed on the screen and was not able to find out where the log files are. The application was created using NetBeans and was using Tomcat. Thanks in advance.
    import org.apache.common.logging.*;
    public class Test extends HttpServlet
    private static final Log log = LogFactory.getLog(Test.class);
    String theHost;
    String theSource;
    public void init (ServletConfig config) throws ServletException
    super.init(config);
    log.info(�debug Enabled: �+log.isDebugEnabled());
    ServletContext context =config.getServletContext();
    this.thisHost=�/Test/�+config.getServletName();
    etc. etc.
    log.info(�thisHost:�+this.thisHost);
    log.debug(�Source:� +theSource());
    etc, etc.
    }

    It depends on what logging system you have set up.
    Commons.logging is an abstraction layer above logging components. It allows your code to use a variety of logging systems. However those logging systems have to be set up and configured by you. This can be via system properties, properties files, XML config files (depends on the logging system and how you use it).
    So you need to figure out which logging system is being used and then configue that system to write the logs
    matfud

  • Question on using CAST, MULTISET and TABLE

    Hi,
    I am trying to do something that is utterly meaningless, but I am studying the use of CAST with MULTISET and TABLE.
    I have created a type: a Nested Table of Number values:
    create type numTable as table of number;
    Now I perform the following query:
    select d.dname
    , ( select avg(column_value)
    from table
    ( cast( d.salaries as numTable)
    ) Department_Avg_Salary
    from ( select cast
    ( multiset
    ( select e.sal
    from emp e
    where e.deptno = d1.deptno
    ) as numTable
    ) salaries
    , d1.dname
    from dept d1
    ) d
    I had expected to see each department name and the average salary within that department. Instead, I see the same Department_Avg_Salary value for each row - the average of the first department:
    DNAME DEPARTMENT_AVG_SALARY
    ACCOUNTING 1875
    RESEARCH 1875
    SALES 1875
    OPERATIONS 1875
    However, when I change the query to the following:
    select d.dname
    , d.salaries
    from ( select cast
    ( multiset
    ( select e.sal
    from emp e
    where e.deptno = d1.deptno
    ) as numTable
    ) salaries
    , d1.dname
    from dept d1
    ) d
    I get the following result - note that each department shows the correct list of salaries, not the list of the 1st department's salaries over and over.
    DNAME
    SALARIES
    ---------------------------------------------------------ACCOUNTING
    NUMTABLE(2450, 1300)
    RESEARCH
    NUMTABLE(800, 2975, 3000, 5000, 1100, 3000)
    SALES
    NUMTABLE(1600, 1250, 1250, 2850, 1500, 950)
    OPERATIONS
    NUMTABLE()
    Can someone explain why the
    , ( select avg(column_value)
    from table
    ( cast( d.salaries as numTable)
    ) Department_Avg_Salary
    does not give an average per department but instead only the first department's average?
    thanks for your help!
    regards
    Lucas Jellema

    scott@ORA92> select d.dname,
      2           (select avg(column_value)
      3            from   table (cast (d.salaries as numTable))
      4            where d.dname = dname) Department_Avg_Salary
      5  from   (select cast (multiset (select e.sal
      6                          from   emp e
      7                          where  e.deptno = d1.deptno) as numTable) salaries,
      8                 d1.dname
      9            from    dept d1) d
    10  /
    DNAME          DEPARTMENT_AVG_SALARY
    ACCOUNTING                2916.66667
    RESEARCH                        2175
    SALES                     1566.66667
    OPERATIONS

  • Question about use of get_variable and if statement

    Hi!
    I have the following code in an RTF file.
    <?for-each@section:G_NYU_TSRSLT_HDR?>
    Display <?ACAD_CAREER?>
    <?xdoxslt:set_variable($_XDOCTX, 'acad_career_in', ACAD_CAREER)?>
    <?if:xdoxslt:get_variable($_XDOCTX, 'acad_career_in')='UGRD' ?> UGRD <?end if?>
    <?if:xdoxslt:get_variable($_XDOCTX, 'acad_career_in')='GRAD' ?> GRAD <?end if?>
    <?end for?>
    I believe it is looping through two rows. The first row has ACAD_CAREER = 'UGRD' and the second row has ACAD_CAREER = 'GRAD'
    The output is:
    Display UGRD
    UGRD
    Display GRAD
    UGRD
    GRAD
    For some reason, it appears like the second time the if UGRD statement is run, it still thinks the result is true.
    Any ideas?
    Thanks!

    Hi, Sent the email. Thanks for your help!!! The code which is till the problem is (all code is in form fields in the RTF):
    <?for-each@section:G_NYU_TSRSLT_HDR?>
    <?xdoxslt:set_variable($_XDOCTX, 'acad_career_in', ACAD_CAREER)?>
    Display <?ACAD_CAREER?>
    <?if:xdoxslt:get_variable($_XDOCTX, 'acad_career_in')='UGRD' ?> UGRD <?end if?>
    <?if:xdoxslt:get_variable($_XDOCTX, 'acad_career_in')='GRAD' ?> GRAD <?end if?>
    <?end for-each@section?>
    The output is:
    Display UGRD
    UGRD
    <on a new page>
    Display GRAD
    UGRD
    GRAD

  • Two previous questions may not have been as clear as I would have liked. I recently upgraded my MacBook 2008 (10.5.8) to Snow Leopard (10.6.8). With the updates came iTunes 11.1.1 and Quicktime 7.6.6. I am still using Garageband 2008 and iPhoto 2008. When

    Two previous questions may not have been as clear as I would have liked. I recently upgraded my MacBook 2008 (10.5.8) to Snow Leopard (10.6.8). With the updates came iTunes 11.1.1 and Quicktime 7.6.6. I am still using Garageband 2008 and iPhoto 2008. When I create music in Garageband I usually adjust the volume and save it. Even now when I share the Garageband created files with iTunes 11.1.1, the volime I previously set in Garageband is retained. However, when I use the music to create a slide show in iPhoto 2008 and export to Quicktime 7.6.6, the volume level I previously set is lost and seems to default to a low level. The problem seems to be either in the slide show export from iPhoto 2008 to Quicktime 7.6.6 or in Quicktime itself. Is there a work around, so that I can retain the volume level I had previously set in Garageband, a volume level that seems to transfer without problem to the new iTunes. But then iPhoto 2008 (slide show) possibly or Quicktime 7.6.6 do not cooperate. Before I did the upgrade to Snow Leopard, the new iTunes and Quicktime I had no problems with the set volume being retained in the old Quicktime. The reason I need control over the volume is that all these music files are uploaded to YouTube.

    Two previous questions may not have been as clear as I would have liked. I recently upgraded my MacBook 2008 (10.5.8) to Snow Leopard (10.6.8). With the updates came iTunes 11.1.1 and Quicktime 7.6.6. I am still using Garageband 2008 and iPhoto 2008. When I create music in Garageband I usually adjust the volume and save it. Even now when I share the Garageband created files with iTunes 11.1.1, the volime I previously set in Garageband is retained. However, when I use the music to create a slide show in iPhoto 2008 and export to Quicktime 7.6.6, the volume level I previously set is lost and seems to default to a low level. The problem seems to be either in the slide show export from iPhoto 2008 to Quicktime 7.6.6 or in Quicktime itself. Is there a work around, so that I can retain the volume level I had previously set in Garageband, a volume level that seems to transfer without problem to the new iTunes. But then iPhoto 2008 (slide show) possibly or Quicktime 7.6.6 do not cooperate. Before I did the upgrade to Snow Leopard, the new iTunes and Quicktime I had no problems with the set volume being retained in the old Quicktime. The reason I need control over the volume is that all these music files are uploaded to YouTube.

  • Question around UTL_FILE and writing unicode data to a file.

    Database version : 11.2.0.3.0
    NLS_CHARACTERSET : AL32UTF8
    OS : Red Hat Enterprise Linux Server release 6.3 (Santiago)
    I did not work with multiple language characters and manipulating them. So, the basic idea is to write UTF8 data as Unicode file using UTL_FILE. This is fairly an empty database and does not have any rows in at least the tables I am working on. First I inserted a row with English characters in the columns.
    I used utl_file.fopen_nchar to open and used utl_file.put_line_nchar to write it to the file on the Linux box. I open the file and I still see English characters (say "02CANMLKR001".
    Now, I updated the row with some columns having Chinese characters and ran the same script. It wrote the file. Now when I "vi" the file, I see "02CANè¹æ001" (some Unicode symbols in place of the Chinese characters and the regular English.
    When I FTP the file to windows and open it using notepad/notepad++ it still shows the Chinese characters. Using textpad, it shows ? in place of Chinese characters and the file properties say that the file is of type UNIX/UTF-8.
    My question : "Is my code working and writing the file in unicode? If not what are the required changes?" -- I know the question is little vague, but any questions/suggestions towards answering my question would really help.
    sample code:
    {pre}
    DECLARE
       l_file_handle   UTL_FILE.file_type;
       l_file_name     VARCHAR2 (50) := 'test.dat';
       l_rec           VARCHAR2 (250);
    BEGIN
       l_file_handle := UTL_FILE.fopen_nchar ('OUTPUT_DIR', l_file_name, 'W');
       SELECT col1 || col2 || col3 INTO l_rec FROM table_name;
       UTL_FILE.put_line_nchar (l_file_handle, l_rec);
       UTL_FILE.fclose (l_file_handle);
    END;
    {/pre}

    Regardless of what you think of my reply I'm trying to help you.
    I think you need to reread my reply because I can't find ANY relation at all between what I said and what you responded with.
    I wish things are the way you mentioned and followed text books.
    Nothing in my reply is related to 'text books' or some 'academic' approach to development. Strictly based on real-world experience of 25+ years.
    Unfortunately lot of real world projects kick off without complete information.
    No disagreement here - but totally irrevelant to anything I said.
    Till we get the complete information, it's better to work on the idea rather than wasting project hours. I don't think it can work that way. All we do is to lay a ground preparation, toy around multiple options for the actual coding even when we do not have the exact requirements.
    No disagreement here - but totally irrevelant to anything I said.
    And I think it's a good practice rather than waiting for complete information and pushing others.
    You can't just wait. But you also can't just go ahead on your own. You have to IMMEDIATELY 'push others' as soon as you discover any issues affecting your team's (or your) ability to meet the requirements. As I said above:
    Your problems are likely:
    1. lack of adequate requirements as to what the vendor really requires in terms of format and content
    2. lack of appropriate sample data - either you don't have the skill set to create it yourself or you haven't gotten any from someone else.
    3. lack of knowledge of the character sets involved to be able to create/conduct the proper tests
    If you discover something missing with the requirements (what character sets need to be used, what file format to use, whether BOMs are required in the file, etc) you simply MUST bring that to your manager's attention as soon as you suspect it might be an issue.
    It is your manager's job, not yours, to make sure you have the tools needed to do the job. One of those tools is the proper requirements. If there is ANYTHING wrong, or if you even THINK something is wrong with those requirements it is YOUR responsibility to notify your manager ASAP.
    Send them an email, leave a yellow-sticky on their desk but notify them. Nothing in what I just said says, or implies, that you should then just sit back and WAIT until that issue is resolved.
    If you know you will need sample data you MUST make sure the project plan includes SOME means to obtain sample data witihin the timeline needed by your project. As I repeated above if you don't have the skill set to create it yourself someone else will need to do it.
    I did not work with multiple language characters and manipulating them.
    Does your manager know that? If the project requires 'work with multiple language characters and manipulating them' someone on the project needs to have experience doing that. If your manager knows you don't have that experience but wants you to proceed anyway and/or won't provide any other resource that does have that experience that is ok. But that is the manager's responsibility and that needs to be documented. At a minimum you need to advise your manager (I prefer to do it with an email) along the following lines:
    Hey - manager person - As you know I have little or no experience to 'work with multiple language characters and manipulating them' and those skills are needed to properly implement and test that the requirements are met. Please let me know if such a resource can be made available.
    And I'm serious about that. Sometimes you have to make you manager do their job. That means you ALWAYS need to keep them advised of ANY issue that might affect the project. Once your manager is made aware of an issue it is then THEIR responsibility to deal with it. They may choose to ignore it, pretend they never heard about it or actually deal with it. But you will always be able to show that you notified them about it.
    Now, I updated the row with some columns having Chinese characters and ran the same script.
    Great - as long as you actually know Chinese that is; and how to work with Chinese characters in the context of a database character set, querying, creating files, etc.
    If you don't know Chinese or haven't actually worked with Chinese characters in that context then the project still needs a resource that does know it.
    You can't just try to bluff your way through something like character sets and code conversions. You either know what a BOM (byte order mark) is or you don't. You have either learned when BOMs are needed or you haven't.
    That said, we are in process of getting the information and sample data that we require.
    Good!
    Now make sure you have notified your manager of any 'holes' in the requirements and keep them up to date with any other issues that arise.
    NONE of the above suggests, or implies, that you should just sit back and wait until that is done. But any advice offered on the forums about specifics of your issue (such as whether you need to even worry about BOMs) is premature until the vendor or the requirements actually document the precise character set and file format needed.

  • Hi i made my itunes account around 5 years ago and i cannot rember the answers to my security question what can i do

    hi i made my itunes account around 5 years ago and i cannot rember the answers to my security question what can i do

    Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

  • Questions about Using Lightroom and Print Studio Pro

    I want to use Print Studio pro via the lightroom plugin since as I understand it, that is the only way to ensure a 16-bit file is being passed to the printer (on Windows).  However, I am a little confused about how the image is being rendered.  Is lightroom applying a default output sharpening to the file before handing it off to Print Studio Pro or Does Print Studio Pro manage resolution and Output sharpening based on the media and print size you choose?  
    So basically I am wondering if there is any output sharpening being applied, and when is it applied.  The possibilities I think would be:
    Lightroom is applying a default output sharpening when rendering the file to TIF for Print Studio Pro (If this is the case, what setting is being applied and is it possible to change it?)
    Print Studio Pro is applying output sharpening based on media type and print size, or applying a generiz amount of sharpening that does not take into account media or size.
    No Sharpening is being applied.  In this case, I should probably be exporting this file manually with output sharpening applied and then opening in Print Studio Pro
    The other question I have is if when using the plugin is the TIF file that is being generated in 16-bit pro-photo to ensure the maximum amount of color data?
    Because if Print Studio Pro is not applying sharpening I think it may just be better to print through the lightroom tool even though it renders down to 8-bit because the amount of control I have via the lightroom print module would be far more advantageous than any color data I am losing by printing in 8-bit.
    Anyone know the answer to all this?

    I had similar questions when I first got my Pro-100.
    1. You can call up PSP from any module, so I assume it is ignoring print module settings.
    2. If I select a Saved Print, which adjusts the print module settings specific to that print, and the open PSP the paper settings in PSP are not what is in LR, supporting the "ignore" conclusion.
    3. I ran some test prints using LR to print at three different output sharpening settings (Off, Standard, High) to ensure I could see a difference (I did).
    4. I ran four test prints: LR-Standard, XPS driver, LR-Standard regular driver, PSP using standard driver and PSP using XPS driver. I couldn't see any difference between the four prints.
    Since LR is such an easy printing process I haven't seen a reason to use PSP.
    John Hoffman
    Conway, NH
    1D Mark IV, Rebel T5i, Pixma PRO-100, MX472

  • HT5312 My recovery email is no longer in use, as it hasn't been used for sometime, and now seems to have 'expired', and I do not even recall being asked the security questions,so I can no longer download certain games. Please help.

    I cannot download certain games because I do not recall the answers to my security questions when it asks if I am 17 years or older. In fact, I do not even recall being asked these security questions.
    I tried to guess logical answers but now my iPad is threatening to lock me out. My second email is no longer in use as it has not been used for years and has seemingly expired.
    Can you please help?

    If you don't have access to your rescue email account, or you don't have one on your account (an alternate/secondary email address is a different setting/address), then you will need contact iTunes Support or Apple to get the questions reset (you won't be able to change/add a rescue email address until you can answer 2 of your questions)
    e.g. you can try contacting iTunes Support : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Account Management , and then 'Forgotten Apple ID security questions'
    or try ringing Apple in your country and ask to talk to the Accounts Security Team : http://support.apple.com/kb/HE57
    When they've been reset you can then use the steps half-way down the page that you posted from to update/add a rescue email address for potential future use

  • I bought a used iPod touch and when I try to set up my iCloud account, it says that the maximum number of free accounts have been activated on this device. Is there a way around this?

    I bought a used iPod touch and when I try to set up my iCloud account, it says that the maximum number of free accounts have been activated on this device. Is there a way around this? I thought I could maybe set up the account on my PC and go from there, but it won't let me do that. It is forcing me to set up on the iPod. Am I doomed to have no iCloud account because I opted for a used device?

    See this previous discussion.
    icloud: The maximum number of free...: Apple Support Communities

  • Questions regarding using the .monitor command to retur a animated image and we would like feedback to a designed webpage that is monitoring a 5kW windturbine:)

    I'm embedding a front panel image in an existing HTML dokument. I would like to use the command .monitor in the URL together with the refresh command so the VI automatic will reload every 20 secund. This actual work, but simultaneous I want to have the possibility to refresh manually so I don't have to wait 20 sec before new values is shown in the display. Is this possible to do?
    Another question: Since the real time display updates 1-2 times a secund the command .monitor is used to get a animated picture of the Real Time Display.
    There are several ways to add animation on to web pages. The techniques used h
    ere are the �server push� and �client pull�which makes the browser repeatedly reloads a changing inline image to provide crude animated sequences. This is not the most efficient way as this result�s in an image being re-transmitted for each frame of the animation. The command .monitor with the attribute refresh and lifespan in the URL trigger this �server push� and �client pull� techniques.
    I use this automatic refresh uploading of the display so that it each time shows different values, is this called crude animation?Then I'm wondering what I'm suppose to use the command lifespan to?I can't see the use of it in my display.....?
    link to the webpage so you can have a look at the display:
    http://134.7.139.176/.monitor?Real%20Time%20Performance.vi&refresh=20
    This is a project that I'm working together with another Norwegian friend. WE are very happy for feedback on our web page and displays go to: http://www.ece.curtin.edu.au/~peersena/ if you would like to view itThanks

    Annis,
    One of the other things to keep in mind is that the generation of an image does take some computing power so having the generation and the acquistion on the same machine is not always ideal. If you're using the machine that is publishing the front panel just to collect data it's not so much of an issue.
    If you really want to monitor in "Real-Time" using Remote Panels (requies LabVIEW 6.1) is your best option. This posting has more information on using Remote Panels and links to some live examples:
    http://exchange.ni.com/servlet/ProcessRequest?RHIVEID=101&RPAGEID=135&HOID=506500000008000000C0660000&UCATEGORY_0=_49_%24_6_&UCATEGORY_S=0&USEARCHCONTEXT_TIER_0=0&USEARCHCONTEXT_TIER_S=0&USEARCHCONTEXT_QUESTION_0=web+control&USEARCHCONTEXT_QUESTION_S=0
    Remote panels makes it possible to control the application remotely as well.
    With .monitor the only way I've been able to manually refresh is to "Shift+Refresh" on the browser.
    Regards,
    Kamran

  • I have installed new hard drive to iMac intel 2007 model and all I get on the screen is a grey question mark, tried system disk and now that's stuck in drive and just spinning around, any help please

    Sorry put all question on subject line. As I said fitted new hard drive, but all I get is a folder with a flashing grey question mark. Tried system disk but that is now just spinning around in DVD drive and I can't get it out. Any help with these problems would help

    Sounds like the new drive is not being recognized. Could be it's a SATA3 drive with a 6Gb/s transfer rate and needs to be jumpered down to 3. But if the 2007 is 1.5, it may not work at all, even if jumpered down. Other possibility is a not properly secured cable or a cable that's come loose from the logic board.
    What is the model of the 2007 Mac? What's the new drive? Did you do the installation or was it done by a shop?
    You can find your model here. Look next to Standard Hard Drive:
    http://www.everymac.com/systems/apple/imac/index-imac.html
    Message was edited by: WZZZ

  • Long story short....I restored my computer to an earlier point using time machine and now all of the previous back-ups are gone. My question has to do with itunes...is it possible to restore my itunes library to the most recent backup because the restore

    Long story short....I restored my computer to an earlier point using time machine and now all of the previous back-ups are gone. My question has to do with itunes...is it possible to restore my itunes library to the most recent backup because the restore that I did was in march and the latest backup was in may....the reason being is that there were app that i had downloaded that are in my most recent back-up, that were not in the backup I restored to. Is it possible to just restore one application ie)itunes?

    See this post.
    tt2

Maybe you are looking for