Is it possible to keep both iPhoto and Aperture on the same Mac

I would like to use both IPhoto (for day by day pictures) and Aperture (for pictures made with my SLR in Raw format).
Is anybody able to advice me about this opportunity?

You can keep both Applications (iPhoto and Aperture) on the same computer and separate libraries for iPhoto and Aperture;  images from both libraries will/should be available in other Applications from the Media Browser. In the long run, after you get accustomed to working Aperture, you will find it more convenient to migrate all your images to Aperture. Aperture has the more efficient storage strategy, you need less disk space to store multiple versions of the same image in Aperture than in iPhoto, and Aperture is the more versatile tool.
It is easy to migrate iPhoto libraries to Aperture, but that is a one way road, if you want to export back to iPhoto, you can export your images, but not all of your library structure.

Similar Messages

  • Can I use both iPhoto and Aperture on the same library?

    I like some of the features of iPhoto (like faces and places) but prefer to work in Aperture for its rich tool content. Is there any way I can use both iPhoto and Aperture on the same library? Or, import images from Aperture into iPhoto?
    Thanks much!
    John

    I think you may have answered a question I have with the above, but to be sure here is what I would like to do. I currently have iPhoto09 with about 50,000 pictures in it, which seems too much for it to manage. I would like to use Aperture, which I understand is better for managing a large number of photos, but still have iPhoto available to make slide shows, etc. for our AppleTV. Would the process you described above work for that?
    Thank you

  • IPhone - how to sync with iPhoto and Aperture at the same time ???

    I'm having a really hard time with syncing my photos - I'm using iPhoto and Aperture on my Mac. When I launch iTunes and start managing my iPhone, it seems like I should be able to sync photos from a variety of sources all at once (iPhoto, Aperture, other folders).
    However, whichever option I select in the photos drop-down becomes the only libraries that are available to sync. What I mean is that if I select some of the Albums in my iPhoto list and sync those, when I later drill down to Aperture and select albums from there and perform a sync - then the previously synced/loaded albums and photos from iPhoto are automatically removed from the iPhone.
    Why can't I sync between multiple photo albums / sources at the same time? This is incredibly annoying.

    Here's how I solved this problem:
    In Aperture, select File -> Import -> iPhoto Library
    Then under the "Store Files" dropdown, be sure "In their Original Location" is select. This will allow Aperture to see your iPhoto library, but it will be managed by reference rather than phyisically imported.
    Now, in iTunes, select Aperture as the application from which you want to synch photos, and select the option to synch specific albums.
    You should be able to see the names of albums in iPhoto as well as those created in Aperture.

  • Delete photos in both iPhoto and Finder at the same time??

    Is there any way I can delete photos in iPhoto AND at the same time delete them permanently in the finder?
    We all take too many pictures with out digital cameras and we can't say for sure which once are good with just looking at the camera... so we have to import ALL of them to iPhoto. When we do that, they also get saved in the Finder. When you delete the bad photos in iPhoto you still sit on the bad photos in Finder...
    Does anyone know an easy way to delete BOTH at the same time?
    Thank you

    I'm not sure I understand your set up:
    And I wanted to let you know that under Preferences the box "copy items to the iPhoto Library" is checked.
    So, all your pics are copied into the iPhoto Library. BUT you also have copies in the Pictures Folder. Why do you have two copies? They don't count as a back up because they aren't on a different volume, all they are doing is wasting disk space.
    If you let iPhoto manage the files then you have no need to access them in the Finder. With iPhoto 7 (iLife 08) the old iPhoto Library Folder is now a Unix Style Package File. The change was made to the format of the iPhoto library because many users were inadvertently corrupting their library by browsing through it with other software or making changes in it themselves.
    There are many, many ways to access your files in iPhoto:
    For 10.5 users: You can use any Open / Attach / Browse dialogue. On the left there's a Media heading, your pics can be accessed there. Apple-Click for selecting multiple pics.
    To upload to a site that does not have an iPhoto Export Plug-in the recommended way is to Select the Pic in the iPhoto Window and go File -> Export and export the pic to the desktop, then upload from there. After the upload you can trash the pic on the desktop. It's only a copy and your original is safe in iPhoto.
    This is also true for emailing with Web-based services. If you're using Gmail you can use THIS
    If you use Apple's Mail, Entourage, AOL or Eudora you can email from within iPhoto.
    If you use a Cocoa-based Browser such as Safari, you can drag the pics from the iPhoto Window to the Attach window in the browser.
    Or, if you want to access the files with iPhoto not running, then create a Media Browser using Automator (takes about 10 seconds) or use THIS
    Other options include:
    1. *Drag and Drop*: Drag a photo from the iPhoto Window to the desktop, there iPhoto will make a full-sized copy of the pic.
    2. *File -> Export*: Select the files in the iPhoto Window and go File -> Export. The dialogue will give you various options, including altering the format, naming the files and changing the size. Again, producing a copy.
    3. *Show File*: Right- (or Control-) Click on a pic and in the resulting dialogue choose 'Show File'. A Finder window will pop open with the file already selected.
    You can set Photoshop (or any image editor) as an external editor in iPhoto. (Preferences -> General -> Edit Photo: Choose from the Drop Down Menu.) This way, when you double click a pic to edit in iPhoto it will open automatically in Photoshop or your Image Editor, and when you save it it's sent back to iPhoto automatically. This is the only way that edits made in another application will be displayed in iPhoto.
    I'm not sure I understand your problem.
    Regards
    TD

  • Can we use both INSERT and UPDATE at the same time in JDBC Receiver

    Hi All,
    I would like to know is it possible to use both INSERT and UPDATE at the same time in one interface because I have a requirement in which I have to perform both the task.
    user send the file which contains both new and old record and I need to save those in MS SQL database.
    If the record exist then use UPDATE otherwise use INSERT.
    I looked on sdn but didn't find any blog which perform both the things at the same time.
    Interface Requirement
    FILE -
    > PI -
    > JDBC(INSERT & UPDATE)
    I am thinking to use JDBC Lookup but not sure if it good to use for bulk record.
    Can somebody please suggest me something or send me the link of any blog or anything to solve this problem.
    Thanks,

    Hi ,
              If I have understood properly the scenario properly,you are not performing insert and update together. As you posted
    "If the record exist then use UPDATE otherwise use INSERT."
    Thus you are performing either an insert or an update which depends on outcome of a search if the records already exist in database or not. Obviously to search the tables you need " select * from ...  where ...." query. If your query returns some results you proceed with update since this means there are some old records already in database. If your query returns no rows  you proceed with "insert into tablename....." since there are no old records present in database.
      Now perhaps the best method to do the searching, taking a decision to insert or update, and finally insert or update operation is to be done by a stored procedure in MS SQL database.  A stored procedure is a subroutine available to applications accessing a relational database system. Here the application is PI server.   If you need further help on how to write and call stored procedure in MS SQL you can look into these links
    http://www.daniweb.com/web-development/databases/ms-sql/threads/146829
    http://www.sqlteam.com/article/stored-procedures-parameters-inserts-and-updates
    [ This part you can ignore, Since its not sure that you will face this situation
        Still you might face some problems while your scenario runs. Lets consider this scenario, after the stored procedure searches the database it found no rows. Thus you proceed with an insert operation. If your database table is being accessed by multiple applications (or users) other than yours then it is very well possible that after the search operation completed with a null result, an insert/update operation has been performed by some other application with the same primary key. Now when you are trying to insert another row with same primary key you get an error message like "duplicate entry not possible for same primary key value". Thus you need to be careful in this respect. MS SQL has a feature called "exclusive locks ". Look into these links for more details on the subject
    http://msdn.microsoft.com/en-us/library/aa213039(v=sql.80).aspx
    http://www.mssqlcity.com/Articles/Adm/SQL70Locks.htm
    http://www.faqs.org/docs/ppbook/r27479.htm
    http://msdn.microsoft.com/en-US/library/ms187373.aspx
    http://msdn.microsoft.com/en-US/library/ms173763.aspx
    http://msdn.microsoft.com/en-us/library/e7z8d5hf(v=vs.80).aspx
    http://mssqlserver.wordpress.com/2006/11/08/locks-in-sql/
    http://www.mollerus.net/tom/blog/2008/03/using_mssqls_nolock_for_faster_queries.html
        There must be other methods to avoid this problem. But the point is you need to be sure that all access to database for insert/update operations are isolated.
    regards
    Anupam

  • How do I add photos to photo stream from BOTH iPhoto and Aperture

    I use Photostream for displaying photos I have taken on my DSLR on my iPad. I take the photos, download them into iPhoto and then add them to Photostream. They then appear on my iPad for display to friends and family.  But some of my photos are now being manipulated in Aperture. I'd like to display these in the same Photostream, but so far, because I have to choose either the iPhoto libray or the Aperture library - but not both - for the photostream, the only way I can do this is to export the photos from Aperture into iPhoto (which doubles up my photo files). Is there a simpler way to do this?

    OK. But let's say you are in iPhoto and you switch libraries so that you are now looking at your Aperture library. In order to add photos to your photostream you have to activate iCoud/photostream again in your iPhoto preferences for the new library. Then you get a message up which says: "iCloud Photos for [my iCloud email address] is being used with another library named "iPhoto Library". Switching iCoud Photos to this library will turn it off in iPhoto library."
    In other words this does not solve my problem of how to have one photostream which contains photos from BOTH iPhoto and Aperture.
    Is it perhaps possible to merge the iPhoto and Aperture libraries so that you only have one library for both applications?

  • How do I rebuild a common library used by both iPhoto and Aperture?

    I'm using a common library for both iPhoto and Aperture—latest versions of each and Mavericks. I'm finding photos that are in the library that seem to have fallen out of their events or projects. When I open those events or projects, the folders are empty, however the photos are still in the database. How do I rebuild this library so as to recover my original organization?

    it will not matter, if you rebuild in iPhoto or Aperture.
    You rebuild the library by launching either Aperture or iPhoto while holding down the key combination⌥⌘  (option-command)  and double-clicking  the Aperture or iPhoto icon. Keep holding down the keys, until you are seeing the Library First Aid panel.  Select to Rebuild the database.
    Back up your library before rebuilding.
    When I open those events or projects, the folders are empty, however the photos are still in the database. How do I rebuild this library so as to recover my original organization?
    Where are you seeing the photos, that are missing from the projects, but are still in the database?
    Rebuilding will collect photos, that have lost the connection to the edited versions, and show them in a "Recovered Project".  It will not restore them to the original  projects, if it is not clear, what where the originals belong to.
    Have you checked, if you have filters set, that are hiding the photos? Check the search fields in the browser and the Info panel, if they are cleared and set to "Show All".

  • Using both iPhoto and Aperture workflow help

    I am using both aperture 3 and iPhoto 9 to edit and keep track of images
    I imported images to iPhoto the have Aperture import the iPhoto library this way I have i library..I know if something happens to it I am screwed
    1) I know that Aperture is non destructive, is iPhoto?
    2) will changes ( like GPS location) in aperture be applied to iPhoto images
    3) looking to see if I can make changes made in one program appear in the other
    4) or it it better to import the images in from my external drive (how they were before iPhoto), and have a separate library for each program

    Here's the best advice for using both iPhoto and Aperture:
    Pick one horse and ride it. They both do the same job. If you're shooting Raw or high volumes of Jpeg, then definitely go with Aperture. If you're doing family snaps with a point and shoot stick with iPhoto. Using both adds unnecessary complexity to everything, and with complexity comes the risk of error and data loss.
    1) I know that Aperture is non destructive, is iPhoto?
    Yes. In a wholly different way, mind you, but yes. WHen you edit an image in iPhoto it creates a new file called the Modified Version. You can always revert to the Original photo. If you edit only with iPhoto then you can also avoid generational loss.
    2) will changes ( like GPS location) in aperture be applied to iPhoto images
    No.
    3) looking to see if I can make changes made in one program appear in the other
    You can't.
    4) or it it better to import the images in from my external drive (how they were before iPhoto), and have a separate library for each program
    It makes no sense to use both programs.
    Aperture and iPhoto are entirely different applications that work in very different ways.
    The only communication between the two is as follows:
    Aperture is able to parse the iPhoto Library to allow it to import the contents while stacking the Originals and Modified versions, preserving metadata and so forth.
    Aperture can share its Previews with the iLife apps, including iPhoto.
    That's it.
    So, specifically, what interaction there is between the two is designed to facilitate migration from iPhoto to the more powerful app. After that, iPhoto has exactly the same relationship to the Aperture Library as, say, Pages or iMovie.
    iPhoto has no knowledge of, and knows nothing of how the Aperture Library works. It cannot read the Aperture library.
    What are you hoping to achieve by running both?
    Regards
    TD

  • HT204414 How to import both iPhoto and Aperture library to iCloud Photo Library (Photos app)

    Hi all,
    Based on the article here (Designate a System Photo Library in Photos - Apple Support) has anyone tried to bring both an iPhoto and Aperture library into iCloud Photo Library so that both libraries are available as one in iCloud and form the one Photos app library rather than being seen as separate libraries. I don't want the two separated as I have 200GB's of space in iCloud which is plenty to hold the two's collective space of about 40GB's.
    It seems as though the procedure is pretty simple.
    First of all set one of your libraries as the System Photo Library, this will happen naturally with setting up Photos app for the first time. I chose iPhoto as the original library.
    Let this library upload all it's photo's to iCloud over a few minutes, hours, days etc.
    When finished, enter your other library by closing Photos app and reopening while holding down the Option key (usually Alt). In this case I now opened the Aperture library that it had found.
    Under Preferences > iCloud set this library as the System Photo Library and in turn it will have the ability to upload to iCloud.
    When it's finished I suppose you will have both iPhoto AND Aperture pictures in the one iCloud Photo Library.
    At least I hope the above makes sense.
    Anybody already tried this with good / bad results, let us know here.

    found it here  - 'If you designate a new library as the System Photo Library and then turn on iCloud Photo Library, the photos and videos in the new library will merge with those already in your iCloud Photo Library. If you want to keep the contents of your photo libraries separate, don’t turn on iCloud Photo Library for more than one library in Photos.'
    That bit seems clear. You can merge photos from different libraries by making them 'designated' first  .
    BUT  this means that Photos app only shows you library A , or library B, depending on which one you have opened , but Icloud library contains photos from Both library A and library B .
    is this correct ?
    and if so, does it not get a but confusing ?!?

  • I am doing two people's jobs and I need to use two separate log-ins on the same website. How can I keep both log-ins open at the same time. Everytime I switch tabs I have to log in again.

    I am doing two people's jobs and I need to use two separate log-ins on the same website. How can I keep both log-ins open at the same time. Everytime I switch tabs I have to log in again.

    Try one of these extensions for multiple cookie sessions.
    Multifox: <br />
    http://br.mozdev.org/multifox/ <br />
    Cookie Swap extension: <br />
    https://addons.mozilla.org/firefox/3255/ <br />
    Cookie Pie extension: <br />
    http://www.nektra.com/oss/firefox/extensions/cookiepie/

  • Use both iPhoto and Aperture with one library-best practice?

    I'd like to use both iPhoto and Aperture, but have both programs use/update just one photo library.  I have the latest versions of both programs, but was wondering if the optimum approach would be to:
    a)point Aperture to the existing iPhoto library and use that as the library for both programs
    or
    b)import the entire iPhoto library into a new Aperture library, delete the iPhoto library, and point iPhoto to use the Aperture library.
    I should point out that up to now I've been using iPhoto exclusively, and have close to 20K photos in the iPhoto library, tagged with Faces, organized into various albums, etc; if that makes a difference...
    Appreciate any advice!
    Thanks,
    Dave

    Thanks Frank!  I'll try it that way.
    Appreciate the help!

  • Both iPhoto and Aperture hanging up immediately on launch

    Both iPhoto and Aperture hanging up immediately on launch..
    Please help in resolving the issues

    Report generated by Etrecheck:
    EtreCheck version: 1.9.12 (48)
    Report generated 24 July 2014 8:31:31 am IST
    Hardware Information:
      MacBook Pro (15-inch, Early 2011) (Verified)
      MacBook Pro - model: MacBookPro8,2
      1 2.2 GHz Intel Core i7 CPU: 4 cores
      4 GB RAM
    Video Information:
      Intel HD Graphics 3000 - VRAM: 384 MB
      Color LCD 1440 x 900
      AMD Radeon HD 6750M - VRAM: 1024 MB
    System Software:
      OS X 10.9.4 (13E28) - Uptime: 0 days 0:14:47
    Disk Information:
      TOSHIBA MK7559GSXF disk0 : (750.16 GB)
      EFI (disk0s1) <not mounted>: 209.7 MB
      Macintosh HD (disk0s2) / [Startup]: 749.3 GB (427.2 GB free)
      Recovery HD (disk0s3) <not mounted>: 650 MB
      MATSHITADVD-R   UJ-8A8 
    USB Information:
      Apple Inc. FaceTime HD Camera (Built-in)
      Apple Inc. BRCM2070 Hub
      Apple Inc. Bluetooth USB Host Controller
      Apple Inc. Apple Internal Keyboard / Trackpad
      Apple Computer, Inc. IR Receiver
    Thunderbolt Information:
      Apple Inc. thunderbolt_bus
    Gatekeeper:
      Mac App Store and identified developers
    Kernel Extensions:
      [not loaded] com.ZTE.driver.ModemDriverMac (1.0.2d1) Support
      [not loaded] com.ZTE.driver.ZTEUSBCDCACMData (1.3.33) Support
      [not loaded] com.ZTE.driver.ZTEUSBMassStorageFilter (1.3.33) Support
      [not loaded] com.lct.driver.LJACDDriver (1.0.0d1) Support
      [not loaded] com.lja.driver.LJACDDriver64 (1.0.1) Support
      [not loaded] lja.driver.USBModemCDC (1.0.0) Support
      [not loaded] lja.driver.USBModemCDC64 (4.0.2) Support
      [not loaded] lja.driver.USBModemData (1.0.0) Support
      [not loaded] lja.driver.USBModemData64 (4.0.2) Support
    Startup Items:
      HWNetMgr: Path: /Library/StartupItems/HWNetMgr
      HWPortDetect: Path: /Library/StartupItems/HWPortDetect
    Launch Daemons:
      [loaded] com.adobe.fpsaud.plist Support
      [loaded] com.google.keystone.daemon.plist Support
      [loaded] com.microsoft.office.licensing.helper.plist Support
      [loaded] com.oracle.java.Helper-Tool.plist Support
      [not loaded] com.teamviewer.teamviewer_service.plist Support
      [running] PPPMonitord.plist Support
    Launch Agents:
      [loaded] com.google.keystone.agent.plist Support
      [running] com.lja.startupAgent.plist Support
      [loaded] com.oracle.java.Java-Updater.plist Support
      [not loaded] com.teamviewer.teamviewer.plist Support
      [not loaded] com.teamviewer.teamviewer_desktop.plist Support
      [running] Swapper.plist Support
    User Launch Agents:
      [loaded] com.adobe.ARM.[...].plist Support
      [loaded] com.facebook.videochat.[redacted].plist Support
      [loaded] com.fastestyoutubedownloader.TrialExpired.GoldFreeFirstWeek.plist Support
      [loaded] de.metaquark.appfresh.plist Support
    User Login Items:
      PopClip
      LockScreen2
      Dropbox
      Degrees
    Internet Plug-ins:
      JavaAppletPlugin: Version: Java 7 Update 60 Check version
      FlashPlayer-10.6: Version: 14.0.0.145 - SDK 10.6 Support
      EPPEX Plugin: Version: 10.0 Support
      AdobePDFViewerNPAPI: Version: 10.1.10 Support
      AdobePDFViewer: Version: 10.1.10 Support
      Flash Player: Version: 14.0.0.145 - SDK 10.6 Support
      Default Browser: Version: 537 - SDK 10.9
      QuickTime Plugin: Version: 7.7.3
      RealPlayer Plugin: Version: (null) Support
      SharePointBrowserPlugin: Version: 14.0.0 Support
      iPhotoPhotocast: Version: 7.0 - SDK 10.8
    Safari Extensions:
      Turn Off the Lights: Version: 3.0.0.12
      Awesome Screenshot: Version: 1.4.3
      AdBlock: Version: 2.7.7
    Audio Plug-ins:
      BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
      AirPlay: Version: 2.0 - SDK 10.9
      AppleAVBAudio: Version: 203.2 - SDK 10.9
      iSightAudio: Version: 7.7.3 - SDK 10.9
    iTunes Plug-ins:
      Quartz Composer Visualizer: Version: 1.4 - SDK 10.9
    3rd Party Preference Panes:
      Flash Player  Support
      Java  Support
    Time Machine:
      Skip System Files: NO
      Mobile backups: OFF
      Auto backup: NO - Auto backup turned off
      Volumes being backed up:
      Macintosh HD: Disk size: 697.84 GB Disk used: 299.98 GB
      Destinations:
      Time Machine Backups [Local] (Last used)
      Total size: 931.19 GB
      Total number of backups: 2
      Oldest backup: 2011-08-25 14:26:36 +0000
      Last backup: 2013-10-23 11:24:28 +0000
      Size of backup disk: Adequate
      Backup size 931.19 GB > (Disk used 299.98 GB X 3)
      Time Machine details may not be accurate.
      All volumes being backed up may not be listed.
    Top Processes by CPU:
          7% WindowServer
          3% Safari
          1% hidd
          1% fontd
          1% com.apple.WebKit.Networking
    Top Processes by Memory:
      156 MB com.apple.IconServicesAgent
      90 MB mds_stores
      78 MB Safari
      70 MB Dropbox
      66 MB Finder
    Virtual Memory Information:
      911 MB Free RAM
      1.49 GB Active RAM
      616 MB Inactive RAM
      1.01 GB Wired RAM
      342 MB Page-ins
      0 B Page-outs

  • Can I use both iPhoto 6 and 5 on the same Mac?

    I gave up on iPhoto 6 when it comes to publishing web galleries (see my posts at http://discussions.apple.com/thread.jspa?threadID=456532&tstart=0 )
    Can I use both iPhoto 6 and 5 on the same Mac?
    Thanks!

    Lior:
    Welcome to the Apple Discussions. Yes you can but it takes a lot of caution! You can have both application running their own library. But the problem comes in when you launch V5 into the last used library, a V6 library, and it can corrupt that library so it won't open in V6 again. Conversely, if you open V6 and the V5 library was the last to be opened and you don't pay attention, you'll convert it to a V6 and lose the V5 access.
    So you have to make sure you ALWAYS launch iPhoto with the Option key depressed and manually select the library to use each time. Also Name each library differently. I use V6 LIbrary and V5 Library. You can rename your current one and then launch iPhoto with the Option key depressed and navigate to it to open it.

  • I have on my MacBook both iPhoto and Aperture and want to purchase iPhoto for iPad. If I do so, will I be able to see all my MacBook iPhoto progress (places, faces, events, etc) on the iPad app ? Via icloud or some other feature tht work like PhotoStream?

    I have on my MacBook both iPhoto and Aperture and want to purchase iPhoto for iPad. If I do so, will I be able to see all my MacBook iPhoto progress (places, faces, events, etc) on the iPad app ? Via icloud or some other feature tht work like PhotoStream?

    If I do so, will I be able to see all my MacBook iPhoto progress (places, faces, events, etc) on the iPad app ?
    just some notes in addition to Ralphs answer: Your iPad is very useful to browse and show off your photos, i.e. the Retina iPad. You can sync to the iPad via iTunes or using the Photo Stream or a shared Photo Stream.  But if you can browse and store all your photos on the iPad, will depend on the available storage on your iPad. Using iTunes you can sync events, albums, faces stacks, places stacks to your iPad. Not many metadata tags will transfer however.
    See the iPhoto help on what iPhoto can actually do:
    iPhoto Help: What is iPhoto? http://help.apple.com/iphoto/ipad/1.1/#blnkd2e20226
    Regards
    Léonie

  • Can we install both PI and CE in the same instance ?

    Hi,
    I have requirement to use EAI and BPM tools in SAP, as i know the tools will be PI and CE, but then to reduce the total cost of the hardware we need to put both PI and CE into the same box. is that possible to install both application in the same instance to reduce total memory used ? because both system also using the same java stack the only different is the installed component.
    Please advise ?
    Thank You and Best Regards
    Fernand Lesmana

    Hi Fernand,
    is that possible to install both application in the same instance to reduce total memory used ?
    Yes, it is possible.
    Please advise ?
    Not advisable to have PI and CE on same instance. Might face problems as cited by Abhishek.
    Regards,
    Neetesh

Maybe you are looking for

  • How to reset my Admin Password?

    Hi, I bought a new Macbook Pro laptop yesterday running OS X Mavericks 10.9.1 and had it been set up in store so when I got home it was ready to use. Did not have to set up anything! Today I was trying to search for some videos on youtube and apparen

  • Impdp error while attaching the job - Urgent - Prod batches are stopped

    I am getting following error, when I invoke the following command. impdp "'/ as sysdba'" attach ="SYS"."SYS_IMPORT_TABLE_01" Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.2.0 - 64bit Production With the Partitioning, OLAP and Da

  • Oracle 10g express edition browser login problem

    Hi I installed oracle 10g express edition and after installing successfully logged in browser , unlocked hr login and also created one form then I shutdown the database and rebooted my pc and since then when I try to login to "go to Database Home pag

  • Phot Stream Disabled??

    Anyone have any idea why Photo Stream is disabled on my iPhone 4? I have the latest release of iOS 5, and I am connected to WiFi. Photo Stream is enabled on my iCloud account. But in Settings > Photos, Photo Stream is greyed out and set to OFF.

  • Macromedia studio 8 - serial too short?

    Hello, i have an old version studio 89 student & teacher edit which has a serial with 4 letter and 6 numbers. if i try to use it at registration i can´t get further ... anyone an idea? thanks, tobias