Using Log Miner to find reason for extremely large archive logs.

Hello everyone,
I have an Oracle 10g RAC database that sometimes generates extremely large number archive logs. The database is in ARCHIVELOG mode.
The usual volume of archive logs per day after compression is about 5GB, sometimes that spikes to 15GB and I cannot understand why.
I am looking at gathering statistics based on the inflated redo logs via LogMiner.
Looking at the structure of V$LOGMNR_CONTENTS - there are columns with promising names such as REDO_LENGTH, REDO_OFFSET, UNDO_LENGTH, UNDO_OFFSET.
However all these columns are deprecated. http://download-west.oracle.com/docs/cd/B19306_01/server.102/b14237/dynviews_1154.htm
Is there a way of identifying operations that generate large redo logs?
The documentation for LogMiner has some example user sessions but none show how to generate statistics on the connection between redo logs and sql statements.
I see nothing that can help me in the following views:
V$LOGMNR_DICTIONARY, V$LOGMNR_DICTIONARY_LOAD, V$LOGMNR_LATCH,V$LOGMNR_LOGS, V$LOGMNR_PARAMETERS, V$LOGMNR_PROCESS, V$LOGMNR_SESSION
These views plus the following columns sound somewhat promising:
V$LOGMNR_CONTENTS -> RBABLK, RBABYTE, UBAFIL, UBABLK, UBAREC, UBASQN, ABS_FILE#, REL_FILE#, DATA_BLK#, DATA_OBJ#, DATA_OBJD#
V$LOGMNR_STATS -> NAME , VALUE
However I found nothing in the documentation on how to use them. (esp. not in Database reference, Database Utilities - the main documents I looked into). What should I read? Any strategies or ideas?
Kind regards:
al_shopov

To find sessions generating lots of redo, you can use either of the following
methods. Both methods examine the amount of undo generated. When a transaction
generates undo, it will automatically generate redo as well.
The methods are:
1) Query V$SESS_IO. This view contains the column BLOCK_CHANGES which indicates
how much blocks have been changed by the session. High values indicate a
session generating lots of redo.
The query you can use is:
SELECT s.sid, s.serial#, s.username, s.program,
i.block_changes
FROM v$session s, v$sess_io i
WHERE s.sid = i.sid
ORDER BY 5 desc, 1, 2, 3, 4;
Run the query multiple times and examine the delta between each occurrence
of BLOCK_CHANGES. Large deltas indicate high redo generation by the session.
2) Query V$TRANSACTION. This view contains information about the amount of
undo blocks and undo records accessed by the transaction (as found in the
USED_UBLK and USED_UREC columns).
The query you can use is:
SELECT s.sid, s.serial#, s.username, s.program,
t.used_ublk, t.used_urec
FROM v$session s, v$transaction t
WHERE s.taddr = t.addr
ORDER BY 5 desc, 6 desc, 1, 2, 3, 4;
Run the query multiple times and examine the delta between each occurrence
of USED_UBLK and USED_UREC. Large deltas indicate high redo generation by
the session.
hth
Kezie

