ASO Cube with attributes very slow in retrieval

Hi,
I have a ASO Cube with 5 base dimensions and 8-9 attributes on the entity dimension. I have only 5-6 measures, which do the averages and counts based on the 40 day period. Howere, the data is loaded at the 15 minute increment
Entity
Date - (date-time, lowest level being date)
TIme - ( 15 minute time for the full 24 hour period, has a attribute assocuated with oit)
LocationType
Measures.
The sample formula is
IIF(Islevel([Locations].CurrentMember,0), Avg(CrossJoin({[Measure].[Sale]},{[DateDim].CurrentMember.lag(40):[DateDim].CurrentMember})),Missing)
Is there a way, i can have this calculated as a part of the script? DO you suggest i create a BSO, to do these calculations and pass on the result.
In OBIEE, the report is to display the followung based on the date input.
Entity Gen7, Entity Gen 6..... Entity Gen 2, Attr1, Attr2, Attr3, Attr4, Attr5, Attr6, Attr7, Measures

2 things I would look at
1st - I don't know how much performance you would get out of this, but I'm not clear why you are using a crossjoin in your MDX, it seems unnecessary and may cause more overhead. The following should work, you could also try using IsLeaf instead and see if that is any faster
IIF(Isleaf([Locations].CurrentMember),
Avg({[DateDim].CurrentMember.lag(40):[DateDim].CurrentMember},
[Measure].[Sale], INCLUDEEMPTY)
2nd - your problem mostly revolves around the fact that you are running a 40 member sum/avg for every member you are querying. It also sounds like the average is at the Day level, which is not level 0. So for all forty days, ASO also has to calc the results of each of those days. Remember that aggregations only get you so far, you should really think of everything in ASO as dynamic and that is why you can see what you have set up is not going to work that well, it is too calc intensive.
I don't know how practical this is, but to get this to work fast you would probably need to break out the 15 minute increments below the day level to another dimension so the day level becomes a stored level zero member. The 15 minute increment dimension should also be stored. If at all possible you would want to have an alternate stored hierarchy with the 40 days you want to base the average on. Enable alternate hierarchies in your aggregations, then change your MDX calc to be based on the parent of the 40 day hierarchy divided by 40. That would be fast.
I suppose you could opt to not break out the 15 minute increments and just have the shared hierarchy made up of the 15 minute increments that are below the 40 days. That would still give you a good stored subtotal that with some query hints you could get optimized.

Similar Messages

  • Unable to create ASO cube with 120 attributes in Essbase

    Hi All,
    Currently we have requirement to build the ASO cube contains 6 hierachies and they wants to include all the columns of three relational tables.So,I adding all the columns as attributes to three of each hierarchies because they are all descriptive of each dimension.
    Now when I am trying build individually its wroking fine,When I am combining its throws an error "Network Error.Cannot close the cube".I seen in Essbase limitations that it will allow upto 256 dimensions however in my scenerio it is not accepting even 140(including all).
    Can some one assist is there any possible solution to build the cube.
    For your reference
    Using Essbase studio tool to deploy cube in Admin console
    Windows environment and SQL Server 2005 database
    Thanks in Advance

    "D:\ Huperion\Analytics\Bin\libdb42.dll"
    Is that a typo or is your path "Huperion" instead of "Hyperion"?
    I could see where that might cause a problem.

  • Cube with aggregation more slow that a cube without aggregation

    Hi,
    I have a SSAS 2012 database that I am trying to tune to give more performance.
    I improve several best practices like define attribute relationships between attributes and also create aggregations (with bids helper) to try so tune the speed of the query.
    But every time I compare my Cube with the old without aggregations the times are almost the same.
    I run the Sql profiler and I saw that the aggregations are used but at the end a Query Subcube is always done I increase the duration of the query.
    If my query can get all from the aggregation it's usual to do at the end a Query SubCube ?
    In the Old Cube no aggregations are used and all information is used by the partition and query Subcube.
    Thanks,
    Manuel Gomes

    Hi Gomes,
    If I understanding correctly, you encounter performance issue when using SQL Server Analysis Services. Since not know the structure of you SSAS database, it hard to give your the root reason that cause the performance issue. I'd suggest you enable SQL
    Sever profiler to monitor the queries fired by the process, once you find some queries took a very long time to run, consider creating the smaller cube partition or optimzing the query by adding index or partition to improve the query performance.
    Here are some links about performance tuning, please see:
    http://www.mssqltips.com/sqlservertip/2565/ssas--best-practices-and-performance-optimization--part-1-of-4/
    http://technet.microsoft.com/en-us/library/cc966527.aspx
    Hope this helps.
    Regards,
    Charlie Liao
    TechNet Community Support

  • Memory consumption for an ASO app with a very large outline

    Solaris 10 running Essbase 9.3.1.3.08 64-bit
    We have an app with a very large outline (3Gb). When we do a dimension restructure, it takes about 30 minutes which I suppose is reasonable. However, it takes up about 13Gb RAM to do this and doesn't release the memory when finished unless we restart the app.
    Is this normal? It seems an incredible amount of RAM to use, even for such a large outline and it doesn't release it when done.
    The box has 32Gb RAM.

    I think it was version 9.3.1.3 that outline compaction started working. The first thing I would try is to compact the outline. The MaxL statement for it is Alter database xxxx.yyyy compact outline;
    ASO Outlines tend to grow with every change, do you really have that many members and attributes that would make that big an outline. If it keeps growing at some point it will corrupt

  • Paint performance with JScrollPane very slow in jdk 1.4?

    I got a simple program that overrides paintComponent on a JPanel. Then draws lots of lines, rectangles and some strings. The panel is then added to a scrollpane.
    The scrolling is very smooth in java 1.3.1, but very slow in 1.4.2
    the paintComponent takes between 16ms and 30ms with java 1.3.1 but 70-200ms with java 1.4.2.
    I tried turning of antialising etc.. but no help. Whats the "improvement" they made in jdk 1.4?

    Ok I made a simple example, which draws around 5000 elements.
    Sourcecode is here: http://www.mcmadsen.dk/files/ScrollPaneTest.java
    I did several testruns on java 1.4.2 and java 1.3.1, heres the "avarage" result:
    Java 1.4.2:
         Current: 140ms High: 203ms Avg: 144ms Low: 125ms
    Java 1.3.1:
         Current: 62ms High: 219ms Avg: 68ms Low: 47ms
    The paintComponent() looks like this:
    public void paintComponent(Graphics g)
    super.paintComponent(g);
    long offset=System.currentTimeMillis();
    PaintElement paintElementTmp;
    for(int i=0;i<paintElements.size();i++)
    paintElementTmp=(PaintElement)paintElements.elementAt(i);
    g.setColor(paintElementTmp.getBackground());
    g.fillRect(paintElementTmp.getX(),paintElementTmp.getY(),paintElementTmp.getWidth(),paintElementTmp.getHeight());
    g.setColor(paintElementTmp.getForeground());
    g.drawString(paintElementTmp.getText(),paintElementTmp.getX(),paintElementTmp.getY());
    long done=System.currentTimeMillis();
    long current=done-offset;
    sum+=current;
    if(current>high)high=current;
    if(low>current)low=current;
    count++;
    System.out.println("Current: "+current+"ms High: "+high+"ms Avg: "+(sum/count)+"ms Low: "+low+"ms");
    I tried all the renderinghints, but no difference (from the default settings). Also the scrolling is very slow and stops all the time in java 1.4.
    Any ideas on how to get java 1.4 to perform as java 1.3.1?
    Thanks

  • Report with Subreport very slow from SharePoint

    HI,
     I have a report with a sub-report that runs in about 9 seconds from my PC using the Report Designer with SQL Server 2008R2.
    When I run the deployed report from SharePoint it takes 4 minutes. If I remove the sub-report it again runs fine from SharePoint.
    The sub-report is pretty simple and links to the main report using 3 parameters.
    What would cause this?
    Any ideas would be appreciated.
    Thanks,
    Trish
    Trish Leppa

    Hello Trish,
    I have found similar thread with some good suggestion for optimizing the report in sharepoint.
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/c140d26e-1c02-4f8d-bc61-f6ac75706556/reporting-services-very-slow-in-sharepoint?forum=sqlreportingservices
    Hope it could help
    Hemendra:Yesterday is just a memory,Tomorrow we may never see
    Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • MDX query performance on ASO cube with dynamic members

    We have an ASO cube and we are using MDX queries to extract data from that cube. We are doing some performance testing on the MDX data extract.
    Recently we made around 15-20 account dimension members dynamic in the ASO cube, and it is taking around 1 and a half hour for the query to run on an empty cube. Earlier the query was running in 1 minute on the empty cube when there were no dynamic members in the cube.
    Am not clear why it takes so much time to extract data from MDX on an empty cube when there is nothing to extract. The performance has also degraded while extracting data on the cube with data in it.
    Does dynamic members in the outline affect the MDX performance? Is there a way to exclude dynamic members from the MDX extract?
    I appreciate any insights on this issue.

    I guess it depends on what the formulas of those members in the dynamic hierarchy are doing.
    As an extreme example, I can write a member formula to count every unique member combination in the cube and assign it to multiple members, regardless if I have any data in the database or not, that function is going to resolve itself when you query it and it is going to take a lot of time. You are probably somewhere in between there and a simple function that doesn't require any over head. So without seeing the MDX it is hard to say what about it might be causing an issue.
    As far as excluding members there are various function in MDX to narrow down the set you are querying
    Filter(), Contains(), Except(), Is(), Subset(), UDA(), etc.
    Keep in mind you did not make members dynamic, you made a hierarchy dynamic, that is not the same thing and it does impact the way Essbase internally optimizes the database based on Stored vs dynamic hierarchies. So that alone can have an impact as well.

  • ASO Cube with BSO Partition as a Target

    Hi,
    Can someone please explain me the following because after reading different blogs as well as some other Essbase documents I am not able to understand,
    What is the actual use of having a BSO Transparent partition (target) of an ASO cube (source)?
    How exactly does the Write-Back functionality works if I have a BSO Transparent partition (target) of an ASO cube (source)?
    And lastly, in what business scenario one would implement a BSO Transparent partition (target) of an ASO cube (source)?
    Your help is much appreciated.
    thanks,
    fikes

    I have a situation where I have a BSO (target) on top of an ASO (source).  This was to try and resolve the dynamic time series (where time and periods are in different dimensions).  The DTS works almost great in the BSO partition.
    The other problem (or why we wanted to go to ASO) was that BSO cubes do not handle attributes across partitions (we have quarterly data in transparent partitions) to the target cube. -- but we do have dynamic time series.
    What I'm facing now it that the attributes work in the BSO (target) except when using a dynamic time series.
    The attributes are defined in both the BSO and ASO cubes.
    Any suggestions on how to handle attributes AND dynamic time series ?

  • Can anyone help with a very slow iMac?

    I'm getting increasingly frustrated by this computer, it takes an age to start up and then the processor makes it's noise for quite some time before allowing me to do anything.  Often the beachball is whirling around too.  I'm pretty useless when it comes to computers.  I ran the etrecheck software and have this info from it.  Can anyone offer any suggestions please?
    Problem description:
    very slow start up and slow to respond.  Processor seems to be working a lot
    EtreCheck version: 2.0.11 (98)
    Report generated 24 November 2014 19:11:43 GMT
    Hardware Information: ℹ️
      iMac (20-inch, Early 2008) (Verified)
      iMac - model: iMac8,1
      1 2.66 GHz Intel Core 2 Duo CPU: 2-core
      2 GB RAM Upgradeable
      BANK 0/DIMM0
      1 GB DDR2 SDRAM 800 MHz ok
      BANK 1/DIMM1
      1 GB DDR2 SDRAM 800 MHz ok
      Bluetooth: Old - Handoff/Airdrop2 not supported
      Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
      ATI Radeon HD 2600 Pro - VRAM: 256 MB
      iMac 1680 x 1050
    System Software: ℹ️
      OS X 10.10 (14A389) - Uptime: 16 days 11:58:6
    Disk Information: ℹ️
      WDC WD3200AAJS-40VWA1 disk0 : (320.07 GB)
      S.M.A.R.T. Status: Verified
      EFI (disk0s1) <not mounted> : 210 MB
      Macintosh HD (disk0s2) /  [Startup]: 319.21 GB (29.23 GB free)
      Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
    USB Information: ℹ️
      Apple, Inc. Keyboard Hub
      Apple, Inc Apple Keyboard
      HP Photosmart C5200 series
      Apple Inc. Built-in iSight
      Samsung M3 Portable Samsung M3 Portable 500.11 GB
      S.M.A.R.T. Status: Verified
      Timmy Teabags (disk1s1) <not mounted> : 500.11 GB
      Apple Inc. BRCM2046 Hub
      Apple Inc. Bluetooth USB Host Controller
      Apple Computer, Inc. IR Receiver
    Gatekeeper: ℹ️
      Mac App Store and identified developers
    Kernel Extensions: ℹ️
      /System/Library/Extensions
      [loaded] com.Cycling74.driver.Soundflower (1.5.1) Support
      [not loaded] com.maudio.usb.keystudio49i.driver (1.8.1) Support
    Startup Items: ℹ️
      M-Audio Firmware Loader: Path: /Library/StartupItems/M-Audio Firmware Loader
      Startup items are obsolete and will not work in future versions of OS X
    Problem System Launch Agents: ℹ️
      [failed] com.apple.AirPlayUIAgent.plist
      [failed] com.apple.bird.plist
      [failed] com.apple.CallHistoryPluginHelper.plist
      [failed] com.apple.CallHistorySyncHelper.plist
      [failed] com.apple.cmfsyncagent.plist
      [failed] com.apple.EscrowSecurityAlert.plist
      [failed] com.apple.pluginkit.pkd.plist
      [failed] com.apple.printtool.agent.plist
      [failed] com.apple.sbd.plist
      [failed] com.apple.scopedbookmarkagent.xpc.plist
      [failed] com.apple.security.cloudkeychainproxy.plist
      [failed] com.apple.spindump_agent.plist
      [failed] com.apple.telephonyutilities.callservicesd.plist
    Problem System Launch Daemons: ℹ️
      [failed] com.apple.AssetCacheLocatorService.plist
      [failed] com.apple.awdd.plist
      [failed] com.apple.coresymbolicationd.plist
      [failed] com.apple.ctkd.plist
      [failed] com.apple.diagnosticd.plist
      [failed] com.apple.icloud.findmydeviced.plist
      [failed] com.apple.ifdreader.plist
      [failed] com.apple.nehelper.plist
      [failed] com.apple.periodic-daily.plist
      [failed] com.apple.periodic-monthly.plist
      [failed] com.apple.periodic-weekly.plist
      [failed] com.apple.sandboxd.plist
      [failed] com.apple.softwareupdate_download_service.plist
      [failed] com.apple.spindump.plist
      [failed] com.apple.tccd.system.plist
      [failed] com.apple.wdhelper.plist
      [failed] org.cups.cupsd.plist
    Launch Agents: ℹ️
      [running] com.m-audio.keystudio49i.helper.plist Support
      [invalid?] com.maintain.CocktailSystemEvents.plist Support
      [invalid?] com.maintain.PurgeInactiveMemory.plist Support
      [invalid?] com.maintain.Restart.plist Support
      [invalid?] com.maintain.ShutDown.plist Support
      [running] com.maintain.SystemEvents.plist Support
      [loaded] com.oracle.java.Java-Updater.plist Support
    Launch Daemons: ℹ️
      [loaded] com.adobe.fpsaud.plist Support
      [invalid?] com.maintain.HideSpotlightMenuBarIcon.plist Support
      [loaded] com.oracle.java.Helper-Tool.plist Support
      [loaded] com.oracle.java.JavaUpdateHelper.plist Support
      [loaded] com.rogueamoeba.hermes.plist Support
    User Launch Agents: ℹ️
      [loaded] com.adobe.ARM.[...].plist Support
      [loaded] com.google.keystone.agent.plist Support
      [running] com.spotify.webhelper.plist Support
    User Login Items: ℹ️
      iTunesHelper UNKNOWNHidden (missing value)
      Spotify Application (/Applications/Spotify.app)
      Google Drive Application (/Applications/Google Drive.app)
    Internet Plug-ins: ℹ️
      JavaAppletPlugin: Version: Java 7 Update 71 Check version
      FlashPlayer-10.6: Version: 15.0.0.223 - SDK 10.6 Support
      Default Browser: Version: 600 - SDK 10.10
      AdobePDFViewerNPAPI: Version: 10.1.12 Support
      AdobePDFViewer: Version: 10.1.12 Support
      Flash Player: Version: 15.0.0.223 - SDK 10.6 Support
      QuickTime Plugin: Version: 7.7.3
      Musicnotes: Version: 1.17.3 Support
      iPhotoPhotocast: Version: 7.0
    3rd Party Preference Panes: ℹ️
      Flash Player  Support
      Java  Support
      M-Audio KeyStudio49i  Support
    Time Machine: ℹ️
      Skip System Files: NO
      Auto backup: YES
      Volumes being backed up:
      Macintosh HD: Disk size: 319.21 GB Disk used: 289.98 GB
      Destinations:
      Studio External [Local]
      Total size: 0 B
      Total number of backups: 0
      Oldest backup: -
      Last backup: -
      Size of backup disk: Too small
      Backup size 0 B < (Disk used 289.98 GB X 3)
    Top Processes by CPU: ℹ️
          3% WindowServer
          0% AppleSpell
          0% fontd
          0% notifyd
          0% Google Drive
    Top Processes by Memory: ℹ️
      88 MB Mail
      43 MB Spotify
      30 MB mds
      28 MB mds_stores
      28 MB iTunes
    Virtual Memory Information: ℹ️
      271 MB Free RAM
      456 MB Active RAM
      500 MB Inactive RAM
      400 MB Wired RAM
      34.73 GB Page-ins
      1.65 GB Page-outs

    You only have 2GB of RAM, which is not enough to run OS X 10.10 smoothly (it's the bare minimum requirement to run it at all). Consider buying more at http://eshop.macsales.com (there are other vendors as well). Find the correct RAM for your model by searching for your iMac's model identifier - iMac8,1. Also look at their installation videos.
    You have several failed Apple launch agents, you may need to re-install OS X to fix that. Boot the computer while holding down the Command ⌘ and R keys at the same time. This will boot to the Recovery partition. Choose the reinstall OS X option.

  • What do i do with a very slow Photoshop Elements and Premiere Elements on a PC?

    I seem to be getting mixed opinions as to why my Adobe software gets so slow, despite efforts to avoid that, but my computer seems to be working just fine, it is only when in Adobe that the problems arise, like freezing, taking longer and longer periods of time to open the screen to edit a photo, or to compare two photos side by side.  Any process seems to take such a long time, and the freezing can last for several minutes, and then continue on.    I have had a computer person come to my house and examine my computer and though his knowledge of Photoshop is limited, he feels that it is NOT the computer but something with Adobe Photoshop.  I would tend to agree with him.   
    Several theories have been explained to me, such as Elements and Premiere Elements are a low end of the scale of Photoshop programs, so it is just not going to be able to process high definition large photos well and quickly.  Stating comments like i can only use 2 GB of my memory even though i have 8 GB, so unless i can use 64 bit this is what i have to deal with, and it is just a way for Photoshop to say you need to upgrade to the fancier programs.  I do not need fancier programs.  I am working hard to master these, and have accomplished 4 great blu rays in high definition thanks to recommendations from the Forum here, especially Steve with the help of his books. 
    Others say i need a solid state hard drive to solve the problem.  Others say the only way i will ever solve the problem is to switch to a MAC.  Others state is a mal-ware problem, but i have never had my hard drive so clean and uncluttered.  I supposedly have as good of PC as i could have as far as QUAD-core, 8GB memory, presently a 1 TB hard drive less than 1/2 full.   All suggestions involve big outlays of money, with no guarantee that things will be any better.  I have tried to contact different computer companies and computer 'nerds', and these are some of the suggestions, but no one really has a lot of knowledge of the Photoshop software. 
    I am thinking of adding an additional internal hard drive, but not sure that is going to help either.  Could i put all my Photoshop of the second hard drive, and might that speed things up? 
    Adobe is rather worthless in trying to get help from them.  I have spent hours on the phone waiting and then talking to someone who says they understand English but they do NOT understand the question i am asking, which becomes very frustrating with repeat phone calls.  I gave up yesterday trying to do that challenging experience yesterday after i had spent 3 times the amount of time they said i would need to wait to get a reply, and i was at work, and my free time had come to an end.  So i am hoping you guys can give me some clues of the best thing to do.
    Is it true that Photoshop Elements and Premiere Elements are just such a lower end program that trying to do things in high definition, with 2000x1500 photos, making them into a blu ray disc is a major challenge with a PC?  I wish i had a greater computer knowledge, but i have struggled to achieve my goal, but the speed of it all gets very frustrating, though it is possible. 
    Another question asked which i don't think exists, is whether there is a program that could clean up Photoshop, or are there some clues that could accomplish that and thereby speed things up.
    Would appreciate any suggestions anyone has.  I am in the middle of another project so now is probably not the best time to consider any major changes.  But any comments would be appreciated.
    Ron

      Premiere Elements 10 is now 64 bit, but not PSE10.
    Take a look at your scratch disk set-up and if you have a spare volume, allocate that first before the C drive. Elements use scratch disks when it gets low on RAM.
    Click image to enlarge
    Turn off face recognition and the auto-analyzer to improve performance.
    When editing photos or videos check the task manager to see what background processes may be running and end them temporarily if not needed.

  • Mac Pro with Aperture - very slow

    Why, why couldn't it be faster?
    I've been reading about the Mac Pros since they were announced last week. The local Apple store finally got one and I went to go see it. And there it was -- 42 lb glory, standard configuration, driving a 30" screen.
    I launched Aperture... and it's slow. I mean really slow, spinning pizza wheel slow. Granted I'm trying to bring up full size raw images that are ~16-18 meg each. But come on -- this is a workstation class machine! The "fastest Mac ever"!!!
    Showed it to the guy working there. He said they installed the box today with a brand new disk image and sometimes the image is bad. "Ben" promised he'll call their engineers to see what's up.
    So what's going on here? Some ideas:
    * Aperture is very Core Image intensive, and the standard GeForce 7300 card isn't that fast. I plan to upgrade to Radeon X1900XT - people say that will likely make Aperture faster.
    * The photo files were huge, 16 to 18 mb each. Raw images my camera takes are 6 meg. At least until I upgrade my camera.
    * The box had 1gb of memory - standard configuration. Would more help?
    * Maybe there really is something wrong with the box or the disk image.
    Disappointing...
    Mac Mini   Mac OS X (10.4.7)  

    I dont really post very often here but i think it is yet time to give again out a few pointers about Mac performance ...
    1) Whatever the configuration ... Ram is essential and shall never be ignored .
    2) Whatever the hardware platform your machine is running on check your software version and keep up to date , that goes 20 times for anything Universal Binary.
    3) When treating high volume files Hard drive space is ESSENTIAL and not only necessary and frankly setting up a raid from a Mac is still seamless and fast.
    If you all made it through to this point then your mac is becoming a powerhouse never slows down and really smiles and keeps on coming ... i have been running G5 machines for a long time on mac os X servers since the G5s came out and before that were yet G4s . First thing you need when dealing with large files is RAM second drives and third software versions.
    I would not dream running anything with 512 mb of ram at all that is a constant on all macs , you have a memory expansion capability to 16GB mmm that shall really help .
    Further you have 4 bays for drives ... may i dare think they are here for some reason such as treating high volumes files ?
    Third and foremost when using nvidia cards dont expect superb performance on a 30" screen when using the FX4500 card since nvidia cards have a really bad record on that matter with the G5 .. would you deal with massive 3D open GL etc etc etc ... ATI is it plain simple and really outperforming it has always been the case for macs .
    Yes, ATI X1900XT are rare now because of delays but the cards are no slugs on a mac and they mean business when running on 30" screens . A pci-x X800xt radeon card running on a previous dual processor machine kept kicking the Quadro running off a PCI-e on a quad machine ... we then tested with a X1900xt prototype and again the world changed .. all the things the nvidia card could not deal with the X1900xt just smiled at and kept on chomping non stop .
    I did not still get aperture since i have yet little need for it but my educated guess would be that with a little ram a nice set of raid array (you dont need 15k rpm drives unless you treat live HD solely on a internal array) and or an Xraid setup the machine would just scream in performance. If you use the machine for production processing power of the chip is just a tiny part of the whole performance equation thinking about streamlining your pipelines and data flow takes your setup to whole new grounds.
    A quad running 4D server Maya some data backups mysql and about 103 processes is occupied about 10 percent load averages .....
    secondly regarding disk images and apple installs errr please take the time to install everything from scratch i am guessing aperture you just have seen running might be using rosetta and is just a transfer from a G5 that would explain performance issues . 18 Mb a picture is not huge ... we use about 100Mg images on PS maya strata etc etc etc and frankly image size with a bit of ram never has been an issue.
    G5 Quad 2.5 7TB xraid 16GB of ram.   Mac OS X (10.4.7)   Mac os X server 10.4.7

  • IPad mini with retina very slow and battery drains fast

    my ipad mini 2 is only ten months old. After getting the iOS 8 currently on ios8.0.2, wifi internet speed is only 25% of the normal speed (compared to what my imac tested), battery drains 1% every 3 minutes or so. All of these after I restored it to factory setting per Apple support suggestion. is there any fix for this soon? why is the issue only affecting some but not all users? Is there anything I can do for my ipad? I have only been using it lighty (have installed like less than ten app's) but this is still very frustrating.

    How to Fix a Slow iPad
    http://ipad.about.com/od/iPad_Troubleshooting/ss/How-To-Fix-A-Slow-iPad.htm
    iPad running slow? How to speed up a slow iPad
    http://appletoolbox.com/2012/07/ipad-running-slow-how-to-speed-up-a-slow-ipad/
    If You Think iOS 7 Feels Slow Here’s How to Speed It Up
    http://osxdaily.com/2013/09/23/ios-7-slow-speed-it-up/
    You may have many apps open which can possibly cause the slowdown and possibly the loss of wifi. In iOS 4-6 double tap your Home button & at the bottom of the screen you will see the icons of all open apps. Close those you are not using by pressing on an icon until all icons wiggle - then tap the minus sign. For iOS 7 users, there’s an easy way to see which apps are open in order to close them. By double-tapping the home button on your iPhone or iPad, the new multitasking feature in iOS 7 shows full page previews of all your open apps. Simply scroll horizontally to see all your apps, and close the apps with a simple flick towards the top of the screen.
     Cheers, Tom

  • New Wireless MAC keyboard & mighty mouse very slow in retrieving information & sending

    Good evening,
    I just purchased these items last night from the Apple store, they are both installed on my bluetooth. I do have OS Lion.
    Whenever I want to go to another site for example this site it spins and spins and takes approx 1 min which feels like 5mins.
    My other wireless key board and mouse was logictech for Mac I never had a problem like this.
    The only reason why I switched was because of the functionality the keyboard and mouse did not have.
    Can some please help me or educate me on what I am not doing correctly.
    Thanks so much,
    Phyllis

    I don't think you are doing anything wrong.  I also don't think you communication to your computer (in this case with bluetooth) has anything to do with your computer's internet connection. 
    If you are having a slow internet connection then when it happens plug your old mouse and keyboard back in.  Your internet connection should still be just as slow.
    Maybe you should use different DNS servers as opposed to what your ISP provides.  I can suggest OpenDNS (208.67.222.222, 208.67.220.220) or Google's DNS servers (8.8.8.8, 8.8.4.4).
    One last thing.  Since you changed a peripheral, particularly when dealing with bluetooth, I suggest you also do a smc and pram reset.  In fact try this before you try changing your DNS servers.

  • Help with a very slow sql statement

    Hi this statement takes 10 seconds to run and is run a lot, can anyone help me speed it up.
    Each section in itself is quick but when i add the IN section it slows down, probably because there is 20291 rows in the view v_allitems.
    anyone know how i can speed up?
    select ITEMTYPE,
    ITEMID,
    NOTESID,
    NOTES,
    DUEDATE,
    OPENDATE,
    SUBJECT,
    TYPE,
    STATUS,
    OWNER,
    CREATEBY,
    CREATEDATE,
    ITEMCODE
    FROM v_allitems
    where
    ITEMCODE in ( 'ACT,'||4264) OR ITEMCODE IN
    (SELECT pcchildcode
    ||','
    || pcchild item
    FROM afpc
    CONNECT BY pcparent = prior pcchild
    AND pcparentcode = prior pcchildcode START
    WITH pcparent = 232
    AND pcparentcode = 'CAS'
    UNION ALL
    SELECT pcparentcode
    ||','
    || pcparent item
    FROM afpc
    CONNECT BY pcchild = prior pcparent
    AND pcchildcode = prior pcparentcode START
    WITH pcchild =4264
    AND pcchildcode = 'ACT'
    )

    Something to just try i guess (wild guessing here).
    WITH
       itemcodes AS
       SELECT
          DISTINCT ItemCode
       FROM
          SELECT 'ACT,' || 4264 AS ItemCode
          FROM DUAL
             UNION ALL    
             SELECT pcchildcode || ',' || pcchild item AS ItemCode
             FROM afpc
             CONNECT BY  pcparent       = prior pcchild
             AND         pcparentcode   = prior pcchildcode
             START WITH  pcparent       = 232
             AND         pcparentcode   = 'CAS'
                UNION ALL
             SELECT pcparentcode || ',' || pcparent item AS ItemCode
             FROM afpc
             CONNECT BY  pcchild     = prior pcparent
             AND         pcchildcode = prior pcparentcode
             START WITH  pcchild     = 4264
             AND         pcchildcode = 'ACT'
    SELECT
       v.ITEMTYPE,
       v.ITEMID,
       v.NOTESID,
       v.NOTES,
       v.DUEDATE,
       v.OPENDATE,
       v.SUBJECT,
       v.TYPE,
       v.STATUS,
       v.OWNER,
       v.CREATEBY,
       v.CREATEDATE,
       v.ITEMCODE
    FROM v_allitems v,  itemcodes i
    WHERE v.ItemCode  = i.ItemCode;Assuming (probably a good assumption) that's not good, how long does this query take to finish for you?
             SELECT pcchildcode || ',' || pcchild item AS ItemCode
             FROM afpc
             CONNECT BY  pcparent       = prior pcchild
             AND         pcparentcode   = prior pcchildcode
             START WITH  pcparent       = 232
             AND         pcparentcode   = 'CAS'
                UNION ALL
             SELECT pcparentcode || ',' || pcparent item AS ItemCode
             FROM afpc
             CONNECT BY  pcchild     = prior pcparent
             AND         pcchildcode = prior pcparentcode
             START WITH  pcchild     = 4264
             AND         pcchildcode = 'ACT'

  • HT1338 Can anybody help with a very slow computer?

    My MacBook Pro is running VERY slowly. I use primarily Word and have built up a huge number of files, like 500,000. Still  have plenty of memory, however.  Occasionally, I get the spinning color wheel when I'm on Word, the system freezes and I have to shut down.  How do I "defrag" or clean up the files?  Not sure which operating system, but it's a 2010 MacBook.

    Can you tell us how much RAM  (Memory) you have? It's listed by clicking on the  in your title  bar....go to About This Mac and it's in the 1st window.
    We would also like to know what size hard drive you have and how much free space is on it.
    If you click on your Hard drive icon (should be upper right hand corner of your screen), or the Finder in your Dock...when the window opens it says at the bottom how much Free Space you have on your drive.
    If you go to the , click on About This Mac, click on More Info... in that window. The next window says how big your hard drive is under Hardware....click on Serial-ATA.....look under Capacity:
    We need to know this cause if a hard drive is too full it slows things down and creates operational difficulties.
    DALE

Maybe you are looking for

  • 17" Studio LCD Display connect to G3

    I recently purchased a 17" Studio LCD Display which came with an ADC to DVI adapter. Then I picked up an adapter, but it was the wrong kind. It was DVI to VGA which still required the present VGA/G3 adapter ... the connection was going through three

  • URGENT: Paradox "Logical" Column Lost in HS translation to Oracle 8.1.7.3

    I have a Paradox table with several fields. One field is a Logical Column. Although I can see the paradox table through my HS set-up, I cannot see the Logical column. Additionally, I can not select from it either. Has anyone encountered this scenario

  • Blue spot on screen

    Hi!I have sony z2 and when the screen has black backround a blue spot is marked at the right side of the screen.I don't think it is dead pixel but something else.My phone is under warranty,is someone else experienced with the same problem?What should

  • Simple date selector based on three combo boxes

    Hi all, I am looking for a simple script to allow users to choose a valid date. However, it should only be based on combo boxes (I just need the basics really). Similar to: http://www.easyjet.co.uk/en/book/index.asp But without the visual calendar bi

  • [TV@Master] Not all availabe channels are detected

    A few weeks ago I bought the TV@nywhere master card. I downloaded the driver from this forum and MSIVPS. I already recorded some programs and movies and burned to DVD. In my experience this works best using WinAvi. When I use WinDVDvreator, sometimes