Search works differently and "wrong" in Solaris environment

I have my test and development databases in Windows and Solaris environements with exactly same database version and configurations.
I have created an intermedia index on following table as follows:
SQL>desc cc_job_offer_search_text
Name Null? Type
JOB_OFFER_ID NOT NULL NUMBER(38)
JOB_OFFER_SEARCH_TEXT NOT NULL LONG
TEXT_TYPE VARCHAR2(6)
Version for the database running in Solaris:
SQL> select * from v$version;
BANNER
Oracle8i Enterprise Edition Release 8.1.7.0.0 - Production
PL/SQL Release 8.1.7.0.0 - Production
CORE 8.1.7.0.0 Production
TNS for Solaris: Version 8.1.7.0.0 - Production
NLSRTL Version 3.4.1.0.0 - Production
Version for the database running in Windows:
SQL> select * from v$version;
BANNER
Oracle8i Enterprise Edition Release 8.1.7.0.0 - Production
PL/SQL Release 8.1.7.0.0 - Production
CORE 8.1.7.0.0 Production
TNS for 32-bit Windows: Version 8.1.7.0.0 - Production
NLSRTL Version 3.4.1.0.0 - Production
Index Creation scripts:
exec ctx_ddl.drop_preference('cica_lexer');
begin
ctx_ddl.create_preference('cica_lexer','BASIC_LEXER');
ctx_ddl.set_attribute('cica_lexer','printjoins','$_#@*&^%/\()');
ctx_ddl.set_attribute('cica_lexer', 'skipjoins', '-');
end;
create index JOB_OFFER_SEARCH_TEXT_IDX on
cc_JOB_OFFER_SEARCH_TEXT(JOB_OFFER_SEARCH_TEXT)
indextype is ctxsys.context
PARAMETERS('FILTER CTXSYS.INSO_FILTER format column text_type lexer cica_lexer' );
After index has been created, my search works fine in Windows environment, however it behaves irratically in Solaris environment (where data has been exported from the database on Windows environment, and I have checked that the data is identical).
Database Running in Windows:
SQL> select count(*) from cc_job_offer_search_text;
COUNT(*)
1200
SQL> select count(*) from cc_job_offer_search_text
2 where contains(job_offer_search_text,'Permanent')>0;
COUNT(*)
1094
Database Running in Solaris:
SQL> select count(*) from cc_job_offer_search_text;
COUNT(*)
1200
SQL> select count(*) from cc_job_offer_search_text
2 where contains(job_offer_search_text,'Permanent')>0;
COUNT(*)
1200
====> In fact it returned all records, which is not correct!
However, there are certain queries which are working fine in both environments.
Database Running in Windows:
SQL> select count(*) from cc_job_offer_search_text
2 where contains(job_offer_search_text,'Contractual')>0;
COUNT(*)
52
SQL> select count(*) from cc_job_offer_search_text
2 where contains(job_offer_search_text,'{Greater than $150,000}')>0;
COUNT(*)
20
Database Running in Solaris:
SQL> select count(*) from cc_job_offer_search_text
2 where contains(job_offer_search_text,'Contractual')>0;
COUNT(*)
52
SQL> select count(*) from cc_job_offer_search_text
2 where contains(job_offer_search_text,'{Greater than $150,000}')>0;
COUNT(*)
20
Any idea why it is behaving "irratically" in the database running in the Solaris environment, when I select certain search criteria wheras it works absolutely fine at times?

If you really need to run 8.1.7, you need to upgrade to the latest patchset. I seem to recall a problem like this which was fixed in something like 8.1.7.4. Better still, go to 10g.