Similar Messages

  • Thinking about using Mac Mini's as desktops for 20 employee business.  Pro's Vs. Con's

    Thinking about using Mac Mini's as desktops for 20 employee business.  Pro's Vs. Con's

    Your best bet would be to buy a single 2012 MacMini Server model that you can use to manage the balance of the other machines. Either that or upgrade one of the MM's to OS X Yosemite Server . You can find information about the Server edition at:
    https://www.apple.com/osx/server/
    However I would STRONGLY recommend visiting your local Apple Store and ask to speak to their business specialist, they are trained to manage customer needs such as yours.
    The major advantage of using Macs over any PC is the stability of OS X itself and the overall quality of support that you will never get with HP.

  • Spanning 8mm tapes for a large archive

    I am looking for some insight on how to span tapes for very large archives. I am using Solaris 8. The tape drive commands seem very limited as do the error messages returned upon a failure.

    Christa,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://forums.novell.com/

  • Log Miner is finding DDL for "new" tables, but also DML for "older" tables.

    oracle 10.2.0.5.0 Standard Edition
    (at some point in the past it was "downgraded" from enterprise edition).
    It's making me crazy,  i create a table then insert/update rows.  Log miner only shows me the create.
    However, if i do insert/update on an "older" table,  i see the DML.  The tables are in the same tablespace, both logging, and the database is forcing logging.
    I'm out of ideas, and input would be appreciated.
    thanks!
    ####### CREATE THE ORACLE.LOGMNR1 TABLE ########
    SQL> create table ORACLE.LOGMNR1
      2  (col1 varchar2(100));
    Table created.
    ####### INSERT  ROW AND UPDATE A ROW IN ORACLE.LOGMNR1 TABLE ########
    SQL> insert into ORACLE.LOGMNR1 values ('testing insert');
    1 row created.
    SQL> commit;
    Commit complete.
    SQL> update ORACLE.LOGMNR1 set col1 = 'TESTING UPDATE';
    1 row updated.
    SQL> commit;
    Commit complete.
    ####### INSERT 2 ROWS INTO AN OLD TABLE EPACS.COLUMN_COUNTS  ########
    SQL> insert into epacs.column_counts
      2  values ('TEST1',99,'TEST2',88,SYSDATE);
    1 row created.
    insert into epacs.column_counts
       values('TEST3',77,'TEST4',66,SYSDATE);
    1 row created.
    SQL> COMMIT;
    Commit complete.
    ####### INSERT ANOTHER ROW INTO ORACLE.LOGMNR1 TABLE ########
    SQL> insert into LOGMNR1 values ('ONE MORE TEST');
    1 row created.
    SQL> COMMIT;
    Commit complete.
    ####### CREATE THE ORACLE.LOGMNRAFTER TABLE ########
    SQL> CREATE TABLE LOGMNRAFTER (COL1 VARCHAR2(100));
    Table created.
    ####### INSERT A ROW INTO ORACLE.LOGMNRAFTER TABLE ########
    SQL> INSERT INTO LOGMNRAFTER VALUES('FINISHED');
    1 row created.
    SQL> COMMIT;
    Commit complete.
    ####### MINE THE LOGS FOR ACTIVITY ########
    SQL> edit
    Wrote file afiedt.buf
      1  select to_char(timestamp,'yyyy/mm/dd hh24:mi:ss'), username,
      2          operation, sql_redo
      3          from v$logmnr_contents
      4      where
      5      seg_owner in( 'ORACLE','EPACS')
      6  and
      7      operation <> 'UNSUPPORTED'  
      8*          order by timestamp
    SQL> /
    ####### IT FINDS THECREATE THE ORACLE.LOGMNR1 TABLE, BUT NO INSERTS ########
    2013/10/09 14:02:05 ORACLE                                                     
    DDL                                                                            
    create table LOGMNR1                                                           
    (col1 varchar2(100));                                                          
    ####### IT DOES FIND INSERTS FOR THE OLD EPACS.COLUMN_COUNTS TABLE ########                                                   
    2013/10/09 14:03:54 ORACLE                                                     
    INSERT                                                                         
    insert into "EPACS"."COLUMN_COUNTS"("TABLE_NM","TABLE_ROW_QTY","COLUMN_NM","COLU
    MN_QTY","LAST_UPDATE") values ('TEST1','99','TEST2','88','09-OCT-13');         
    2013/10/09 14:05:09 ORACLE                                                     
    INSERT                                                                         
    insert into "EPACS"."COLUMN_COUNTS"("TABLE_NM","TABLE_ROW_QTY","COLUMN_NM","COLU
    MN_QTY","LAST_UPDATE") values ('TEST3','77','TEST4','66','09-OCT-13');         
    ####### AND IT FIND THE CREATE FOR THE ORACLE.LOGMNRAFTER TABLE ########                                                      
    2013/10/09 14:06:11 ORACLE                                                     
    DDL                                                                            
    CREATE TABLE LOGMNRAFTER (COL1 VARCHAR2(100));                                 
    ###### BOTH TABLES ARE "LOGGING" AND LIVE IN THE SAME TABLESPACE ######
    ###### LOGGING IS FORCED AT THE DATABASE LEVEL ####
    SQL> select force_logging from v$database;
    YES                                                                            
    SQL> select owner,table_name,logging
      2  from dba_tables where owner in ('EPACS','ORACLE')
      3  and table_name in('COLUMN_COUNTS','LOGMNR1');
    EPACS                          COLUMN_COUNTS                  YES              
    ORACLE                         LOGMNR1                        YES              
    SQL> SPOOL OFF

    Nither the table showing only DDL nor the table showing DML have supplemental logging.
    thanks.
    select count(*) from ALL_LOG_GROUPS
       where LOG_GROUP_TYPE='ALL COLUMN LOGGING' and OWNER='ORACLE' and table_name='LMTEST1'
    SQL> /
      COUNT(*)
             0
        select count(*) from ALL_LOG_GROUPS
       where LOG_GROUP_TYPE='ALL COLUMN LOGGING' and OWNER='EPACS' and table_name='COLUMN_COUNTS'
      COUNT(*)
             0
    Message was edited by: user12156890
    apparently this is an issue with the database configuration and not log miner.  I ran the same test against the prodcution database and got both the DDL and DML.  I used exactly the same test script including the logminer "setup" , obviously changing the name of the log files and the name of a directory.

  • Now I understand the reason for very large screen monitors

    I now understand why many people want to buy the new very large screen Macs. I have always loved my 17" flatscreen iMac G4 and since the picture itself is the same and the only thing that changes is the real estate around the picture, I always felt that getting a larger monitor would be an exercise in self-indulgence.
    Well, now I see that all of the surrounding real estate would be very useful for putting folders, documents, pictures, etc on the screen and having them visible and accessible. For someone making a webpage, and I imagine also for making iMovies, which I will soon do for my website, a 19" or larger screen would be VERY helpful. But when a person buys a new computer, then all of that information has to be transferred....... and that is enough to make a person stick with the 17" monitor (that and the price of a 21").
    — Lorna in Southern California

    Have you tried using Exposé to make that smaller
    screen more expansive? You can drag from one window
    to another with an Exposé transition in between.
    While not a replacement for a larger screen, it does
    help when I need it.
    Ken, I've had Tiger for about a week and the only things I've been working with are iWeb and iPhoto! Later I will explore Exposé. It sounds like they were trying to help us out and that's good.
    — Lorna in Southern California

  • ADF: Cannot find reason for SEVERE error in WLS log

    JDeveloper 11.1.1.1.0
    When I deploy my ADF application to integrated WLS, I keep geting following log messages:
    10.7.2009 9:09:17 oracle.adfinternal.view.faces.renderkit.rich.RichRenderKit isNavigating
    SEVERE: The original view root was not set.
    10.7.2009 9:09:20 oracle.adfinternal.view.faces.renderkit.rich.RichRenderKit isNavigating
    SEVERE: The original view root was not set.
    10.7.2009 9:11:04 oracle.adfinternal.view.faces.renderkit.rich.RichRenderKit isNavigating
    SEVERE: The original view root was not set.
    10.7.2009 9:11:09 oracle.adfinternal.view.faces.renderkit.rich.RichRenderKit isNavigating
    SEVERE: The original view root was not set.
    What is the problem?
    Edited by: mskarabo on Jul 10, 2009 9:34 AM

    Hi,
    another situation when this could happen:
    In my main jspx I have an af:panelTabbed with an af:region in each of the af:showDetailItems. The regions refer to bounded task flows consisting of only one view (a page fragment) using bindings. The jspx is below, with two additional showDetailItems for testing (sdi3, sdi4).
    <f:view>
      <af:document id="d1" title="TEST RichRenderKit isNavigating SEVERE error">
        <af:form id="f1">
          <af:panelTabbed id="pt1">
            <af:showDetailItem text="TaskFlow1" id="sdi1">
              <af:region value="#{bindings.MyTaskFlow1.regionModel}" id="r1"/>
            </af:showDetailItem>
            <af:showDetailItem text="TaskFlow2" id="sdi2">
              <af:region value="#{bindings.MyTaskFlow2.regionModel}" id="r2"/>
            </af:showDetailItem>
            <af:showDetailItem text="showDetailItem 1" id="sdi3">
              <af:outputText id="ot1" value="test"/>
            </af:showDetailItem>
            <af:showDetailItem text="showDetailItem 2" id="sdi4"/>
          </af:panelTabbed>
        </af:form>
      </af:document>
    </f:view>The error message appears in the log window only when navigating from a tab that uses a task flow as a region.
    (E.g. the error shows when navigating from sdi1 or sdi2 to any other tab, but does not show when navigating from sdi3 or sdi4 to any other tab.)
    Hope this helps to identify the problem.
    Regards,
    Patrik

  • Can I use Mac Mini as a "server" for a MacBook Pro and iMac?

    I want to develop a simple system for accessing my files from multiple devices.
    I heavily use iTunes (190 GB), iPhoto (120 GB) and iMovie (30 GB, but want to do more when I get time).  Additionally, I store lots of old videos on circa 10 portable hard drives (1 TB each), which I access occasionally. 
    The family use all this content and we currently have a MacBook Pro and are considering buying a new computer - either a new MacBook Pro or an iMac. We also have iPads, iPhones etc and a Time Capsule. We use wireless fibre optic broadband.
    I don't really want multiple iTunes and iPhoto libraries.  We want all our music and pictures in single master libraries that we can all access and update.
    As there is seemingly too much data to store on iCloud, we need to find an alternative solution. 
    My possible solution is:
    (1) Load my master iTunes, iPhoto and iMovie libraries ("iTPM libs") on a Mac mini
    (2) Buy a new MacBook Pro or iMac (probably doesnt matter which)
    (3) Link the MacBook Pro(s) and iMac to the Mac mini to access iTunes, iPhoto and iMovie and the master iTPM libs
    (4) Plug the portable hard drives into the Mac mini whenever I need to access the video content stored on the portable hard drives
    (5) Add "users" to the system (i.e. family members), in the same way you would access a shared server at work
    (6) Over time, buy more computers to access the system in the same way
    My questions are:
    (1) Is this system feasible?
    (2) If so, can I edit the iTPM libs from the MacBook Pro or iMac?
    (3) If so, what happens if both the MacBook Pro and iMac are accessing the libraries at the same time? Which takes precedent?
    (4) Would this solution be significantly slower than having separate libraries on the different computers?
    (5) Is there an alternative approach that might work better for my needs? (which are, after all, relatively straight forward).  When I went to the Apple store they were unsure!
    Many thanks.

    I heavily use iTunes (190 GB), iPhoto (120 GB) and iMovie (30 GB, but want to do more when I get time).  Additionally, I store lots of old videos on circa 10 portable hard drives (1 TB each), which I access occasionally.
    The family use all this content and we currently have a MacBook Pro and are considering buying a new computer - either a new MacBook Pro or an iMac. We also have iPads, iPhones etc and a Time Capsule.
    […] We want all our music and pictures in single master libraries that we can all access and update.
    The "update" portion of this is where your problems will arise.  You'd be better to consider your proposed system initially in terms of content "consumption", before getting into the nitty-gritty of editing shared content.
    iTunes has the Home Sharing feature built-in, which solves the content consumption issue.
    I don't know anything about sharing iPhoto libraries, but this KB article looks useful.
    As for iMovie, I think there are two things you want to do: share the raw data (sound effects, music, photos etc.) that are used to create iMovie content; and share the finished results.  Is that right?  I'm not sure how you'd go about doing that, but if you clarify your aims in this regard, it'll help the next person who comes along.
    When it comes to updating content, such as adding new music to iTunes or iPhoto, I'd suggest you do it through the Mac mini directly.  This seems the least problematic solution.  You wouldn't necessarily need a dedicated display for the Mac mini - you could use remote desktop or VNC or what-have-you.
    As for speed: doing anything across a network is always going to be slower than doing it locally.  But, it probably won't matter for content consumption (though if you're all watching different movies at the same time the drives on the server may struggle, and the wifi bandwidth might be tight).
    I hope this represents a good initial response to your query.

  • How to find reason for system crash?

    Hello,
    I have a test system running in VirtualBox environment and its crashing every now and then, sometimes two times a day but sometimes it lasts for 3 days before crash happens.
    system info
    root>cat /etc/*release*
    Solaris 10 10/09 s10x_u8wos_08a X86
    root>uname -a
    SunOS 5.10 Generic_142910-17 i86pc i386 i86pc
    dump files
    root>ls -l vmdump.*
    -rw-r--r-- 1 root root 116064256 Jan 13 05:35 vmdump.0
    -rw-r--r-- 1 root root 108003328 Jan 13 10:15 vmdump.1
    -rw-r--r-- 1 root root 112852992 Jan 14 18:53 vmdump.2
    -rw-r--r-- 1 root root 129236992 Jan 17 08:41 vmdump.3
    -rw-r--r-- 1 root root 122486784 Jan 17 16:39 vmdump.4
    started to use mdb
    root@cs5vs01>mdb -k unix.4 vmcore.4
    Loading modules: [ unix krtld genunix specfs dtrace cpu.generic uppc pcplusmp ufs ipc ip hook neti sctp arp usba fctl nca lofs zfs nfs random md cpc fcip sppp ]
    ::stack
    vpanic()
    kadmin+0x517()
    uadmin+0xc7()
    sys_syscall+0x17b()
    $C
    fffffe800100ee60 vpanic()
    fffffe800100eeb0 kadmin+0x517()
    fffffe800100ef00 uadmin+0xc7()
    fffffe800100ef10 sys_syscall+0x17b()I wonder how I can continue from this point? Any support would be greatly appreciated!
    Anyone knows about a good step by step debug guide? For example how to logically track down the root cause, good example commands and so on?
    Thank you!
    BR
    Daniel

    We can see from the following stack that the panic was caused by someone or some app calling uadmin(1M)
    $C
    fffffe800100ee60 vpanic()
    fffffe800100eeb0 kadmin+0x517()
    fffffe800100ef00 uadmin+0xc7()
    fffffe800100ef10 sys_syscall+0x17b()
    So the question is who/what. ::ptree will give you the process tree and you should see from that the execname responsible. What apps do you have running in this VBOX environment? Oracle RAC uses the uadmin interface because it doesn't have a failfast driver of it's own. There are several other applications who also use the uadmin syscall for similar reasons. Normally they panic the node/system because something has timed out and they need to restore cluster/system stability and integrity.
    With regards to the step-by-step guide, no such document exists because it's impossible to write one. Each crash dump is different, each person does things slightly differently. What you need to do is understand how to use the tools (typically mdb or scat) and then start poking about in crash dumps. In fact you may find scat (Solaris Crash Analysis Tool) more user friendly and easier to learn than mdb. SCAT can be downloaded from https://cds.sun.com/is-bin/INTERSHOP.enfinity/WFS/CDS-CDS_SMI-Site/en_US/-/USD/ViewProductDetail-Start?ProductRef=SCAT-5.2-G-F@CDS-CDS_SMI
    There's some information for mdb in the man page and at the following locations:
    http://dlc.sun.com/osol/docs/content/MODDEBUG/intro-1.html
    http://download.oracle.com/docs/cd/E19253-01/816-5041/index.html
    Unfortunately Crash Dump Analysis (CDA) isn't something that can easily be done via the forums. If you raise a service request it'll come to the Kernel group and we can then have a look for you.
    Regards,
    Steve

  • With a 2007 macbook, do I use a mini-DVI to DVI for Epson LCD projector?

    Just want to make sure I buy the correct adapter.  I want to Power Point over my 2007 black MacBook using the Epson 3LCD projector, and I'm not sure if I need mini-DVI to DVI to VGA, or mini-DVI to VGA.  The projector has the blue 16 pin cable, no USB.
    Thanks for any advice you can give.

    It looks like you'd need the Mini-DVI to VGA adapter and a VGA to VGA cable to the projector.
    http://www.amazon.com/s/ref=nb_sb_ss_i_2_8?url=search-alias%3Delectronics&field- keywords=mini-dvi+to+vga+adapter&sprefix=mini-dvi
    http://www.amazon.com/s/ref=nb_sb_ss_i_2_8?url=search-alias%3Delectronics&field- keywords=mini-dvi+to+vga+adapter&sprefix=mini-dvi#/ref=nb_sb_ss_i_0_10?url=searc h-alias%3Delectronics&field-keywords=vga+to+vga+cable&sprefix=vga+to+vga&rh=n%3A 172282%2Ck%3Avga+to+vga+cable

  • Use Mac Mini as access point for PC Laptop using WEP

    Hello,
    I am having a horrific time getting my PC Laptop to gain access to the internet through my Mac mini while using WEP. While I can gain access very easily with no WEP protection, I am blocked every time when I try to use WEP.
    I've tried using 64 & 128bit encryption. I've used 5 and 13 character keys respectively. I've tried using the HEX representation of the 5 characters on the PC. I then tried HEX on the MAC & on the PC. No success.
    My wife has a similar PC Laptop and she can gain access using WEP, so I feel I should have no problem with mine.
    Any suggestions/ideas?
    thank you,
    Randy

    I have the same problem with my Mac Mini & two different PCs. No password is fine, but try to secure the network & there's no getting thru. I've read elsewhere that it's necessary to use a wireless router in order to secure the network. Or just be sure to disable internet sharing whenever you're not using the PCs, I guess.

  • Can we select multiple Invalid Reasons for a single document in verifier?

    Hi all,
    Can anyone explain me how to select more than one invalid reasons in verifier?
    Cen we define new Invalid reason based on the predefined rules available in verifier?
    For ex: I wanted to use 2 rules one for 'Invoice amount do not add up' and for 'Missing/Invalid PO' under single Invalid Reason.
    Is it possible??
    If yes how can we impplement the same?
    Is there any workaround for the same?
    Thanks in advance.

    YVM wrote:
    Hi William,
    Thanks for your reply.
    But can we use a single custom invalid reason for which it will vaidate PO number and Amount also??
    Is it possible??
    Please help me out.
    I'm sorry, but I'm not even sure how to begin to answer this question. "But can we use a single custom invalid reason for which it will vaidate PO number and Amount also??"  What are you trying to set as invalid?  Why are you trying to validate other fields in spite of the fact the item already has some type of issue (which is understood since you are marking it as invalid)?
    Typically, you are going to set an invalid reason in order to get the item out of Verifier and into the EBS workflow process.
    "Exceptions" can also be set within Verifier (which is separate functionality from the invalid reasons) which would assign a new state code to an item to keep the item in Verifier instead of releasing it.  These special state codes would be set as accessible from certain workstations (with these workstations being operated by specialists who handle these specific issues).
    I'd suggest taking some more time to read the AP Solution Guide and the OFR documentation to understand what functionality already exists.  If I even vaguely understand what you are asking, you're asking for a customization that is far outside of the scope of this forum.  It will likely call for not only changes to the AP solution project, but the BPEL workflow code logic as well - which is way too much to cover in a forum post.

  • Using Airport Utility, OS X Yosemite sometimes does not find my airport extreme and my iphone 6 with 8.1 does find it.  Is anyone else experience this glitch?  Also I couldn't log on to Apple Support... Thanks

    Using Airport Utility, OS X Yosemite sometimes does not find my airport extreme and my iphone 6 with 8.1 does find it.  Is anyone else experience this glitch?  Also I couldn't log on to Apple Support... Thanks

    *Feedback*
    "Use the form below to send us your comments. We read all feedback carefully, but please note that we cannot respond to the comments you submit."
    http://www.apple.com/feedback/ipad.html
    We can complain about Apple's business decisions, but these discussions are user to user talk about possible solutions.
    Here are the places to report bugs:
    Get an account at
    http://developer.apple.com/  then submit a bug report to http://bugreporter.apple.com/
    Once on the bugreporter page,
       -- click on New icon
       -- See if you need to attach a log file or log files, clicking on Show instructions for gathering logs.  Scroll down to find the area or application that matches the problem.
       -- etc.

  • I just noticed that I can no longer select photos out of my finder that are located in my Aperture/Iphoto Library.  I used to be able to attach photos to my gmail out of the aperture library in the finder and for some reason, no longer can.

    I just noticed that I can no longer select photos out of my finder that are located in my Aperture/Iphoto Library.  I used to be able to attach photos to my gmail out of the aperture library in the finder and for some reason, no longer can.
    I can't access these images except to go into the applications. 
    Also, I'd like to import my iphoto library into aperture, and move aperture library to an external drive.  I tried the import first, but there wasn't enough space.  Then I tried copying over the aperture library onto the external drive but it failed bc it said file was in use. 
    As it is, I only have 50gb left on my imac, and the aperture library is 150gb.  Also, I have over 10k images in both libraries combined and there are tons of duplicates that need to be sorted, and hopefully not messed up because I've organized most of them.
    So in short, I need to know how to do the following:
    -select photos in finder in aperture/iphoto libraries
    -move aperture library to live on external drive
    -import iphoto library into aperture library
    -eliminate dups but maintain organization
    -moving forward i need a better workflow so that I import images from camera, and can organize right away into albums rather than creating projects by default and then creating albums so essentially the photos are in 2 different places, even tho they are referenced
    -live happily ever after
    Thanks in advance for any support you can offer!!

    If you're using apps like iPhoto or Aperture then they replace the Finder for managing your photos. The point is that you use the (many) options available via these apps for the things you want and need to do with the Photos.
    So, simply, you don't select the photos in the Finder. I'll append the supported ways to do this - which are faster and will yield the current version of your Photos - to the end of this post.
    -move aperture library to live on external drive
    Managed or Referenced Library? Managed -
    Make sure the drive is formatted Mac OS Extended (Journaled)
    1. Quit Aperture
    2. Copy the Library from your Pictures Folder to the External Disk.
    3. Hold down the option (or alt) key while launching Aperture. From the resulting menu select 'Choose Library' and navigate to the new location. From that point on this will be the default location of your library.
    4. Test the library and when you're sure all is well, trash the one on your internal HD to free up space.
    Referenced -  relocate your Masters first.
    These issues are covered in the Manual and on this forum hundreds of times.
    -import iphoto library into aperture library
    FIle -> Import -> iPhoto Library? Have you done this already? If so are you trying to move the Masters to Aperture from an  iPhoto Library? Or Consolidate them?
    -moving forward i need a better workflow so that I import images from camera, and can organize right away into albums rather than creating projects by default and then creating albums so essentially the photos are in 2 different places, even tho they are referenced
    You can't. Every photo is in a Project.  They’re the basic building blocks of the Library.
    You might want to spend a little time with the manual or the video tutorials. I'm not sure you've grasped the app  you've purchased.
    The following is written for iPhoto, but about 97% works for Aperture too.
    There are many, many ways to access your files in iPhoto/ APerture:   You can use any Open / Attach / Browse dialogue. On the left there's a Media heading, your pics can be accessed there. Command-Click for selecting multiple pics. This is what you use to attach your shot to your GMail
    (Note the above illustration is not a Finder Window. It's the dialogue you get when you go File -> Open)
    You can access the Library from the New Message Window in Mail:
    There's a similar option in Outlook and many, many other apps.  If you use Apple's Mail, Entourage, AOL or Eudora you can email from within iPhoto/ Aperture.
    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.
    If you want to access the files with iPhoto/ Aperture not running:
    For users of 10.6 and later:  You can download a free Services component from MacOSXAutomation  which will give you access to the Library from your Services Menu.
    Using the Services Preference Pane you can even create a keyboard shortcut for it.
    or use this free utility Karelia iMedia Browser

  • TS2972 I assume my Apple TV should allow me to view all events,albums and slideshows but It only allows four events to display on my TV. I'm using a Optus mini Wi Fi for my home network. Could this be the reason for limited access via my iMac computer? Ch

    I assume my Apple TV should allow me to view all events, albums and slideshows in my iPhotos app but it only allows four events and four albums to display on my television. I'm using a Optus mini Wi Fi for my home network. Could this be the reason for limited access via my iMac computer?
    Chris

    No, I have not chosen photos to share as I assumed that the Apple TV would access all photos and music that are stored on my iMac. 
    Thanks for your advice. I will check it out.
    Chris

  • Just bought an ipad2 for my wife and d display is not as sharp as mine and it gets warm when in use and mine does not. Mine is 32gb and hers is 16gb

    Just bought an ipad2 for my wife and d display is not as sharp as mine and it gets warm when in use and mine does not. Mine is 32gb and hers is 16gb

    Bunzez-
    I agree.  Mine is 64gb, and the most warmth I notice seems to be where I was holding it.
    The result of excess heat would be that its battery would run down faster than it should.  With a full charge, it should run at least eight hours, maybe ten.  Someone mentioned that their iPad charge went down ten percent per hour.
    The iPad normally stays on all the time, and is put to sleep by pressing the Sleep button.  In the sleep mode, it draws extremely low current, so the battery does not run down for many days.  With yours in the sleep mode, does it still get hot?
    Regardless, I think the display problem is reason enough to take it to the Apple Store Genius.  If there is no Apple Store near you, look for an Apple Authorized Repair Center.  There may be one in your city.  In the US, <United States>.  Outside the US, <http://support.apple.com/kb/ht1434>.
    Fred

Maybe you are looking for

  • Having problems installing Acrobat X Pro on Windows 7.

    When the installation is about to end, I get the following: Has anyone experienced this issue? I would appreciate your feedback. Thanks.

  • How adutilities comes to know that the file system is shared file system

    How adutilities comes to know that the file system is shared file system ? In multinode shared file system : if we want genearte message file we can invoke adadmin from any node and perform this activity. In this case, how adadmin knows that the file

  • Missing Plugin 2.0 on Apple Site

    Where is the download for the Apple Endnote Plugin 2.0?  I get a dead link error page when I try to download it from the Apple support page.  I'm using Mavericks. Pages 5.2 Endnote X6 Thanks, Kenneth

  • Can the rescue and recovery function be infect with a trojan virus?

    I had some trouble with trojan viruses. My scan software detected malware on my system which I deleted with the help of the antivirus software antivir (free version) and with the software malwarebytes. My thinkpad r51 is still running and virus scans

  • I want to upgrade my RAM, can I?

    Hi there, I want to upgrade my RAM to as much as possible for my model. I checked my MacBook's tech specs on the internet via my serial number: Intro Date: February 24, 2011 Disc Date: October 24, 2011 Order No: Model No: A1286 (EMC 2353-1*) Subfamil