Super slow when making context index

90000 rows, average 30k/clob
charset zhs16gbk
CONNECT CTXSYS/CTXSYS;
begin
ctx_ddl.create_preference('APPLEXER', 'CHINESE_VGRAM_LEXER');
ctx_ddl.create_preference('APPSTORAGE', 'BASIC_STORAGE');
ctx_ddl.set_attribute('APPSTORAGE', 'I_TABLE_CLAUSE', 'tablespace APPINDEX storage (initial 128M)');
ctx_ddl.set_attribute('APPSTORAGE', 'K_TABLE_CLAUSE', 'tablespace APPINDEX storage (initial 16M)');
ctx_ddl.set_attribute('APPSTORAGE', 'R_TABLE_CLAUSE', 'tablespace APPINDEX storage (initial 16M)');
ctx_ddl.set_attribute('APPSTORAGE', 'N_TABLE_CLAUSE', 'tablespace APPINDEX storage (initial 16M)');
ctx_ddl.set_attribute('APPSTORAGE', 'I_INDEX_CLAUSE', 'tablespace APPINDEX storage (initial 16M)');
ctx_ddl.set_attribute('APPSTORAGE', 'P_TABLE_CLAUSE', 'tablespace APPINDEX storage (initial 16M)');
end;
CREATE INDEX CNINFO.IDX_ZHENGWEN ON CNINFO.TEXT_INFORMATION(WENBENZW) INDEXTYPE IS CTXSYS.CONTEXT
PARAMETERS ('STORAGE APPSTORAGE LEXER APPLEXER');
after almost 24hours, the index's status is
'progrs' still.
oracle ee 817
solaris 7
1G ram

You might want to look at/consider the following:
1) Use of parallel option for index creation (would require
partitioning on base table).
2) As per prior suggestion, look at memory, you may want to go
much higher if you can afford it (look at both default and max
parameters for memory)
3) Be careful of some defaults for indexing, we've found that
theme indexing was on by default. If data does not need to be
filtered you might want to specify NULL FILTER for preference,
specify not to Index Themes, set stemmer to NULL (if this meets
your needs) and/or review your stopword lists.