Similar Messages

  • Search yields right AND wrong results

    Hi all,
    I've looked around for an answer to this, but so far nothing. Can you help?
    When I type in a search term in iTunes (Library: music; Search: all), I get all the correct results, but I also get results that I shouldn't as well. I thought it had to do with the words found in the album's Description field (in this case, it's a podcast), but I deleted the Description (which did contain the search term/s), and yet they still show up in the search results -- as if the podcast is somehow imprinted with the words I deleted, though I cannot find them elsewhere. (These terms do not show up in the podcast's "Show Description" either.)
    Does this make sense?
    Any ideas?
    Thanks,
    Rich
    [email protected]

    Hi - Thanks! I checked the Show Description (using Control, aka right-click) but did not see any terms that would cause the podcast to show up in search results. I've already deleted any text in the Description field (Get Info). Still perplexed.

  • Final .swf file works different (and BAD) like while runing in flex

    OK, next question!
    How is it possible, that when I compile Flex project, everything works, but when I click on html file from bin-debug folder, nothing works?!
    I use SDK 3.2. and flash player version is set up to 10.0.0.
    When I run the project, I am able to load image and work with it. When I run html file from bin-debug folder, I am suddenly NOT ABLE to load that image!
    What's wrong?
    This is my code
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" height="632">
        <mx:Script>
            <![CDATA[
                private var fileRef            : FileReference; //browser souboru
                private var fileFilter        : FileFilter; //seznam pozadovanych koncovek souboru (obrazky = ".jpg ...")
                private var loader            : Loader; //nahraje obrazek z browseru
                private var photoBitmap        : Bitmap; //nahrany obrazek ze souboru
                private var photoData        : BitmapData; //data obrazku ze souboru (pristup k pixelum obrazku)
                private var shape            : Shape = new Shape();
                public function Browse() : void
                    fileFilter = new FileFilter("Images (*.jpg, *.jpeg, *.gif, *.png)", "*.jpg; *.jpeg; *.gif; *.png");
                    fileRef = new FileReference();
                    fileRef.browse([fileFilter])
                    fileRef.addEventListener(Event.SELECT, onImageSelect);
                private function onImageSelect(event:Event) : void
                    photoPanel.title = fileRef.name;
                    fileRef.load();
                    fileRef.addEventListener(Event.COMPLETE, onDataLoaded);
                private function onDataLoaded(event:Event) : void
                    var tempFileRef : FileReference = FileReference(event.target);
                    loader = new Loader();
                    loader.contentLoaderInfo.addEventListener(Event.COMPLETE, onPhotoLoaded) ;
                    loader.loadBytes(tempFileRef.data);
                private function onPhotoLoaded(event:Event) : void
                    photoBitmap = Bitmap(event.target.content);
                    photoImage.source = photoBitmap;
                private var isDrawing        : Boolean;
                private var drawSize        : Number;
                private var drawColor        : Number;
                private function onImageMouseDown(event:MouseEvent) : void
                    isDrawing = true;
                private function onImageMouseUp(event:MouseEvent) : void
                private function onImageMouseMove(event:MouseEvent) : void
                    shape.graphics.beginFill(0xFF0000);
                    shape.graphics.drawRect(event.localX-1, event.localY-1, 3, 3);
                    shape.graphics.endFill();
                    photoImage.addChild(shape);
            ]]>
        </mx:Script>
        <mx:Button x="10" y="418" label="Upload" click = "Browse()" />
        <mx:Panel x="10" y="10" width="400" height="400" layout="absolute" id="photoPanel" backgroundColor="#D9D4D4">
            <mx:Image x="0" y="0" id="photoImage" mouseMove="onImageMouseMove(event)"/>
        </mx:Panel>
    </mx:Application>
    IN HTML pages I call the swf file this way
                <script type="text/javascript">
                    if (AC_FL_RunContent == 0) {
                       alert("This page requires AC_RunActiveContent.js.");
                 } else {
                       AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=10,0,0,0','nam e','postcard','width','700','height','500','align','middle','id','postcard','src','postcar d','quality','high','bgcolor','#ffffff','allowscriptaccess','sameDomain','allowfullscreen' ,'false','pluginspage','http://www.macromedia.com/go/getflashplayer','movie','postcard' ); //end AC code
                </script>
                <noscript>
                    <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=10,0,0,0" name="postcard" width="700" height="500" align="middle" id="postcard">
                    <param name="allowScriptAccess" value="sameDomain" />
                    <param name="allowFullScreen" value="false" />
                    <param name="movie" value="postcard.swf" />
                  <param name="quality" value="high" />
                  <param name="bgcolor" value="#ffffff" />
                  <embed src="postcard.swf" quality="high" bgcolor="#ffffff" width="700" height="500" name="postcard" align="middle" allowScriptAccess="sameDomain" allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
                    </object>
                </noscript>

    Is there a difference in the URL in the address bar in the browser?
    Alex Harui
    Flex SDK Developer
    Adobe Systems Inc.
    Blog: http://blogs.adobe.com/aharui

  • Building the mod_jk between apche and jboss in solaris environment

    hi there,
    i have installed apache2 and running on one zone and jboss installed and running on another zone
    now when i connecting of them using the tomcat connector by building the mod_jk i am getting the error where i have followed the procedure in the following link:
    http://blogs.sun.com/shanti/entry/building_mod_jk
    from the above link i have downloaded the source and set the path and then when i am running the file which i have saved then i am getting the below error:
    ./configure --with-apxs=/usr/local/apache2/bin/apxs
    checking build system type... i386-pc-solaris2.10
    checking host system type... i386-pc-solaris2.10
    checking target system type... i386-pc-solaris2.10
    checking for a BSD-compatible install... scripts/build/unix/install-sh -c
    checking whether build environment is sane... yes
    checking for gawk... no
    checking for mawk... no
    checking for nawk... nawk
    checking whether make sets $(MAKE)... yes
    checking for test... /usr/bin/test
    checking for rm... /usr/bin/rm
    checking for grep... /usr/bin/grep
    checking for echo... /usr/bin/echo
    checking for sed... /usr/bin/sed
    checking for cp... /usr/bin/cp
    checking for mkdir... /usr/bin/mkdir
    need to check for Perl first, apxs depends on it...
    checking for perl... /usr/bin/perl
    could not find /usr/local/apache2/bin/apxs
    configure: error: You must specify a valid --with-apxs path
    if any body has encountered such a problem please give me the reply
    thank you for all

    hi o.bogosavljevic
    yes i am using that package only
    what might be the path of the aspx

  • Shell Script behaves different and wrong on OEL5 then SUSE 11

    Hi all ,
    I execute following script on SUSE11 and receive the following output as expected and as it should be.
    $ echo "\nxxxx\tyyyy\ndddd"
    &lt;newline&gt;
    xxxx&lt;tab&gt;yyyy
    dddd
    $
    But when I execute same command on OEL 5.2 , following output is coming which shows that "newline" and "tab" are not recognized and behaved as text.
    $echo "\nxxxx\tyyyy\ndddd"
    \nxxxx\tyyyy\ndddd
    Please can some one explain to me why .
    I have many shell script and they are not working properly now on OEL.

    Hi ,
    I had a look to man page of echo and seen that -E option of echo command is enabled by default.
    I craeted an alias echo="echo -e" in user profile and scripts are running now properly.
    Thank you .
    Leo.

  • My wife and I both have iPads, but the time on mine is 4 minutes different and wrong,can I reset the time, does anybody know why it would be different.

    Why is mytimedifferentsfrom someone who is five feet away.

    Go to Settings > General > Date & Time. You can set them manually, or have them automatically srt the time.

  • Sharepoint Foundation - search working for some users (or computers), but not others

    Hi all,
    We have doozy of a search problem with SharePoint Foundation 2010 that I'm hoping someone can help with.
    We have an application that is listening on port 14197 and search is working just fine, but only for one or two users.
    If I do a search while logged in using the account we set the application up with then the search works fine and it returns records as expected.
    If I use a different account - one that has full control over the app, then the exact same search fails with the following message:
    We did not find any results for 06BSL.
    Suggestions:
    Ensure words are spelled correctly.
    Try using synonyms or related searches.
    Try broadening your search by searching from a different site.
    Additional resources:
    Get additional search tips by visiting Search Help
    If you cannot find a page that you know exists, contact your administrator.
    We've done everything we can think of, including several procedures to create new search accounts, replace databases, etc.
    Nothing has helped and all of the info we can find online is in relation to getting search working when it doesn't work at all.  In our case it is working, but only for some users.  We thought it might have been a permissions issue, but not matter
    what permissions we seem to give to test accounts they still don't work.  We've set up a test account, for example, that is a member of the 'application owners' group, but cannot produce any search results with it.
    The SharePoint Foundation server is running on Windows 2008 Server Foundation, with a separate SBS 2003 DC.  
    Any help most appreciated.

    Hi Alex, thanks for your response and apologies about the late reply - didn't realise someone had responded until now!
    Agreed that this looks like a permissions issue, but we're stumped as to what it could be.  The 'test' account displays this problem - if we try and search on 06BSL
    we get no results, but it does appear that this account has full control over this document (see below).
    Note that the 'Manage Permissions' page presents a comment 'This list item inherits permissions from its parent. (Customer QA & Product Management)' which is what we're
    expecting.
    The indexing schedule is set to 5 minutes. 
    Appreciate your help with this, as we've spent a huge amount of time on this problem but don't seem to be any closer to a resolution.
    Cheers,
    Damian
    Check permissions result (this result is the same for the list or for the document itself):
    Permission levels given to test (DOMAIN\test)
    Full Control
    Given through the "QA Application Owners" group.
    Design, Contribute, Read
    Given through the "QA Application Members" group. 

  • I have problem with my wifi in 4 S, i cant connect to any wifi itried resetting network setting and reset all setting but the result was the same, its only keeps searching for wifi and cant find any, itried to use OTHER but also didnt work.please help me

    i have problem with my wifi in 4 S, i cant connect to any wifi itried resetting network setting and reset all setting but the result was the same, its only keeps searching for wifi and cant find any, itried to use OTHER but also didnt work.please help me???

    If Join was on then your home wi-fi must be set to Non-Broadcast.  If you did not set this up (maybe your provider did) then you will need to find the Network Name they used, and any password they used.  The SSID is Security Set ID and to see more try http://en.wikipedia.org/wiki/SSID .  Basically it is the name used to identify your router/network.  A lot of times the installer will leave it set as LinkSys, or Broadcom or whatever the manufacturer set it as for default.  Your best bet is to get whoever installed it to walk you through how they set it up, giving you id's and passwords so you can get in.  HOWEVER, if you are not comfortable with this (if you set security wrong, etc.) you would be well ahead of the game to hire a local computer tech (networking) to get this working for you.  You can also contact the vendor of your router and get help (if it is still in warranty), or at least get copies of the manuals as pdf files.  Sorry I can't give you more help, I hope this gives you an idea where to go from here to find more.

  • Keyboard problems, not working keys and different connection with letters

    PLEASE HELP ME, The background is this: Yesterday I have done for the first time the time machine with my external hardisk, and I try to delete also all remains documents of windows from virtual machine Parallel (I delete it after trial version and I still have windows data in the mac).
    (I dont know if is connected to the problem)
    After this, this morning the keyboard start to work bad, some keys don't work, like ENTER or P or Volume Buttons, but the strange thing is that some other work differently, like pushing the left arrow it type "à".
    I try to change Mac, in order to understand if is a software problem, but nothing, it didnt work also on different computer.
    It's not a keyboard lenguage problem as you can think, I changed, lenguage, and nothing, in fact this does not explain why some keys dont work,
    In the keyboard visor, I can see which key works and which not, and some like, down arrow, is perennially insert, and furthermore, up volume work as backspace.
    So, a series of strange problems.
    -keys that dont work
    -wrong connection (key-letters)
    -and keys always "ON"
    I'm sure that no liquid went on the keyboard, and the keyboard is new, (less than 6 month, bought at Apple store)

    Ok, I try again, and I followed perfectly the process, the "UTILITY DISC PAGE" was due to the fact that the "P" button doesnt work, therefore, it get just option+cmd+R
    Oh, really this is very strange. I try this keyboard on an other mac and it didnt work (it fail the configuration process because the "ENTER KEY" doesnt work)
    I try also a USB keyboard on my mac and it was all OK.
    So, it seems to be a software problem of my bt keyboard, there isnt a way to reset? I'm worry about match again the bt because it will ask me to type numbers and then ENTER and if the keyboard will not be fixed, Im without keyboard... now I can use it and when I need some key that dont work, I use the virtual keyboard.
    Guys, what do you suggest to do? The keyboard is in warranty but the bill is in Italy, now I'm in UK, the apple store could replace it without the bill?

  • Mac and iPhone4 contact searches behave differently

    I have ~1000 contacts. One of them has an email address beginning with "c.s". Searching my mac address book for "c.s" narrows it down to that one contact. Searching iPhone contact for "c.s" gives a list of dozens of names that start with "c" and "s". Is it treating the period as a wild card?
    Related search problem: one of my contacts' email addresses starts with "diz". Searching my mac address book for "diz" narrows it down to that one contact. Searching iPhone contacts for "diz" yields nothing.
    Why do the mac and iPhone searches behave differently?

    "Powerpoint in fact is unable to play any video files, it can only play still images and sound files, as only these files can be embedded."
    The mac version CAN play videos inside PPT right on a slide. They are linked, but they still play ON the slide. Basically anything the QT player can play, ppt can play right on the slide. I assumed PPT for windows could do this with formats OTHER than QT.
    You're saying that NO VIDEO FORMAT IN EXISTANCE can play ON a slide in PPT for windows? I find that hard to believe.
    I've seen many folks post here suggesting AVI works just fine and can be played right on the slide in PPT for Windows. Mpeg1 is normally 320x240 and well, honestly it looks like crap on a 1024x768 screen (and most people these days do NOT want to show a 320x240 movie at regular size on a large slide), so I stand by my comments made previously, unless someone can post that they tested an AVI and PTT for windows actually bumps you OUT of ppt and into a player (full screen or not). I just can't imagine that's what it's doing. QT on the other hand, is pretty much broken except in the way you described, playing it in the QT player, which is why no one wants to do that.

  • My iphone 4S only start whit cable plug in and then show battery very low (with red line end) then try to turn on but show searching in operator name command and not connecting and no work properly and when I plug out it turn off!!! what should I do?

    My iphone 4S only start whit cable plug in and then show battery very low (with red line end) then try to turn on but show searching in operator name command and not connecting and no work properly and when I plug out it turn off!!! what should I do?

    I'm afraid you'll have to get the phone serviced, dropping the phone must have damaged additional parts inside the phone.
    But Apple will not service the phone anymore, opening the phone and replacing the battery should only be done by authorized personal, not by users.
    You'll have to look for a 3rd party repair shop and see if they can fix this, sorry.

  • On my iPhone 4, people cant hear me when I make and / or receive normal (GSM) phone calls. But when on calls using internet based / native apps like viber or skype, people can hear me just fine. Voice memos work too and have already tried different SIMs

    On my iPhone 4, people cant hear me when I make and / or receive normal (GSM) phone calls. But when I make/receive calls using internet-based / native apps like viber or skype, people can hear me just fine. I have tried recording my voice using voice memos - this works. And have already tried different SIM cards but the problem persists.
    I have taken my phone to an authorized Apple service center, where they restored my phone to factory settings, but still facing the same issue. They service center directed me to Apple Customer Care Hotline, where I have now spent 3+ hours explaining my issue and yet no one can resolve it. The easy answer if to replace the phone - and since it is out of warranty, I am expected to pay for it.
    Additionally, the customer service has been so rude and confrontational that it has completely changed my view of Apple and its customer focus. I am a disappointed and angry customer today - people would be surprised to hear just how rude customer service was including making statements such as "Apple doesnt make infallible products, that's why warranty is needed for our products" and that "every product undergoes a problem at some stage, so do ours!" There goes whatever confidence I had...
    My concern is simple - if no one at Apple and / or its CS hotline is able to address my issue comprhensively and keep telling me that they have never encountered a precedent before, then with what right can they expect me to pay for a replacement?! I am NOT here to fund Apple's research into their product faults and manufacturing.
    And even though a customer is out of warranty, is it too much to expect an Apple product to work well for at least a 'reasonable' period of time. My phone is less than 18 months old and has been facing this issue for the past 2 months - surely the longevity of Apple products is more than 18 months!
    Just a sad sad day for an Apple customer, compounded by unjustifiably rude and aggressive staff. And still no resolution to my problem.

    I am having the same issue - with my last 2 iPhone 4's. My first handset each time I was on a call wether it was up to my ear or on loud speaker, the call would automatically mute even though the mute button wouldn't show up as highlighted. Pressing the mute button on and off during the call doesn't fix it either. I rang Apple and asked what some of their trouble shooting solutions were. I got told that it might be a software issue and to install the latest software update. This failed. I then got told to uninstall the software on the phone and do a complete restore. This also failed. After trying the troubleshooting suggestions, I took the phone into my provider and they sent me out a new phone within a week under warranty claiming it was a hardware issue and probably just a "glitch" with that particular phone. This was not the case....
    After receiving my second iPhone 4, I was hopeful that it would work. For the first couple of days, making/receiving calls was not an issue. Until after about a week, the same problem started again. In one instance I had to hang up and call back 4 times and the call would still automatically mute after about 5 seconds. Also on the second handset, the main camera located on the back of the phone has red and blue lines running through it and can't take a decent picture. So back to the store I go to get another replacement - Again.
    For a phone that is rated highly and as a keen Apple product purchaser, I am a bit disappointed with the experience I have had with the iPhone 4. Let's hope they find a fix sometime soon because this is becoming a bit beyond a joke.....!!

  • ITunes is updated and works fine and I am able to log onto my account. When I go to purchase a song, I get the error message "Your Apple ID has been disabled". I've tried different methods: changing passwords, making a new account with another email addre

    iTunes is updated and works fine and I am able to log onto my account. When I go to purchase a song, I get the error message "Your Apple ID has been disabled". I've tried different methods: changing passwords, making a new account with another email address, and emailing itunes tech support. I am curious as to how many others have been experiencing the same issue. When I googled the error, it seemed like it was happening extremely often with many people.
    We all love their products, but they always come with a lot of issues and horrible customer support.
    My apple Id is [email protected]

    My Iphone 4 is telling me the same thing and I believe I figured out what the problem is.  I had some fraudulent charges on my itunes account, so I call my bank and disputed the charges.  Right after I did that, I started getting the message "Your apple ID has been disabled."  I just realized today that the charges are not fraudulent, they are "in app purchases."  One of my daughters downloaded the game Top Girl which is FREE, but in the game Top Girl you use money in the game to purchase things.  It just so happens that the money you use to purchase things is real money MY Money!!!.  My daughter thought she was using play money in the game and had no idea she was using real money.  She spent $106.00 buying stuff.  Now I have to call the bank and tell them to release the hold and pay Itunes.  I'm hoping this solves the problem.  Here is the link to learn how to disable "in app purchase" on your iphone or ipad.
    http://www.ikidapps.com/2010/12/parents-avoid-accidental-app-purchases-how-to-tu rn-off-in-app-purchasing.html

  • My hard drive crashed and I am using a different machine. How do I retrieve my personalized Pages 5.2 templates from my backup drive? I have searched at length and can't seem to find them.

    My hard drive crashed and I am using a different machine. How do I retrieve my personalized Pages 5.2 templates from my backup drive? I have searched at length and can't seem to find them.

    login_directory = /Users/yourname
    If the Library folder is not shown in your login directory, then open a Finder window, and press command+J. This will open a Finder View Options panel. On it, there is a selectable entry to Show Library Folder. Once this is selected, the Library folder will appear. Now, follow the instructions in my May 6 post. You will have to right-click on com.apple.iWork.Pages and choose Show Package Contents, before continuing.
    Correction: login_directory/Library/Containers/com.apple.iWork.Pages/Data/Library/Applicatio n Support/User Templates/
    The host software persists in changing the correct Application Support text above to Applicatio n Support, which does not exist.

  • I want to play candy crush on Facebook and it says i need latest version of adobe flash player, i downloaded it and it still doesn't work. i uninstalled and re installed and still not working. what is wrong? what do i need to do,

    i want to play candy crush on Facebook and it says i need latest version of adobe flash player, i downloaded it and it still doesn't work. i uninstalled and re installed and still not working. what is wrong? what do i need to do,

Maybe you are looking for

  • Is it possible to filter calendar subscription based on a keyword?

    I've subscribed to a league calendar subscription in iCal (from google calendars) which will update and change often. I only need to see one team out of the several that are included in this master calendar subscription. Is there any way to filter ba

  • How to have a mandotory field in a standard screen.

    Hi, i need to have the field VERAK_USER-CSKSZ (User Responsible)  as mandatory in transaction KS01/KS02 and KS12. does anyone know how to proceed with this issue? thanking you Regards, Nitin

  • Mapviewer application hangs on WebLogic

    The MapViewer 11g application hangs after some time and does not respond to any request. MapViewer is running on a separate domain. The MapViewer is very lacklustre in performance. Please suggest what could be done. It takes the CPU of the server to

  • Problems with downlowding the latest version of iTunes

    Resently there have ben problems with downloading the latest versions of iTunes. And also the version 10.6.1.7 I had to reinstall up to four times, undtil the install succeeded. Normally the updates are running without any problems. I have ben iTunes

  • Wasted disk space

    Disk space used for Podcasts builds up over time. It seems when some podcasts are deleted from iTunes the underlying data files are not removed. Even though I've listened to all my podcasts and deleted them many, but not all, are still in my podcasts