Another slow iphoto problem.  Stats inside.

OK folks, I have to join in now. iPhoto 09, 8.0.2 (update didn't do anything speed-wise), MBP 2.2 4GB RAM, plenty of HD space. My user is FileVaulted.
62,600 picts, 850 movies, 128GB DB.
Yes, it's excessively big. I've rebuilt, re thumbnailed, etc (I've selected all the checkboxes except the last one, when you start up iPhoto holding the option key)
The big library worked fine in '08.
Startup time: 3 minutes
Go from Event view to an event: 1:15 min
Go from event back to Event view: 1:20 min
It begins to speed up some after this, but she's still ugly.
As you can see, it's not usable.
I'm going to vacuum the DB next, but man, if something were to go wrong and I lost photos, It'd be hard for me to tell. I'll do a backup of course, but the problem with that is that FileVault backs up all at once, so I can't do another backup until I'm satisfied I didn't lose anything.)
One thing that's interesting- firing up iPhoto 09 only seems to use one processor when it starts- that might just be old code, but I thought it'd use both. (one proc is at 100%, the other is at 8%.)
I don't see anything spouted out in Console either...
-Anyone else find FileVault to be a culprit?
-iPhoto only uses one processor when booting?
-I'm always looking for pros/cons on vacuuming the DB.
Thanks guys-

Firevault has to encode files on the fly both as saving and reading. That definitely will slow down many operations like iPhoto and iDVD. Personally I won't use FV as there have been issues with having to have the same volume of free space as in the FV in order to recover and other functions. The best protection is run in a non administrative user account and use a very good password for access.
Here's a trick that was posted on MacOSXHints regarding speeding up iPhoto 09:
Speed up iPhoto '09 by vacuuming its databasesMon, Mar 2 2009 at 7:30AM PST • Submitted by wjv
My iPhoto '08 used to start in seconds despite the 30,000+ photos I kept in it. But after I installed iLife '09 and upgraded my iPhoto library, iPhoto '09 would hang for several minutes with the dreaded beach ball on startup. Even worse, though was that opening any event would trigger another hang of a minute or more, as would viewing a photo full-screen. (Once these initial hangs were over and done with, the app would work normally.)
Inside the iPhoto Library Package, there are four SQLite databases (face_blob.db, face.db, iPhotoAux.db and iPhotoMain.db). I found that by vacuuming all four of these databases, I restored iPhoto '09's performance back to something on par with its predecessor.
Open Terminal and cd into your iPhoto Library by typing: cd ~/Pictures/iPhoto Library
NOTE: or you can type cd and a space and then drag your library into the Terminal window.
Once there, execute the following command:
for dbase in *.db; do sqlite3 $dbase "vacuum;"; done
I've run it and it seems to work. My library wasn't large so didn't notice a big improvement but there was some. Others have reported big improvements.

Similar Messages

  • Mail and iPhoto Problems with sending photos.

    Mail and iPhoto Problems with sending photos.
    I have this problem that started a while ago and seems to be getting worse.
    Here are the different scenarios.
    -If I try to share a photo to email within iPhoto, it will insert the image file name in the mail message, but no image icon or opened image. In iPhoto Preferences under General I have chosen to use Email Photos using Mail.
    -If I choose to use iPhoto to send the photo, it will compose the message and the photo is viewable. If I send the message i can view the photo within the email I sent to myself. Nothing happens when I double click on the photo in the Mail message. Nothing happens when i control click on the photo in the mail message. Nothing happens when I try to drag the photo to the desktop from the mail message. When I try to save attachments from the email and choose a place to save it, the save button is grayed out and it cannot be saved. When I check the mail message it says there is an attachemnt but there is no file size listed.
    -If I use the stationary within Mail app I cannot drag a photo into the placeholder, I get a circle with a line through it symbol when I try. It happens if I try to drag a photo from the desktop or from the media browser within Mail app.
    -If I drag the photo to the desktop from iPhoto, I can double click it on the desktop and it will open in Preview.
    -If I then control click on the same photo on the desktop and scroll to share/email, the generic photo icon will be inserted in the mail message. If i double click the photo icon in the mail message  I get a message it can't be opened because it is empty.
    -If I drag that same image to the mail message body the same thing happens.
    -If I send that email to someone they cannot open the image file.
    What I can do:
    - I can drag that same image file on the desktop to my dropbox folder and  it will upload. From there I can go on my iPad and download the photo and send it through email just fine.
    -I can open the same image file on my desktop in Preview, I can copy and paste it into a mail message and the image will be viewable in the mail message by me and by the recipient.
    -I can drag that same image on the desktop to my safari browser window and it will be viewable in the page. i can then copy and paste that image into a mail message and it is viewable in the message.  I can then send that email message to myself and i can control click on the image and get all my options. It also shows as an attachment with the size of the image file in the mail message.
    I can send that message to someone and they can see the photo and open it fine.
    -If I send that same email to me I can see the photo within the mail.  If I then drag that photo to the desktop I cannot use it again to put in an email as the same problem happens again.
    I have tried all scenarios in my user account, another users account and in a guest account. The same happens in all. I am guessing because of this it is not a corrupt preference file, unless all of the preference files are corrupt. The guest user account I added a new email account so it was brand new and still had the problem.
    I am stumped, all and any help is appreciated.

    Another problem that may be related….
    I have Snapz Pro. I used to be able to save the snaps to my desktop or a folder. Now when I take a screenshot and try to save the file to my desktop or a folder on my desktop I get this message  "Files cannot be created in the selected location. You do not have permission to write to the selected location.   Please choose a different location."  I have found that i can only save the file to the clipboard.   I have repaired permissions many times and still I have this problem.

  • Return statement inside AddEventListener?

    I am writing a custom function that will add a component to
    the stage. However, I want to postpone adding this component until
    some data has been loaded. Problem is that placing the return
    statement inside the Event handler function won't work, because it
    would be interpreted as a return statement for the Event handler
    function. Is there a way to for instance refer to the parent
    function?

    "Jurgen Beli?n" <[email protected]> wrote in
    message
    news:gq7jbs$7i4$[email protected]..
    >I am writing a custom function that will add a component
    to the stage.
    >However,
    > I want to postpone adding this component until some data
    has been loaded.
    > Problem is that placing the return statement inside the
    Event handler
    > function
    > won't work, because it would be interpreted as a return
    statement for the
    > Event
    > handler function. Is there a way to for instance refer
    to the parent
    > function?
    >
    > private function addDrawer(...):Drawer {
    > var newDrawer:Drawer = new Drawer();
    >
    > drawerContentLoader.addEventListener(Event.COMPLETE,
    function
    > (event:Event):void {
    > newDrawer.DrawerContentXml =
    XML(drawerContentLoader.data);
    >
    > // return newDrawer when loaded.
    >
    > });
    > drawerContentLoader.load(drawerContentRequest);
    >
    > return newDrawer;
    > }
    Why not just put your logic inside the handler for the event
    where the data
    exists for you to actually be able to populate it?

  • Select statements inside a SQL Expression field

    Hello
    Why cannot we use the Select statements inside a SQL expression field in Crystal Reports ?
    Any alternatives for this...
    SELECT Top(1) "SomePrivateDatabase"."SPDname" FROM "SomePrivateDatabase"
    inner join "Subscriber" on
    "Subscriber"."SPDID" = "SomePrivateDatabase"."SPDID"
    inner join "UserDetails" on
    "UserDetails"."SPDID" = "SubscriberCore"."SPDID"
    Regards
    Srivatsa
    Edited by: Srivatsa Haridas on Dec 3, 2008 12:17 PM

    Hi Srivatsa,
    SQL Expressions is something the Database supports. We query the Client engine for a list of functions they make available. If the SQL Statement is not list it's not an option and therefore it won't work.
    Your work arounds are to use either a Stored Procedure, this is the most efficient way, all processing is done server side and CR simply waits for the data to format in the report. Another option is to use a
    Command Object, use one CO per report so try to get all data within the SQL statement. We simply pass the SQL to the server and wait for the result set, if you get an error it will be the SQL you typed in. Test in a SQL test tool first to confirm you are getting the data correctly.
    For more assistance in designing reports please post your report deisgn questions to the Reprot Design forums. I am moving this one to that queue.
    Thank you
    Don

  • Weird Slow Connectivity Problem

    Hi guys
    We are facing a slow connection problem and we cant seem to find an answer
    as to whats happening.
    Our application has
    1. An app server hosting EJBs , datasources etc
    2. A webserver on different box hosting servlets and command classes.
    3.A Sql server 7 database on a different box.
    All these boxes are on a secured network ; which means that access to them
    is given on a requirement basis.
    We have JSPs on the web box which get a datasource connection from the app
    box to run queries against the database server.Our problem is that even to
    run a very simple query ; it takes a long long time (in order of minutes)
    and the same query runs lightening fast in the test environment where all
    the boxes are on the same network.
    We use type 4 SQL driver.We initially thought that this could be a network
    problem as it doesnt make sense that the same query runs very fast on the
    test boxes.But the network settings seem ok.
    The network settings are this way :
    Appserver box has access to database server box.
    Webserver box has access to Appserver box.
    So you can see that webserver doesnt have direct access to database
    server.Is it needed to run queries ; since I am taking a connection from the
    appserver.How does the whole business of running queries work when I take a
    connection from a datasource on an app server.
    I had this question posted to the BEA weblogic customer support ; but they
    really couldnt help me.
    Any ideas would be appreciated.
    Thanks
    Pankaj Vij

    This has many possible troubleshooting paths. You don't mention if this is a workgroup or domain based Windows network. Checking the "Directory Access" settings as appropriate may yield the solution.
    If this is a domain/active directory network the issue may lay with the machine account on the domain server.
    Create a new user account on the Mac and see if the problem follows when you log in to that account and try to access the SMB share.
    If the problem goes away, then you should look at the original user's startup items to see what might be launching at startup or simply move all files to the new user and delete the old account (not the preferred method).
    If the problem persists with a second user on the same machine, then I'd take another Mac, boot it to target disk mode (laptop is good for this), using a firewire cable, boot the troublesome mac to the target mac and try to replicate the issue.
    If issue persists, this is a network permissions issue on the server, if it goes away it is a local software issue on the Mac and a clean install of the OS may be needed if you can't locate the meddlesome settings/software.

  • Fetching a value from a select statement inside select clause

    hello all,
    I have a problem executing a procedure it gives me a runtime error, what am doing is i have multiple select statement inside a select clause. am using the entire select statement for a ref cursor. when running the query seperately am able to get the records but it's not getting compiled.
    here is the piece of code which am working with
    create or replace procedure cosd_telecommute_procedure
    (p_from_date in date,
    p_to_date in date,
    p_rset in out sys_refcursor)
    as
    p_str varchar2(10000);
    begin
    p_str := 'select personnum, '||
    'fullname, '||
                   'personid, '||
         'hours, '||
         'applydtm, '||
    'paycodeid, '||
         'laborlev2nm, '||
         'laborlev3nm, '||
         'laborlev2dsc, '||
    'adjdate, '||
         'timeshtitemtypeid, '||
         '(select max(eff_dt) from cosd_telecommute_info_tbl '||
         'where emplid = cosd_vp_telecommute.personnum and '||
    'eff_dt between ''01-aug-2005'' and ''30-aug-2005'') thisyreffdt, '||
                   '(select elig_config7 from cosd_telecommute_info_tbl '||
                   'where emplid = cosd_vp_telecommute.personnum and '||
    'eff_dt = (select max(eff_dt) from cosd_telecommute_info_tbl '||
                   'where emplid = cosd_vp_telecommute.personnum and '||
    'eff_dt between ''01-aug-2005'' and ''30-aug-2005'')) thisyrmiles,'||
    '(select max(eff_dt) from cosd_telecommute_info_tbl '||
                   'where emplid = cosd_vp_telecommute.personnum and '||
    'eff_dt between trunc(p_from_date) and trunc(p_to_date)) fiscalyreffdt, '||
         '(select elig_config7 from cosd_telecommute_info_tbl '||
                   'where emplid = cosd_vp_telecommute.personnum and '||
    'eff_dt = (select max(eff_dt) from cosd_telecommute_info_tbl '||
                        'where emplid = cosd_vp_telecommute.personnum and '||
    'eff_dt between trunc(p_from_date) and trunc(p_to_date))) fiscalyrmiles '||
    'from cosd_vp_telecommute '||
    'where trunc(applydtm) '||
    'between p_from_date and p_to_date '||
                   'and personnum = ''029791''';
                   open p_rset for p_str;
    end cosd_telecommute_procedure;
    and here is the piece of error am getting
    ERROR at line 1:
    ORA-00904: invalid column name
    ORA-06512: at "TKCSOWNER.COSD_TELECOMMUTE_PROCEDURE", line 40
    ORA-06512: at line 5

    Did you run the query in SQL plus? Check whether all the column are valid in your database. Below is the query which i got from your procedure just run and check it out. It is really hard for us to tell you the problem without knowing the table structure
    select personnum, fullname, personid, hours, applydtm, paycodeid, laborlev2nm, laborlev3nm,
    laborlev2dsc, adjdate, timeshtitemtypeid,
    (select max(eff_dt) from cosd_telecommute_info_tbl
      where emplid = cosd_vp_telecommute.personnum
      and eff_dt between '01-aug-2005' and '30-aug-2005') thisyreffdt,
      (select elig_config7 from cosd_telecommute_info_tbl where emplid = cosd_vp_telecommute.personnum
      and eff_dt = (select max(eff_dt)
                    from cosd_telecommute_info_tbl
                    where emplid = cosd_vp_telecommute.personnum
                    and eff_dt between '01-aug-2005' and '30-aug-2005'
       ) thisyrmiles,
      (select max(eff_dt)
       from cosd_telecommute_info_tbl
       where emplid = cosd_vp_telecommute.personnum
       and eff_dt between trunc(p_from_date) and trunc(p_to_date)
       ) fiscalyreffdt,
       (select elig_config7 from cosd_telecommute_info_tbl where emplid = cosd_vp_telecommute.personnum
       and eff_dt = (select max(eff_dt)
                     from cosd_telecommute_info_tbl
                     where emplid = cosd_vp_telecommute.personnum
                     and eff_dt between trunc(p_from_date) and trunc(p_to_date)
       ) fiscalyrmiles
    from cosd_vp_telecommute
    where trunc(applydtm) between p_from_date and p_to_date
    and personnum = '029791'

  • How do we use if statement in labview?moreover can i use if statement inside for loop?

    how do we use if statement in labview?moreover can i use if statement inside for loop?

    The if statement in LabVIEW is the Case structure. You can find that on the Structures palette right next to the For Loop. If you're still on the same subject about terminating a for loop early, then what you do is enclose your functions inside the loop with a case statment and make one of the case's empty except for one or more constants that you might have to wire. Hopefully, the attached picture will explain what I mean. Also, as I mentioned in one of your other posts, I think this technique is not as good as using a while loop. The array in the attached example is the same size no matter what and you may have to handle stripping extra or invalid elements.
    Attachments:
    For_Loop_with_Case.jpg ‏21 KB

  • Yes another user with problem with Apple Mobile Device Support, I am getting the error message: Service 'Apple Mobile Device'(Apple Mobile Device) failed to start. Vertify that you have sufficient privileges to start system service....

    Yes another user with problem with Apple Mobile Device Support, I am getting the error message: Service 'Apple Mobile Device'(Apple Mobile Device) failed to start. Vertify that you have sufficient privileges to start system service....I hit retry and it came up again. I hit ignore and it prompted me to hit finish so Itunes can open.   I looked thru alot of these posts on here to try and resolve this problem myself but it's not working too well...I downloaded Itunes to my desktop so I can right click it with the program i downloaded called WinRAR. I extracted it and then went into the folder called Itunes64setup. I saw the file called AppleMobileDeviceSupport64 in there so I began to try and download it on it's own. Well that didn't work as I planned and got this error message:
    Apple Mobile Device Support wasn't installed on your computer. The installer encountered errors before Apple Mobile Device Support could be configured. Your system has not been modified. To retry these operations at a later time,please run the installer again.
    Well I tried to run it again and came up with the same message...I see that some people got great support to help them so I am hoping someone can help me as well. I know "b nor" is very qualfied and hopefully can help me! Please advise what I can do. Thank you

    Hi Iss9243,
    Welcome to the Support Communities!
    You've already tried some great troubleshooting steps, but the article below gives you quite a few more for this issue.  Hope it helps ....
    iTunes 11.1.4 for Windows: Unable to install or open
    http://support.apple.com/kb/TS5376
    Cheers,
    - Judy

  • How do I transfer all photos from my Imac, IPhoto version 7.1.5, to another Imac, IPhoto version 9.2, but keep the two sets of photos separate

    How do I transfer all photos from my Imac, IPhoto version 7.1.5, to another Imac, IPhoto version 9.2, but keep the two sets of photos separate

    You need to clarify what you are asking.
    An iphoto installation has two major parts: 1. The application or program - that's the software and 2. The Library - that's where your actual pictures are.
    So when you say:
    I want to keep using the old Iphoto program on the new Imac.  There is already an IPhoto program on the new Imac but I do not want to add or delete from that one.
    It sounds like you want to move the application and not the Library. Most folks want to move the Library, and it makes no sense to have two versions of the application on your mac.

  • Small changes to a web gallery slows iPhoto down to a crawl

    I am using iPhoto 7.1.1, the latest update at this time. I have a large number of web galleries published through iPhoto to .Mac. The latest is about 150 photos from Christmas. I originally published without changing the photo titles. I have been correcting that plus adding a few more photos. Any small change in a web gallery seems to be immediately published and that slows iPhoto down to a crawl. I have the fastest connection I can get from ATT's UVerse. Is there any way to turn off this immediate updating so I can make all of my changes then publish after that? I have been searching through the help files, Apple support, and the web and can't find anything. One poster on this site said his updates don't transfer until he hits the publish icon to the right of the gallery name. That's not how mine works. It automatically publishes at the slightest change. Others seem to say it is automatic for them as it is for me. It really is almost impossible to make lots of small changes to a large gallery (like adding descriptive titles) the way it is now.

    This "feature" also makes my nuts. I hate software that does these "automatic" processes, without a way for the user to alter them, or turn them off. I have been trying to change file names in one album that contains a number of images drawn from other albums that have been published to my web gallery. I do not wish the names to be changed in every album, nor in the web galleries published. But it all seems to be automatic. The name change first is applied automatically to the other albums that contain that image, and then automatically changed in every web gallery.
    I have posted these comments here: iPhoto menu -> Provide iPhoto Feedback.
    I suggest everyone that is concerned with these issues do the same. If we are lucky, Apple will soon update the software. These changes seem so easy to achieve one would think, and they would add a lot of control to the use of the program.
    Jim

  • Return statement inside a catch block???

    If you put a return statement inside of a catch block, what statements will be executed next? I.e., what happens to the flow of control?

    If you put a return statement inside of a catchblock, what statements will be executed next? I.e.,
    what
    happens to the flow of control?If you write a short testing sample, compile it and
    run it, what do you get as a result ?
    Eek! That actually involves effort! Are you kidding?Kidding ? Me ?
    I'd better waste my time writing programs for lazy OPs !
    ;)

  • IPhoto problem: pixillation and photo duplication

    iPhoto problem:  intermittently getting banded pixilation when viewing photos; iPhoto randomly duplicats entire libraries so that they fill up my memory. Suspect I will have to reinstall iPhoto. Using iPhoto '09 ver 8.1.2 under OS 10.6.8.

    intermittently getting banded pixilation when viewing photos;
    Possible hardware issue
    iPhoto randomly duplicats entire libraries so that they fill up my memory.
    Duplicates Photos within a Library, or creates duplicates Libraries?
    Memory as in Ram? Or Disk Space?
    How big is your HD? How much free space on it?

  • FETCHING VALUES IN MULTI RECORD BLOCK FROM ANOTHER TABLE USING SELECT STATEMENT.

    Hi,
    I have one multi record block in which i want to fetch values
    (more then one record) from another table using select statement
    IN KEY NEXT ITEM.I am getting following error.
    ORA-01422: exact fetch returns more than requested number of rows
    Thanks in advance.

    In your case I see no reason to use non-database block and to try to populate it from a trigger with a query, instead of using the default forms functionality where you can associate the block and the fields with table, create where clause using bind variables and simply use execute_query() build-in to populate the block. The power of the forms is to use their build-in functionality to interact with the database.
    Also, you can base your block on a query, not on a table and you dynamically change this query using set_block_property() build-in. You can use any dynamic queries (based on different data sources) and you simply need to control the column's data type, the number of the columns and their aliases. Something like creating inline views as a block data source.
    However, you can replace the explicit cursor with implicit one like
    go_block('non_db_block_name');
    first_record();
    FOR v_tab IN (SELECT *
    FROM tab
    WHERE col_name = :variable)
    LOOP
    :non_db_block_name.field1 := v_tab.col1;
    :non_db_block_name.field2 := v_tab.col2;
    next_record();
    END LOOP;

  • Decode Statement Inside the Case statement

    Can we use Decode Statement inside a CASE Statement as show below --
    It is giving an error -- Is the a better way to write with out any error
    create or replace
    function test (a varchar2) RETURN VARCHAR2
    is
    m varchar2(20);
    begin
    m :=
    CASE
    WHEN a IN (
    '1009' -- (soon obsolete)
    ,'1010'
    ,'1019'
    ,'1051'
    ,'XGP'
    ,'XSC')
    THEN (SELECT DECODE(v_lef_cd,'NAM','71','GLB','99','01') into m FROM DUAL)
    -- ) THEN '01' -- UNITED STATES OF AMERICA
    WHEN a IN (
    '1069' -- South Africa
    ,'SAO' -- South Africa
    ,'SA' -- South Africa
    ) THEN '26' -- South Africa
    ELSE NULL
    END;
    return m;
    end;

    Hi,
    You can only use DECODE in SQL statements.
    Your SELECT DECODE (...) INTO statement would work anywhere a PL/SQL statement is allowed; but PL/SQL statements are not allowed within CASE expressions.
    Remember, the expression that comes after THEN in a CASE expression must be a single value.
    I would write a function like this using IF ... ELSIF statements. It's a little more typing than CASE, but a lot easier to code, test and maintain.
    If you want to use CASE, here's one way:
    ...     m := CASE
              WHEN  a  IN ('1069', 'SAO', 'SA')
                   THEN  '26'     -- South Africa
              WHEN  a  NOT IN ('1009', '1019', '1051', 'XGP', 'XSC')
              OR    a  IS NULL
                   THEN  NULL
              WHEN  v_lef_cd = 'NAM'
                   THEN  '71'
              WHEN  v_lef_cd = 'GLB'
                   THEN  '99'
                   ELSE  '01'     -- USA
              END;This assumes that you have a variable v_lef_cd defined.
    If you want, you can nest CASE expressions, like this:
    ...     m := CASE
              WHEN  a  IN ('1069', 'SAO', 'SA')
                   THEN  '26'     -- South Africa
              WHEN  a  IN ('1009', '1019', '1051', 'XGP', 'XSC')
                   THEN  CASE  v_lef_cd
                          WHEN  'NAM'
                             THEN  '71'
                          WHEN  'GLB'
                             THEN  '99'
                             ELSE  '01'     -- USA
                         END
              END;Always format your code, so you can see where the CASE expressions and each of the WHEN clauses begin and end.
    When posting formatted text on this site, type these 6 characters:
    (all small letters, inside curly brackets) before and after sections of formatted text, to preserve spacing.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Executing unix statements inside java

    How do you execute unix statements inside a java program? I need to execute a unix executable shell_prog.ksh from inside a java program.

    By the way, executing the "ls" command from within Java will not do anything unless you capture the output stream of the process running the "ls" command and display it:
    try
    Process p = Runtime.getRuntime.exec("ls");
    BufferedReader read = new BufferedReader(new InputStreamReader(p.getInputStream()));
    String line = null;
    while( (line = read.readLine()) != null)
    System.out.println("OUT>>>" + line);
    catch(IOException ioe)
    ioe.printStackTrace(System.err);
    System.exit(1);
    }

Maybe you are looking for

  • Not able to open Windows Media Player files with Quicktime Pro

    Hi, I have recently downloaded a couple of videos that I am planning to use in FCP. The file extension of the downloaded videos is .asf and I am able to play them with Windows Media Player. However, to use them in FCP I have to convert them into Quic

  • System Landscape Directory: HTTP response code: 403 (Forbidden)

    Hi, After upgrading PI 7.1 (with local SLD) Stack06 -> Stack09 we have the following error in the runtime workbench. It seems that the connection between PI and SLD is not working: 1) error in RWB - Error during communication with System Landscape Di

  • Foreign Keys and import of tables (ORA-02297)

    How can i get all the foreign keys for a particular schema, basically i'm trying to import tables into a particular schema so i'm trying to disable the constraints, truncate the table , import data and then enable the constraints. but i'm having erro

  • Alias in Forms

    In Planning you have the option to select Alias or MemberName for the Page\Point of View Dimensions. If you have more than one Alias how can you specify which alias for the forms to use ?

  • Java.io.FileNotFoundException in Bean code

              My application uses a application scope bean. The bean is initialized in the function           initialize(). The bean has a Properties member which I initialize from an INI           file.           The code fragment below gives the except