Looking for some information and help

To all,
Can run run the Oracle e-business suite on the Oracle Database Express Edition 11g? Is it hard ti install for a non-db?
Thank You

You cannot run EBS on 11g Express Edition as EBS requires many features not available on Express Edition, let alone the fact that an "empty" EBS install takes up several hundred Gigs of disk (Express is limited to 11G database size). The EBS install media includes an Enterprise Edition of the database.
http://docs.oracle.com/cd/E18727_01/doc.121/e12842/T422699i4773.htm#3708195
http://docs.oracle.com/cd/E18727_01/doc.121/e12842/T422699g637113.htm#i634631
Is this install for personal learning ? If so, you wil need a pretty beefy server to get acceptable performance - multiple CPUs (or at least 6 or 8 core CPU), with at least 8G of RAM, and 1TB of disk. It would be easiest to install a VM on this server (like Virtualbox), then create a Linux VM, install Oracle Enterprise Linux 5.x in the VM and then install EBS 12.1.1
HTH
Srini

Similar Messages

  • Looking for some additional button help.....

    this.createEmptyMovieClip("containerLogoL",this.getNextHighestDepth());
    containerLogoL.attachMovie("logoLarge","logoLarge_mc",containerLogoL.getNextHighestDepth() );
    containerLogoL.logoLarge_mc._x = 770;
    containerLogoL.logoLarge_mc._y = 770;
    The above code places a logo on the stage. When I release a button I need that logo to unload. I have tried:
    on (release) {
    clearInterval(_global.myInterval);
    _root.containerProj.unloadMovie("main.swf");
    this.removeMovieClip("containerLogoL");
    _root.gotoAndStop(5);
    I am also having issues with the logo loading a second time when I click a separate button that takes me back to frame 1 with the code that creates the empty movie clip.
    Any help would be appreciated.

    Ned,
    On my way but still having a problem with the button issue.
    //////This was the solution for the duplicating movie clips:
    stop();
    clearInterval(_global.myInterval);
    var prohibit;
    this.createEmptyMovieClip("containerProj",this.getNextHighestDepth());
    containerProj.loadMovie("main.swf")
    if(!prohibit){
    this.createEmptyMovieClip("containerBtn",this.getNextHighestDepth());
    this.createEmptyMovieClip("containerLogoL",this.getNextHighestDepth());
    this.createEmptyMovieClip("containerLogoS",this.getNextHighestDepth());
    containerBtn.attachMovie("mainBtns","mainBtns_mc",containerBtn.getNextHighestDepth());
    containerBtn.mainBtns_mc._x = 10;
    containerBtn.mainBtns_mc._y = 110;
    containerLogoL.attachMovie("logoLarge","logoLarge_mc",containerLogoL.getNextHighestDepth() );
    containerLogoL.logoLarge_mc._x = 770;
    containerLogoL.logoLarge_mc._y = 770;
    containerLogoS.attachMovie("logoSmall","logoSmall_mc",containerLogoS.getNextHighestDepth() );
    containerLogoS.logoSmall_mc._x = 10;
    containerLogoS.logoSmall_mc._y = 72;
    prohibit=true;
    /////////This button should unload the movie clip:
    on (release) {
    clearInterval(_global.myInterval);
    _root.containerProj.unloadMovie("main.swf");
    containerLogoL.removeMovieClip("logoLarge_mc");
    _root.gotoAndStop(5);
    //////And this should take me full circle to the first group of code that verifies what has been loaded.
    on(release){
    _root.gotoAndStop(1);
    ///////For some reason the logoLarge_mc will not unload with:
    on (release) {
    clearInterval(_global.myInterval);
    _root.containerProj.unloadMovie("main.swf");
    removeMovieClip(containerLogoL);
    _root.gotoAndStop(5);
    /////But it will with:
    on (release) {
    clearInterval(_global.myInterval);
    _root.containerProj.unloadMovie("main.swf");
    _root.containerLogoL.removeMovieClip("logoLarge_mc");
    _root.gotoAndStop(5);
    /////Is with the code directly above is that the logo will not reload when returning to frame 1. I tried to add an else statement to the if but that just resulted in duplicate movieclips once again.
    Thanks much for the input.

  • Looking for some information/advice

    To all, I am a oracle forms developer in the Phila, Pa area. Over the last couple of years
    I have seen a drop off in the number of oracle forms jobs. Can anybody shed some light on this? I do have experience in other oracle tools such as pl/sql, sql*plus, sqlloader and oracle reports. I would like to stay in oracle. What are the up and coming oracle technologies I should be looking at? Should I be looking at the oracle industry
    applications?( I have experience in Oracle financials older version) What other areas
    would be good for me to go into?
    What blogs should I be reading and what user groups should I be attending?
    Thank
    You
    Jerome Greene Oracle Developer Analyst

    Oracle says it is committed to the long-term support of Forms as long as customers continue to use it.
    However it is, as you have observed, a situation where customers are moving to other technologies.
    If you are committed to front-end development it is time to take Java classes and begin working with JDeveloper. If not your skill set will adapt more readily to PL/SQL programming and database development.

  • Looking for some assistancte in GUI_DOWNLOAD

    Hi there,
    See I have this exercise I have to do here. Basically I have to create a program that will download the contects of SBOOK to my pc. I have to use GUI_DOWNLOAD in this exercise. Also, the user will have to input the path and file name of the file to be downloaded to. I have place appropriate error message on the screen as well but I'm not sure how to do this.Being relatively new to this, I tried looking for some samples and this is what I came up so far.
    REPORT  ZISTANZS_TRNG_EX9C.
    TABLES: SBOOK.
    PARAMETERS: FILEINP(30) DEFAULT 'c:\TEMP\wee.txt' OBLIGATORY.
    DATA: BEGIN OF ITAB OCCURS 100.
          INCLUDE STRUCTURE SBOOK.
    DATA: END OF ITAB.
    CALL FUNCTION 'GUI_DOWNLOAD'
         EXPORTING
             FILENAME            = FILEINP
             FILETYPE            = 'ASC'
             write_field_separator = 'X'
         TABLES
             DATA_TAB            = ITAB
         EXCEPTIONS
             FILE_OPEN_ERROR     = 1
             FILE_WRITE_ERROR    = 2
             OTHERS              = 3.
    Unfortunately, it doesn't work though. It keeps saying that my FILENAME is not the same data type as FILEINP? I'm asking for some assistance in how this can be properly solved? Any help would be appreciated /

    Hi,
    Please refer the code below:
    * File download, uses older techniques but achieves a perfectly
    * acceptable solution which also allows the user to append data to
    * an existing file.
      PARAMETERS: p_file like rlgrap-filename.
    * Internal table to store export data
      DATA: begin of it_excelfile occurs 0,
       row(500) type c,
       end of it_excelfile.
      DATA: rc TYPE sy-ucomm,
            ld_answer TYPE c.
      CALL FUNCTION 'WS_QUERY'
           EXPORTING
                query    = 'FE'  "File Exist?
                filename = p_file
           IMPORTING
                return   = rc.
      IF rc NE 0.                       "If File alread exists
        CALL FUNCTION 'POPUP_TO_CONFIRM'
          EXPORTING
    *          TITLEBAR              = ' '
    *          DIAGNOSE_OBJECT       = ' '
               text_question         = 'File Already exists!!'
               text_button_1         = 'Replace'
    *          ICON_BUTTON_1         = ' '
               text_button_2         = 'New name'
    *          ICON_BUTTON_2         = ' '
    *          DEFAULT_BUTTON        = '1'
    *          DISPLAY_CANCEL_BUTTON = 'X'
    *          USERDEFINED_F1_HELP   = ' '
    *          START_COLUMN          = 25
    *          START_ROW             = 6
    *          POPUP_TYPE            =
          IMPORTING
               answer                = ld_answer
    *     TABLES
    *         PARAMETER              =
          EXCEPTIONS
              text_not_found         = 1
              OTHERS                 = 2.
    * Option 1: Overwrite
        IF ld_answer EQ '1'.
          CALL FUNCTION 'GUI_DOWNLOAD'
            EXPORTING
    *            BIN_FILESIZE            =
                 filename                = p_file        "File Name
                 filetype                = 'ASC'
    *       IMPORTING
    *            FILELENGTH              =
            TABLES
                data_tab                = it_excelfile   "Data table
            EXCEPTIONS
                file_write_error        = 1
                no_batch                = 2
                gui_refuse_filetransfer = 3
                invalid_type            = 4
                OTHERS                  = 5.
          IF sy-subrc <> 0.
            MESSAGE i003(zp) WITH
                     'There was an error during Excel file creation'(200).
            exit. "Causes short dump if removed and excel document was open
          ENDIF.
    * Option 2: New name.
        ELSEIF ld_answer EQ '2'.
          CALL FUNCTION 'DOWNLOAD'
            EXPORTING
                 filename            = p_file          "File name
                 filetype            = 'ASC'           "File type
    *             col_select          = 'X'            "COL_SELECT
    *             col_selectmask      = 'XXXXXXXXXXXXXXXXXXXXXXXXXX'
    *                                                   "COL_SELECTMASK
                 filetype_no_show    = 'X'     "Show file type selection?
    *       IMPORTING
    *             act_filename        = filename_dat
            TABLES
                 data_tab            = it_excelfile    "Data table
    *            fieldnames          =
            EXCEPTIONS
                 file_open_error     = 01
                 file_write_error    = 02
                 invalid_filesize    = 03
                 invalid_table_width = 04
                 invalid_type        = 05
                 no_batch            = 06
                 unknown_error       = 07.
        ENDIF.
      ELSE.                               "File does not alread exist.
        CALL FUNCTION 'GUI_DOWNLOAD'
          EXPORTING
    *          BIN_FILESIZE            =
               filename                = p_file         "File name
               filetype                = 'ASC'          "File type
    *     IMPORTING
    *          FILELENGTH              =
          TABLES
               data_tab                = it_excelfile   "Data table
          EXCEPTIONS
               file_write_error        = 1
               no_batch                = 2
               gui_refuse_filetransfer = 3
               invalid_type            = 4
               OTHERS                  = 5.
        IF sy-subrc <> 0.
          MESSAGE i003(zp) WITH
                   'There was an error during Excel file creation'(200).
          exit. "Causes short dump if removed and excel document was open
        ENDIF.
      ENDIF.
    Thanks,
    Sriram Ponna.

  • I'm looking for some help connecting linksys IP Cameras to my home network to monitor my property when I'm travelling. I used to do this with linksys WAPS, but since I've discarded all my old linksys networking and standardized on airport, I can't get the

    I'm looking for some help connecting linksys IP Cameras to my home network to monitor my property when I'm travelling.  I used to do this with linksys WAPS, but since I've discarded all my old linksys networking and standardized on airport, I can't get these things working.  I know that I have to identify my camera through the DHCP table and set up port forwarding and there is the problem. 
    My network consists of 4  base stations set up in a roaming network - same network name and passwords.  I need to do it this way so I don't have to switch network when I move from one side of the house to the other, go to the cabana, or my shop in the barn.  The network works pretty well since I went to a roaming set up.  Good performance, yata, yata, yata.
    However, the roaming network requires the AEBS's to be set up in bridge mode, rather than sharing an ip address.  When the AEBS is set to  bridge mode, you don't see a DCHP table or have the ability to identify your IP Cam through the AEBS - and hence, no port forwarding. 
    I am able to identify and set up my Linksys IP Cam by locating the ip address on my FIOS router, even though, it's plugged into an AEBS.  I set it up, see the video, remove the ethernet cable from the IP Cam, restart - and I can't get to it from an AEBS.  In researching this, it appears, I should be setting up the AEBS to "share an IP Address", going to the DHCP table and identifying the camera's IP address and setting up port forwarding.  However, you don't see any of the DHCP or port forwarding options in Airport Network Utility when configuring in bridge mode. 
    I'm hoping I'm missing something here and that the solution isn't to set it up at the FIOS router level, but I'm beginning to think that's my only hope.  What concerns me there is that I should be able to see the IP cam on the network without port forwarding since I'm not coming from outside, and I can't even do this unless it's connected hard wire.
    I'd appreciate any insight into this that anyone might have.  I've hit the wall with what I know.
    Thanks.

    In a roaming network, your "main" router is the device that would require port mapping/forwarding to be configured in order to access the IP camera from the Internet. This router is also the one that would be provide the private IP address for the camera which you will want to be a static one.
    So as you described your network, the IP cameras should be getting an IP address or you assigned it a static one and this is the address that you would enter in the Private IP address (or equivalent depending on the router used) field when setting up port mapping.
    If you are not able to access this camera from the local network, then this should be troubleshot first.

  • HI everyone. Im looking for some help. Im getting the Itunes error 50 and No network connection error. I have a perfect connection. My iphone will download and my ipad but nothing from my computer. any help would be great.

    HI everyone. Im looking for some help. Im getting the Itunes error 50 and No network connection error. I have a perfect connection. My iphod will not  download and my ipad  any help would be great.

    A lot of people are experiencing it, which suggests that Apple is having issues. If that is the case all people can do is wait it out.

  • Looking for some help in creating an ItemFilter for a Targeter

    Looking for some help in creating an ItemFilter for a Targeter
    Need a examples for creating itemfilter and TargeterFirst

    Hi David,
    We can integrate Syncfusion with LightSwitch application, if you want to customize column when create a report using syncfusion reportviewer, since I didn't try this third party
    extension before, I think you could consider getting help from
    syncfusion forum, more syncfusion experts can help you on this issue.
    Thanks for your understanding.
    Best regards,
    Angie
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Looking for some help!

    I have been using Dreamweaver for a short time now and
    absolutely love it. Okay I've been looking for sometime now and
    cannot find what I am looking for not sure if I'm just not looking
    in the right place and could use some help and advice. I my
    maincontent div area I would like to add something that I can post
    news, either weekly or a daily basis I have found alot of weblog
    programs, but what I am looking for is something simple. Hopefully
    someone will be able to help me out here.
    Thanks in advance for any info.

    >>the beer is optional :-)
    Sez You!
    Walt
    "Nancy O" <[email protected]> wrote in message
    news:g4r4d9$76$[email protected]..
    > Not sure what you mean exactly.
    > 1) Do you want to create and publish RSS feeds which
    people can subscribe
    > to?
    > Or 2) do you want to have other people's RSS news feeds
    appear on your web
    > site?
    >
    > If 1)
    > How to Create an RSS Feed with Notepad, a Web Server and
    a Beer - the beer
    > is optional :-)
    >
    http://www.downes.ca/cgi-bin/page.cgi?post=56
    >
    > RSS Specifications - everything you need to know about
    RSS:
    >
    http://www.rss-specifications.com/display-rss.htm
    >
    > FeedForAll - feed generating software for win/mac:
    >
    http://www.feedforall.com/
    >
    > If 2)
    > Feed Roll - javascript generator for including news
    feeds in websites:
    >
    http://www.feedroll.com/rssviewer/
    >
    > Google Ajax feedfetcher - requires you to have a Google
    API key#
    >
    http://www.dynamicdrive.com/dynamicindex18/gajaxrssdisplayer.htm
    >
    >
    > --Nancy O.
    > Alt-Web Design & Publishing
    > www.alt-web.com
    >
    >
    > "jvulga" <[email protected]> wrote in
    message
    > news:g4r2eu$rjm$[email protected]..
    >> I have been using Dreamweaver for a short time now
    and absolutely love
    >> it.
    > Okay
    >> I've been looking for sometime now and cannot find
    what I am looking for
    > not
    >> sure if I'm just not looking in the right place and
    could use some help
    > and
    >> advice. I my maincontent div area I would like to
    add something that I
    >> can
    > post
    >> news, either weekly or a daily basis I have found
    alot of weblog
    >> programs,
    > but
    >> what I am looking for is something simple. Hopefully
    someone will be able
    > to
    >> help me out here.
    >>
    >> Thanks in advance for any info.
    >>
    >
    >

  • Looking for some good Arc and Circle drawing pdf code.

    Hi I am looking for some suggestions on how to draw circles and arcs using PDF. My arcs have recently started to be drawn as chords in Adobe Reader 9.1.1. I am looking for example code o this nature (I know this is not circle or arc code this is just an example):
    b
    0 0 0 RG 0 0 0 rg
    1 w 98 -156 m 104 -154 l 104 -158 l 0 0 0 RG 0 0 0 rg
    b
    0 0 0 RG 0 0 0 rg
    1 w 398 -156 m 392 -154 l 392 -158 l 0 0 0 RG 0 0 0 rg
    b
    0 0 0 RG 0 0 0 rg
    1 w 98 -156 m 396 -156 l S
    BT /F1 10 Tf 243 -151 Td (1.5") Tj ET
    1 w 398 -196 m 392 -194 l 392 -198 l 0 0 0 RG 0 0 0 rg
    b
    i.e. actual PDF tokens.
    If you know of a website that feature such examples I would appreciate the URL too.
    Thanks

    Jem,
    Pardon me if I sound rude by suggesting that before you launch into an expensive printing job (which could result in disastrous consequences if you don't do it right) that you actually learn how to use the program first. You may also want to learn something about the offset printing process and how to prepare print jobs.
    Even many Illustrator novices know that there is no such thing as a background in Illustrator, in the sense that there is in Photoshop. You will need to PLACE your Photoshop background as a high resolution CMYK tiff in the provided template. That's the answer to your second question. I don't really understand your first question. Maybe someone else will. Are you simply asking, "where do I begin?" If so, then you REALLY REALLY need to read a book on how to use Illustrator. The Adobe Illustrator Classroom in a Book might be the place to start.
    "I'm pretty good with CPR. I'm helping a friend do his vasectomy and I already have all the equipment (scalpels, thread, etc.) I'm just having trouble figuring out where to cut."

  • Looking for some info, Creative is not much help.

    Looking for some info, Creative is not much help. Ok, right now I have an Audigy 2 ZS Platinum. It can use the digital inputs to decode either Dolby Digital, DD EX, DTS, and DTS ES to the analog speaker outputs. (Also a 5. setup.)
    I recently built a new PC, and would like to replace the sound card, but I use that feature (as well as some others). Seeing how Creative doesn't want to easily display the capabilities of there cards, I would like someone to let me know what card will allow the fallowing in Windows XP, Vista, and theoretically Windows 7.
    Hardware decoding of Dolby Digital, DD EX, DTS, and DTS ES and allow a proper 5. playback through analog speakers.
    Recording of whatever is playing out of the the speakers. The recording selection is labeled "What U Hear")
    The reasons behind me wanting to buy a new card are simply that I would prefer to run it through PCI-Express, and have full compatibility at the release of Windows 7 without any loss of features I need. From what I can tell, if things work in Windows Vista they will work in [email protected]

    All I can say to you (someone correct me if I'm wrong) is that Xtremegamer's doesn't decode DD/DTS via hardware with official drivers (altough they're capable of - all X-Fi are capable of decoding). XtremeMusic does the job with official drivers. I don't know the rest of the models. Someone adds [email protected]

  • Evening folks...looking for some help about my iphone microphone

    Evening folks....looking for some help.....I have a 3G Iphone and when I phone people they cannot hear me properly...sound like I am underwater....
    Any ideas or suggestions gratelfully accepted..

    I thought that is what the big deal was that people did not know until they opened the box and started using the iPhone 5, that it not only worked with one carrier but several carriers.  I did not say it will work with any carrier at one time.  I was trying to find out the reason for this and why people were so surprised that the iPhone 5 had this function and the reason for it.  As stated in my post, is it there so that after your contract is up and you want to go to another carrier you do not have to purchase a new iPhone, you  cna purchase a SIM card that works with your new carrier.
    The Otterbox Defender has a tendency to let too much dirt, dust, etc. in the cracks on the case. At least this has been my expereince.  I was thinking something more along some of the really durable cases at BallisticCaseCo.com
    As far as the iPhone 5 having issues, I have heard that there were more than usual with the first couple of manufactured batches that were shipped.  For example the Map App by Apple, the scratches on the backside of hundreds of iPhones, etc.  I am hoping these will get to be less and less, but with the recent riot at the one plant in China where the iPhone 5 is assembled is supposed to increase the waiting time.

  • Looking for some VPN advice on c7200 and possible serious problem

    Hi all,
    I am looking for some advice on how to figure out few things.
    customer has a c7200 with VPN module and seen the following
    15.2(4)M4, RELEASE SOFTWARE (fc2)
    Vpn7# Show crypto isakmp sa
    Exemple: x.x.x.x  y.y.y.y QM_IDLE 14020 ACTIVE ( repeated around 700 times)
    Vpn7# IKE-Session : 2517 active, 5120 max, 3169 failed
    Hardware Encryption : ACTIVE
    Number of hardware crypto engines = 1
    CryptoEngine VAM2+:7 details: state = Active
    Capability : IPPCP, DES, 3DES, AES, RSA, IPv6, FAILCLOSE, HA
    IKE-Session : 2800 active, 5120 max, 3169 failed
    DH : 55 active, 5120 max, 0 failed
    IPSec-Session : 1628 active, 10230 max, 0 failedhe would like to know whether these messages allude to some kind of serious problem or show the normal operation of vpn routers. because they need  to analyse their business related incidents and do prevent actions
    therefore if someone could give  give me some advice if there is any problem with the hardware i would greatly appreciate it
    thanks in advance
    Lance

    I'd make sure to read the contract and any associated fine print really, really carefully before doing this. But back to your question - this is more of a marketing question and I'd suggest hiring a good marketer (or become one) to make the most of this opportunity.
    And how do you find a good marketer?
    I'd suggest using Seth Godin (http://sethgodin.typepad.com/) as your guide/model. If the person you want to hire knows and follows Seth's good marketing advice, you'll likely do very well. If they don't know who Seth Godin is and are obsessed with SEO rankings and email blasts, I'd be very worried (that's not to say SEO rankings and email blasts are "wrong" but that they shouldn't be the only options in your marketing approach).
    Good luck!

  • Looking for some advice on CEP HA and Coherence cache

    We are looking for some advice or recommendation on CEP architecture.
    We need to build a CEP application that conforms to the following:
    • HA with no loss of events or duplicate events when failing over to the backup server.
    • We have some aggregative rules that needs to see all events.
    • Events are XMLs with size of 3KB-50KB. Not all elements are needed for the rules but they are there for other systems that come after the CEP (the customer services).
    • The XML elements that the CEP needs are in varying depth in the XML.
    Running the EPN on a single thread is not fast enough for the required throughput mainly because network latency to the JMS and the heavy task of parsing of the XML. Because of that we are looking for a solution that will read the messages from the JMS in parallel (multi thread) but will keep the same order of events between the Primary and Secondary CEPs.
    One idea that came to our minds is to use Coherence cache in the following way:
    • On the CEP inbound use a distributed queue and not topic (at the CEP outbound it is still topic).
    • On the CEPs side use a Coherence cache that runs on the CEPs JVMs (since we already have a Coherence cluster for HA).
    • Both CEPs read from the queue using multi threading (10 reading threads – total of 20 threads) and putting it to the Coherence cache.
    • The Coherence cache is publishing the events to both CEPs on a single thread.
    The EPN looks something like this:
    JMS adapter (multi threaded) -> replicated cache on both CEPs -> event bean -> HA adapter -> channel -> processor -> ….
    Does this sounds sound to you?
    Are we over shooting here? Is there a simpler solution for our needs?
    Is there a best practice for such requirements?
    Thanks

    Hi,
    Just to make it clear:
    We do not parse the XML on the event bean after the Coherence. We do it on the JMS adapter on multiple threads in order to utilize all the server resources (CPUs) and then we put it in the replicated cache.
    The requirements from our application are:
    - There is an aggregative query that needs to "see" all events (this means that we need to pass all events thru a single processor and we cannot partition them to several processors).
    - Because this is a HA solution the events on both CEPs (primary and secondary) needs to be at the same order when reaching the HA inbound adapter and the processor.
    - A single thread JMS adapter is not reading the messages from the JMS fast enough mainly because it takes time to parse the XML to an event.
    - Using a multi-threaded adapter or many single threaded adapters with message selector will create a situation that the order of events on both CEPs will not be the same at the processor inbound.
    This is why we needed a mediator so we can read in multiple threads that will parse the XMLs in parallel without concerning on order of messages and on the other hand publish all the messages on a single thread to the processors on both CEPs from this shared mediator (we use a replicated cache that runs on both JVMs).
    We use queue instead of topic because if we read the messages from a topic on both CEPs it will be stored twice on the Coherence replicated cache. But if we use a queue, when server 1 read the message and put it in the Coherence replicated cache then server 2 will not read it because it was removed from the queue.
    If I understand correctly you are suggesting replacing the JMS adapter with an event bean that will read the messages from the JMS directly?
    Are you also suggesting that we will not use a replicated cache but instead a stand alone cache on each server? In this case how do we keep the same order of events on both CEPs (on both caches)?

  • Looking for some one who can help me in SUN IDM

    Hi Friends,
    I am looking for some one who can help me to learn sun IDM. Off couse I will pay for your time.
    I can be reached at [email protected]
    Please let me know if you have some time
    Thx

    Hi Zebra,
    I really appreciate your reply. I would like to discuss out of this forum so that no one here annoyed with our newbie questions. Please send me email as I listed earlier to discuss best ways. I send email to Andy to join us.

  • I have the new version of iMovie, and when i try to start the program, i can't because it says that it is looking for some movie files from the Iphoto, so all the program is locked up... how can i do to restart the program??

    i have the new version of iMovie, and when i try to start the program, i can't because it says that it is looking for some movie files from the Iphoto, so all the program is locked up... how can i do to restart the program??

    Hi
    Did You ever use - iPhoto ?
    Did You may be direct iPhoto to a different Photo Library
    As iMovie tries to find the appropriate photo library - it can get lost if iPhoto direct it into a Library on a not connected external hard disk or to a strange location - And iMovie HANGS.
    Do - When no other program is running that might interfere
    • Start iPhoto - BUT NOW KEEP alt-key (option key) DOWN during the full Start-Up process
    • Now iPhoto let's You select Photo Library
    • Select the one in Your Account / Home folder / Pictures ! !
    • Then iPhoto should start up OK
    • Now Quit iPhoto
    • START iMovie
    Does it still hangs - then I would suspect - iMovie Pref. file
    If it Run's OK - Then HURRAY !
    Yours Bengt W

Maybe you are looking for

  • Need help in using a Secondary Index of a GL Table

    Hello ABAPers, Good morning/afternoon! I  was wondering if anyone could give me a hand on this issue. To give you a brief background, I need to retrieve Open and Cleared items in the last 24 hours, that is, from 11 am yesterday till 10:59:59 today. T

  • How can I update my iPod 1gen to play current apps? Mainly for kids.

    None of the apps I want are supported by the old system. Is an update available or do I need to update the actual device?

  • Unresponsive keyboard and trackpad

    Hi, for a week since installing OS Lion on 2007 MacBook, there is no keyboaerd and trackpad. Anyone has same problem and solution? Do not event know whether it's hardware or software issue. Thanks

  • My iTunes will NOT open ( no error )

    When I go to open my iTunes, the icon changes for a second ( looks like a sheet of paper or something ) and changes back. The hourglass shows up for about a second, and then it quits. iTunes never starts up. Ever. I have tried using the suggestions i

  • Looking for good headphones...

    OK, I'm looking for a new pair of good headphones. For a few years, I've used Sony's. I like them, but I have one problem: durability. All of them have gone dead in a year or two. To be honest, I may be considered to be abusing them - They've all bee