Similar Messages

  • My 3G service in my iphone 4s is super slow when im sending any pic it takes for ever even i changed to wifi or 3G still super slow

    my 3G service in my iphone 4s is super slow when im sending any pic it takes for ever even i changed to wifi or 3G still super slow

    you have done http://support.apple.com/kb/ts4429 this. so try going to repair place (paid) or try downgrading ios (not support on this website).

  • Slow performance for context index

    Hi, I'm just a newbie here in forum and I would like ask for your expertise about oracle context index. I have my sql and I'm using wild character for searching '%%' .
    I used the sql below with a context index (ctxsys.context) in order to avoid full table scan for wild character searching.
    SELECT BODY_ID
                        TITLE, trim(upper(title)) as title_sort,
                        SUM(JAN) as JAN,
                        SUM(FEB) as FEB,
                        SUM(MAR) as MAR,
                        SUM(APR) as APR,
                        SUM(MAY) as MAY,
                        SUM(JUN) as JUN,
                        SUM(JUL) as JUL,
                        SUM(AUG) as AUG,
                        SUM(SEP) as SEP,
                        SUM(OCT) as OCT,
                        SUM(NOV) as NOV,
                        SUM(DEC) AS DEC
                        FROM APP_REPCBO.CBO_TURNAWAY_REPORT
                        WHERE contains (BODY_ID,'%240103%') >0 and
    PERIOD BETWEEN '1201' AND '1212'
                        GROUP BY BODY_ID, trim(upper(title))
    But i was surprised that performance was very slow, and when I try this on explain plan time of performance almost consume 2 hours.
    plan FOR succeeded.
    PLAN_TABLE_OUTPUT
    Plan hash value: 814472363
    | Id | Operation | Name | Rows | Bytes |TempSpc| Cost (%CPU)| Time |
    | 0 | SELECT STATEMENT | | 1052K| 97M| | 805K (1)| 02:41:12 |
    | 1 | HASH GROUP BY | | 1052K| 97M| 137M| 805K (1)| 02:41:12 |
    |* 2 | TABLE ACCESS BY INDEX ROWID| CBO_TURNAWAY_REPORT | 1052K| 97M| | 782K (1)| 02:36:32 |
    |* 3 | DOMAIN INDEX | CBO_REPORT_BID_IDX | | | | 663K (0)| 02:12:41 |
    Predicate Information (identified by operation id):
    2 - filter("PERIOD">='1201' AND "PERIOD"<='1212')
    3 - access("CTXSYS"."CONTAINS"("BODY_ID",'%240103%')>0)
    16 rows selected
    oracle version: Oracle Database 11g Release 11.1.0.7.0 - 64bit Production
    Thanks,
    Zack

    Hi Rod,
    Thanks for the reply, yes I already made gather stats on that table, including rebuild index.
    but its so strange when I use another body_id the performance will vary.
    SQL> EXPLAIN PLAN FOR
    2 SELECT BODY_ID
    3 TITLE, trim(upper(title)) as title_sort,
    4 SUM(JAN) as JAN,
    5 SUM(FEB) as FEB,
    6 SUM(MAR) as MAR,
    7 SUM(APR) as APR,
    8 SUM(MAY) as MAY,
    9 SUM(JUN) as JUN,
    10 SUM(JUL) as JUL,
    11 SUM(AUG) as AUG,
    12 SUM(SEP) as SEP,
    13 SUM(OCT) as OCT,
    14 SUM(NOV) as NOV,
    15 SUM(DEC) as DEC
    16 FROM WEB_REPCBO.CBO_TURNAWAY_REPORT
    17 WHERE contains (BODY_ID,'%119915311%')> 0 and
    18 PERIOD BETWEEN '1201' AND '1212'
    19 GROUP BY BODY_ID, trim(upper(title));
    SELECT * FROM TABLE (dbms_xplan.display);
    Explained.
    SQL>
    Explained.
    SQL>
    PLAN_TABLE_OUTPUT
    Plan hash value: 814472363
    | Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
    | 0 | SELECT STATEMENT | | 990 | 96030 | 1477 (1)| 00:00:18 |
    | 1 | HASH GROUP BY | | 990 | 96030 | 1477 (1)| 00:00:18 |
    |* 2 | TABLE ACCESS BY INDEX ROWID| CBO_TURNAWAY_REPORT | 990 | 96030 | 1475 (0)| 00:00:18 |
    |* 3 | DOMAIN INDEX | CBO_REPORT_BID_IDX | | | 647 (0)| 00:00:08 |
    Predicate Information (identified by operation id):
    2 - filter("PERIOD">='1201' AND "PERIOD"<='1212')
    3 - access("CTXSYS"."CONTAINS"("BODY_ID",'%119915311%')>0)
    16 rows selected.

  • Rights issue when creating context index.

    Hi,
    We have two users, "app" and "appsys" . with most permissions granted through roles.
    "app" has just enough permissions for the application to run. No update/delete/etc on most tables, just select and (on a select few) insert rights.
    "appsys" is the "crew" user, with enough rights for basic day-to-day administration and most upgrade scripts that come with new code releases.
    Other than that, it's a pretty much default EE 11.2.0.1.0.
    Therefore, my first preference was to have 'appsys' create the desired text index for use by 'app':
    CREATE INDEX app.table_text_ix ON app.table (xml)
         INDEXTYPE IS CTXSYS.CONTEXT PARAMETERS('SYNC (EVERY "TRUNC(SYSDATE + 1) + 03/24") TRANSACTIONAL');
    Have also tried the bare:
    CREATE INDEX app.table_text_ix ON app.table (xml)
         INDEXTYPE IS CTXSYS.CONTEXT;
    Both give the same result:
    Error at Command Line:1 Column:19
    Error report:
    SQL Error: ORA-29855: error occurred in the execution of ODCIINDEXCREATE routine
    ORA-20000: Oracle Text error:
    DRG-50857: oracle error in drvxtab.create_index_tables
    ORA-01031: insufficient privileges
    ORA-06512: at "CTXSYS.DRUE", line 160
    ORA-06512: at "CTXSYS.TEXTINDEXMETHODS", line 366
    29855. 00000 - "error occurred in the execution of ODCIINDEXCREATE routine"
    *Cause:    Failed to successfully execute the ODCIIndexCreate routine.
    *Action:   Check to see if the routine has been coded correctly.
    When using user app (temporarily granting relevant privileges):
    ERROR at line 1:
    ORA-29855: error occurred in the execution of ODCIINDEXCREATE routine
    ORA-20000: Oracle Text error:
    DRG-50857: oracle error in drvddl.IndexCreate
    ORA-27486: insufficient privileges
    ORA-06512: at "CTXSYS.DRUE", line 160
    ORA-06512: at "CTXSYS.TEXTINDEXMETHODS", line 366
    I've tried granting just about anything but the kitchen sink to either user, both direct and indirect, but it still won't let me. Even SYS seems to be missing something.
    Or rather, I seem to be missing something. But what? I've read a few prior threads about this issue and tried most suggestions: still no go.
    Things I've GRANTed, as per documentation:
    - CTXAPP role
    - execute on ctxsys.ctx_ddl
    - RESOURCE
    - CONNECT
    Other privileges it already had OR that I've tried granting:
    EXECUTE ANY PROCEDURE
    CREATE SESSION
    UNLIMITED TABLESPACE
    CREATE TABLE
    CREATE ANY TABLE
    ALTER ANY TABLE
    DROP ANY TABLE
    CREATE CLUSTER
    CREATE ANY INDEX
    ALTER ANY INDEX
    DROP ANY INDEX
    CREATE SEQUENCE
    CREATE PROCEDURE
    CREATE ANY PROCEDURE
    CREATE ANY JOBB
    CREATE TRIGGER
    CREATE ANY TRIGGER
    CREATE TYPE
    CREATE OPERATOR
    CREATE INDEXTYPE
    Have also tried the grant select on sys.all_users to public; solution from a previous thread.
    So... I'm lost... what am I missing?

    I don't know if what you have posted is pseudo-code or what you actually ran. Table is not a valid name for a table. It is best to post a copy and paste of an actual run from SQL*Plus, including line numbers and errors. I suggest that you start with a very simple example, avoiding reserve names like table and xml, just creating a simple text index on a table with a varchar2 column, as the same user that owns the table, checking everything along the way. Once you get that working, then you can add the other things one at a time. I have provided a script for you to run and post the results of below, followed by a run of the script on my system to show what you should get.
    -- script for you to run from SQL*Plus and post a copy and paste of the results of:
    -- version:
    SELECT * FROM v$version
    -- check that ctxsys user exists:
    SELECT username
    FROM   all_users
    WHERE  username = 'CTXSYS'
    -- check that Oracle Text is installed properly:
    SELECT *
    FROM   dba_registry
    WHERE  comp_id = 'CONTEXT'
    -- create test user:
    CREATE USER test IDENTIFIED BY test
    -- grant privileges:
    GRANT CONNECT, RESOURCE, CTXAPP TO test
    -- connect:
    CONNECT test/test
    -- create table:
    CREATE TABLE test.test_tab
      (test_col  VARCHAR2 (9))
    -- insert test data:
    INSERT INTO test.test_tab (test_col)
    VALUES ('test data')
    -- check that test data was inserted:
    SELECT * FROM test.test_tab
    -- create index:
    CREATE INDEX test.test_idx
    ON test.test_tab (test_col)
    INDEXTYPE IS CTXSYS.CONTEXT
    -- check for errors:
    SELECT * FROM ctx_user_index_errors
    -- check that index and domain index tables were created:
    COLUMN object_name FORMAT A30
    SELECT object_name, object_type
    FROM   user_objects
    WHERE  object_name LIKE '%TEST%'
    -- check that tokens were created:
    SELECT token_text FROM test.dr$test_idx$i
    -- test query:
    SELECT * FROM test.test_tab
    WHERE  CONTAINS (test_col, 'test data') > 0
    /-- example of the results you should get:
    SCOTT@orcl_11gR2> -- version:
    SCOTT@orcl_11gR2> SELECT * FROM v$version
      2  /
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    PL/SQL Release 11.2.0.1.0 - Production
    CORE     11.2.0.1.0     Production
    TNS for 64-bit Windows: Version 11.2.0.1.0 - Production
    NLSRTL Version 11.2.0.1.0 - Production
    5 rows selected.
    SCOTT@orcl_11gR2> -- check that ctxsys user exists:
    SCOTT@orcl_11gR2> SELECT username
      2  FROM   all_users
      3  WHERE  username = 'CTXSYS'
      4  /
    USERNAME
    CTXSYS
    1 row selected.
    SCOTT@orcl_11gR2> -- check that Oracle Text is installed properly:
    SCOTT@orcl_11gR2> SELECT *
      2  FROM   dba_registry
      3  WHERE  comp_id = 'CONTEXT'
      4  /
    COMP_ID
    COMP_NAME
    VERSION                        STATUS
    MODIFIED                      NAMESPACE
    CONTROL                        SCHEMA
    PROCEDURE                                                     STARTUP
    PARENT_ID
    OTHER_SCHEMAS
    CONTEXT
    Oracle Text
    11.2.0.1.0                     VALID
    30-MAR-2010 11:06:15          SERVER
    SYS                            CTXSYS
    VALIDATE_CONTEXT
    1 row selected.
    SCOTT@orcl_11gR2> -- create test user:
    SCOTT@orcl_11gR2> CREATE USER test IDENTIFIED BY test
      2  /
    User created.
    SCOTT@orcl_11gR2> -- grant privileges:
    SCOTT@orcl_11gR2> GRANT CONNECT, RESOURCE, CTXAPP TO test
      2  /
    Grant succeeded.
    SCOTT@orcl_11gR2> -- connect:
    SCOTT@orcl_11gR2> CONNECT test/test
    Connected.
    TEST@orcl_11gR2> -- create table:
    TEST@orcl_11gR2> CREATE TABLE test.test_tab
      2    (test_col  VARCHAR2 (9))
      3  /
    Table created.
    TEST@orcl_11gR2> -- insert test data:
    TEST@orcl_11gR2> INSERT INTO test.test_tab (test_col)
      2  VALUES ('test data')
      3  /
    1 row created.
    TEST@orcl_11gR2> -- check that test data was inserted:
    TEST@orcl_11gR2> SELECT * FROM test.test_tab
      2  /
    TEST_COL
    test data
    1 row selected.
    TEST@orcl_11gR2> -- create index:
    TEST@orcl_11gR2> CREATE INDEX test.test_idx
      2  ON test.test_tab (test_col)
      3  INDEXTYPE IS CTXSYS.CONTEXT
      4  /
    Index created.
    TEST@orcl_11gR2> -- check for errors:
    TEST@orcl_11gR2> SELECT * FROM ctx_user_index_errors
      2  /
    no rows selected
    TEST@orcl_11gR2> -- check that index and domain index tables were created:
    TEST@orcl_11gR2> COLUMN object_name FORMAT A30
    TEST@orcl_11gR2> SELECT object_name, object_type
      2  FROM   user_objects
      3  WHERE  object_name LIKE '%TEST%'
      4  /
    OBJECT_NAME                    OBJECT_TYPE
    DR$TEST_IDX$I                  TABLE
    DR$TEST_IDX$K                  TABLE
    DR$TEST_IDX$N                  TABLE
    DR$TEST_IDX$R                  TABLE
    DR$TEST_IDX$X                  INDEX
    TEST_IDX                       INDEX
    TEST_TAB                       TABLE
    7 rows selected.
    TEST@orcl_11gR2> -- check that tokens were created:
    TEST@orcl_11gR2> SELECT token_text FROM test.dr$test_idx$i
      2  /
    TOKEN_TEXT
    DATA
    TEST
    2 rows selected.
    TEST@orcl_11gR2> -- test query:
    TEST@orcl_11gR2> SELECT * FROM test.test_tab
      2  WHERE  CONTAINS (test_col, 'test data') > 0
      3  /
    TEST_COL
    test data
    1 row selected.
    TEST@orcl_11gR2>

  • Flash Builder 4 super slow when Workspace and Project is on Network Drive

    Hi I was wondering if maybe it is not common practice to create a workspace and project in a Network Drive? When I do this Flash Builder runs extremely slow ( build workspace slow, saving slow, code hinting slow, undo slow, etc, etc, etc). Very painful!
    When I place the same project locally on my C drive everything runs fine. So should I not be running things off the network? I would really like to since all my files are on the network with backup system. Can anyone offer some advice? Or maybe I need to optimize something? Thanks
    - D

    Hi.
    Having your workspace and project on a network drive is not recommended as Flash Builder writes and reads a lot from the workspace and that will be slow.
    A version control system such as svn or git with a repository hosted on your network drive should be perfectly fine. (You only take the hit when you check in and check out)
    -Anirudh

  • Project chugging unbelievably slow when making changes

    Hey all.
    I'm working on a DVD demo reel, and I've got this 3D thing going on as the intro to the DVD.
    Take a look at my project: http://m-1studios.com/motion/DemoReel_Menu_Concept2.motn
    I have a group of groups that's basically a fan out as the camera moves backwards of what will be various video assets, currently occupied by still picture placeholders, and then I have a group that is text with some fake 3D effect going on.
    When I started the project, everything was running smoothly and fast. Now, even though the video preview plays at somewhat reasonable speeds, it takes FOREVER just to make a change.
    If I apply the simplest behavior to one of my layers, I get the spinning beach ball for at least 10 seconds! I'm on a quad 2.66 Ghz with 11GB of Ram! What the ****! Once Motion thinks about the change I make to my timeline, then I can scroll through the project with ease, without any chugging. Its only when I make a change or apply a behavior or filter or even just changing a numerical value in an input box that it stalls. This is REALLY slowing me down. This chugging happens even when I disable most of my CPU intense layers. It doesn't seem to be related to what's visible or hidden.
    Any thoughts?
    (PS Some of the projects aspects are in http://m-1studios.com/motion/ There is a video and audio asset already in my project that you won't be able to link to because they are too big to upload)

    I suspect the interactive slowdown you're experiencing may have something to do with having your preview thumbnails turned on.
    Motion must build and scale each of those images individually each time you pause since they reflect the frame you’re parked on. Each preview image must be imaged for that layer alone, then resized for the thumbnail. Text thumbnails can be particularly render intensive.
    To turn off thumbnails, go to the dropdown menu to the upper left of your layers palette:
    And for the timeline thumbnails, go to your preferences:
    post back,
    Patrick

  • Super slow when loading bw query variables on webi

    Hi there,
    On the bw query - OLAP universe - webi stack, sometimes it takes super long (up to around 1 hour) to load bw query variables (i.e., to wait for the variables dialog prompt), just after clicking the "execute query" button.
    What would webi do during this period?  How to reduce the waiting time?
    the env is BOE XI 3.1 SP2 + BW 7.0018
    Thanks,
    Chris

    Hi,
    at that point the members for the parameter are loaded. you can easily change that by activating the property "delegated search" for the list of values in the universe.
    Ingo

  • MacBook Pro says its connected to wifi but doesn't work(or goes super slow)when the wifi works for everyone else Help!

    I have recently gotten a MacBook Pro (through my highschool so it is monitored by them) and ever since I brought it home it's been having wifi connection problems. It says the wifi is working fine, it shows full bars, but when I try to connect to the Internet it acts like there is only one bar or no bars. Although every one and a while I can get a great connection but it lasts for about 10 minutes. This I do not get because the wifi works perfectly fine for everyone else in the house and for our phones too. So if anyone else could help me I would be soo happy. Thanks.

    I have had the same issue and searched the forums and found nothing that helped. I contacted apple support and this is what they told me to do:
    First we’ll do the SMC reset
    1.) Shut down the Mac and connect to power source.
    2.) Unplug external devices, flash drives, external monitors, external HD (Keep the Mac plugged into power source)
    3.) Hold down “Shift” + “Control” + “Option” (On the left side of the keyboard) + Power key for 30 seconds.
    *The Mac should remain powered off during the reset, the LED on the MagSafe Adapter may change colors.
    **The “Option” key is also known as the “Alt” key on some Macs.
    Awesome, now let’s reset the NVRAM
    1.) Locate these keys “Command”, “Option, “P” & “R”
    2.) Power on your Mac
    3.) Immediately press and hold all 4 keys “Command” “Option” “P” “R”
    4.) Listen for 2 boot chimes and then release.
    **The “Option” key is also known as the “Alt” key on some Macs.
    Posting this here in the hopes that it will help someone else still searching for an answer.

  • On my 4 yer old imac when I run aps/programs or on the net with my Itunes runnig everything runs super slow, turn off itunes all runs fast again, any ideas

    On my 4 year old imac, when I run aps/programs or on the web "with my Itunes runnig" everything runs super slow, when I turn off itunes all runs fast again.  Note I have upated all software.  Any ideas out their.  Thanks William

    2gb of RAM is not a lot for keeping too many apps and the OS running comfortably. Have you tried running with as few apps open as possible at any one time - preferably just the one you are currently using, to see if this improves performance?
    Also, you could launch Activity Monitor in the Utilities folder and it'll give you an idea of what is going on memory-wise.

  • Wireless on My New MBP super slow

    Hi everyone, I just bought a shiny new 15" Macbook Pro running Snow Leopard 10.6.2, love it except my wireless is super slow when using it on my home network. I know I'm not the first to complain of this and that there are plenty of other threads about it, but I've tried some of the solutions on those thread to no avail. So I'm starting my own, can someone please help, I'm dangerously close to doing something irrational to my MBP. Ok here's a breakdown of my problem:
    -I'm using a Belkin pre N1 router.
    -I pay for 10mbs but I'm getting .5mbs using Airport but if I plug in the ethernet I achieve around 9mbs
    -Airport shows a full signal
    -My old IMac runs like a stallion on my network using Airport, so does my roommates Vista machine both getting around 8.5mbs
    -I've made sure my IMac's and Macbook Pro settings are the same
    -I've tried using an open dns, didn't work
    -I've change my router from using a WEP to using a WPA, didn't work
    -I've tried changing the broadcast signal from 11N/G to just 11N to 11N/G/B to 11G/B to 11B back to 11N/G, when I broadcasted just N wireless speed jump all the way up to 8mbs hooraay!!! until I quit safari and opened it again wireless speed went back to .5mps
    -I've tried using every wireless channel 1-11 plus Auto, Again wireless speed jump all the way up to 8mbs hooraay!!! until I quit safari and opened it again wireless speed went back to .5mps
    -I've tried doing a special little dance in front of it, didn't work except to make me ready to drop it like its hot this Saturday!!!
    Nothing seems to work. I'm making a Apple genus appointment tomorrow but I have a sneaky feeling that it will be fine on their network and they'll tell me it's belkins problem. Which could be the case but why would my IMac and Vista computers work flawless and not my new MacBook. Please, please, please help. Theres plenty of praise for whomever can solve my problem and I can praise like no other. Thanks
    -Jerry-

    yup, same here. Brand new, Core i7 Macbook Pro, and my 13" White Core Duo (not even C2D) Macbook kicks its a** on Airport. What's up with that????
    I've tried all the previous "fixes" I could find -- wipe and re-install, delete and replace AirPort entry in Network panel, new Location in Network panel, and so on. This is pretty bad... I haven't tried different DNS yet, but I don't see why the DNS should make any difference when my Mac Pro and the old Macbook seem fine with the servers from my ISP.
    J.
    Message was edited by: wheetabix
    Message was edited by: wheetabix

  • Acrobat XI pro - Slow when using 'save as' or saving merged pdf

    System:
    Windows 7 pro 64-bit
    AMD FX 6300 processor
    HD 7770 1 GB video card
    1 TB disk space
    16 GB RAM
    MS Office 2013 Plus
    Adobe Acrobat XI Pro
    Issue:
    Saving pdf is very slow. Regardless if the location is a network location or desktop. Using the 'save as' option is also very slow. It's super slow when using the 'merge' option.
    Troubleshooting: 
    - uninstalled adobe, rebooted system, reinstalled adobe, installed updates - no changes
    - tried using optimize pdf option  when saving- no changes
    - ran adobe in compatiblity mode - no changes

    All available updates have been applied/installed.

  • Running SUPER SLOW

    I have a brand new curve 9380 and I will have no APPS open but it still runs SUPER slow when I shut it off the screen and ill try to turn it on it wont turn on no matter how many times or how hard I press it and then a solid 5 minutes later it will turn and and the screen will just go on off like crazy because its running so slow it takes me 10 minutes just to change my BBM picture. Please help.

    There may be no Apps open but there are apps that can run in the background. Please check the apps installed in your phone.
    Goodluck
    Ron
    Click "Accept as Solution" if your problem is solved. To give thanks, click thumbs up Blackberry Battery Saving Tips | Follow me on Twitter

  • When I turn on iCloud in iPhoto everything starts to run super slow.

    This has been happening for a while but since I have a MacBook Pro that I don't have this problem on,  as well as my iMac which i do have this problem on, I haven't worried about it but now i'm getting annoyed.  When I open iphoto, without photostream on, everything is fine.  As soon as I click on photostream or icloud everything in iphoto starts running super slow.  If I click on a photo it takes about 10 seconds for it to highlight, scrolling is about 10 seconds behind as well.  If i close iphoto with icloud on, it will not open back up.  I get a error report.  If I turn off icloud/photostream then everything is fine.  I can scroll through my pictures with no problem at all.  I have about 400 pictures on my mac.  Anybody else have this problem?  Anybody have a fix? 
    This has been happening for over 6 months, before Mavericks and before my current version of iphoto.
    Here are my specs:
    iphoto v 9.5.1
    iMac 21.5, mid 2011
    2.5 GHz Intel Core i5
    16GB 1333 MHz DDR3
    AMD Radeon HD 6750M 512 MB
    OS X 10.9.2 (13C64)
    I have 270 GB of free space. 
    Thanks in advance.

    What generation is your iPod? My sister's 2g/3g(I'm not sure which) was doing something similar, but it would put a different graphic on the screen every time. We took it in to the apple store and they didn't determine what it was. One thing they said to try was to restore it and gradually add content on to see if it's an app or something loaded on it. If that doesn't work then they said it's probably something in the software or firmware. They gave her the option of getting one exactly like the one she had or getting the new one like I have. She ended up getting the new one on sale at target.

  • My I photo is taking forever to load. When it does load everything runs super slow. Help!

    My I Photo is taking forever to load my pictures. When they finally load, everything I do  in I photo is super slow. Help!

    With the amount of information you've provided it's impossible to offer a solution.  We can't see your computer so we need to know the details of your problem and setup, i.e.:
    what version of iPhoto are you using?
    what system version are you running?
    what fixes have you tried?
    where is your library located?
    did you apply any updates or upgrades just prior to the problem occurring?
    are you running a "managed" or "referenced" library?
    what type of Mac?
    how much free space on your boot drive?

  • SAVING Text created when CONTEXT index is created on BLOB field.

    Hi,
    I am still reading the doc, but thought I'd ask to try and save time ...
    I am using CONTEXT index on a BLOB field, and would like to store the Text that is created into a CLOB field, for display purposes.
    Is this possible with ORACLE TEXT ?
    Thanks
    Jeff

    Hi,
    have a look at the package CTX_DOC. It is in the manual: [url http://download.oracle.com/docs/cd/B19306_01/text.102/b14218/cdocpkg.htm#sthref1639] Oracle text Reference. You can use IFILTER, which doesn't need the index, but also FILTER which uses the index. There are examples in the manual.
    If more questions, it is better to ask the question in the Text Forum: [url http://forums.oracle.com/forums/forum.jspa?forumID=71] Oracle Text Forum
    Herald ten Dam
    http://htendam.wordpress.com

Maybe you are looking for

  • How can I update a location in the Apple Maps app?

    The location across the road from my office building shows that a high school is there, but that is not the case.  The high school has not been located across the road in over 20 years.  I found this error when I was updating the location information

  • How do i disable copy and paste so a reader can not copy text from my pdf document?

    how do i disable copy and paste so a reader can not copy text from my pdf document? i have gone into my security preferences but can not find out how to change the settings so i can disable the copying option.

  • Add a WiFi modem to the Actiontec M1424WR

    We have an Actiontec M1424WR Rev e modem/router. We have the  Verizon Double Play bundle, Internet and Phone only, no TV, and with the iMac connected to the Actiontec via Ethernet cable, our speeds are excellent.  E.g., On a Saturday morhing, the iMa

  • Buy Ipod nano 6g,

    If soomeone has one, im living in spain my email is [email protected]

  • IDCS2 Screen Redraw issues

    We're having screen redraw issues when panning and zooming pages. Getting screen anomolies and jittery display performance. It only happens when using InDesign, no other apps exhibit similar issues. PC specs are: WinXP Prop SP2 Dell Optiplex GX620, 2