How to make Aperture use new drive

Hi
I recently bought a new 3TB HDD to replace my 1TB drive which was nearly full. How do I copy my existing files across and make Aperture continue to read them from its database?
Regards
Mark

Thanks, Matthew, but I don't think I gave enough details. I have my aperture library file on the main drive under ~/Pictures. The raw files from my camera are on the external 1TB drive called Elements, as referenced files. On the external drive is a system of folders like this /Volumes/Elements/Photos/Aperture/2012/06, and within that the raw files downloaded from my camera for that day.
So the issue is how to harmonize the library on the iMac with the referenced files on the external drive.

Similar Messages

  • How to make OLAPDATAGRID use AS3

    How to make OLAPDATAGRID use AS3? I make like this and have a
    problem lease halp me type simple example!
    [Attach Code]
    package My
    import mx.collections.ArrayCollection;
    import mx.collections.IList;
    import mx.controls.Alert;
    import mx.controls.OLAPDataGrid;
    import mx.olap.IOLAPCube;
    import mx.olap.IOLAPDimension;
    import mx.olap.IOLAPQuery;
    import mx.olap.IOLAPQueryAxis;
    import mx.olap.OLAPAttribute;
    import mx.olap.OLAPCube;
    import mx.olap.OLAPDimension;
    import mx.olap.OLAPHierarchy;
    import mx.olap.OLAPLevel;
    import mx.olap.OLAPMeasure;
    import mx.olap.OLAPQuery;
    import mx.olap.OLAPResult;
    import mx.olap.OLAPSet;
    import mx.rpc.AsyncResponder;
    import mx.rpc.AsyncToken;
    public class OlapDGCreator
    [Bindable]
    private var flatData:ArrayCollection = new ArrayCollection(
    {otd:"div1",pos:"programmer",year:2007,quarter:"q1",zp:20000},
    {otd:"div1",pos:"manager",year:2007,quarter:"q1",zp:15000},
    {otd:"div2",pos:"programmer",year:2007,quarter:"q1",zp:25000},
    {otd:"div2",pos:"manager",year:2007,quarter:"q1",zp:23000},
    {otd:"div1",pos:"programmer",year:2007,quarter:"q2",zp:21000},
    {otd:"div1",pos:"manager",year:2007,quarter:"q2",zp:16000},
    {otd:"div2",pos:"programmer",year:2007,quarter:"q2",zp:27000},
    {otd:"div2",pos:"manager",year:2007,quarter:"q2",zp:24000},
    public var str:String = "";
    public var ODG:OLAPDataGrid = new OLAPDataGrid();
    public var MyCube:OLAPCube = new OLAPCube("otchet");
    public function OlapDGCreator()
    MyCube.dataProvider=flatData;
    var m:OLAPMeasure = new OLAPMeasure("ZP");
    m.aggregator="SUM";
    m.dataField="zp";
    var a:IList = new ArrayCollection();
    a.addItem(m);
    var dimDateTime:OLAPDimension = new
    OLAPDimension("DateTime","DateTime");
    dimDateTime.cube=MyCube;
    dimDateTime.name="DateTime";
    var hierDataTime:OLAPHierarchy = new
    OLAPHierarchy("hierDataTime","displayHierDataTime");
    var l1:OLAPLevel = new OLAPLevel("Year","Year")
    var l2:OLAPLevel = new OLAPLevel("Quarter","Quarter")
    hierDataTime.levels.addItem(l1);
    hierDataTime.levels.addItem(l2);
    var att1:OLAPAttribute = new OLAPAttribute("Year","Year")
    att1.dataField="year";
    att1.name="Year";
    var att2:OLAPAttribute = new
    OLAPAttribute("Quarter","quarter")
    att2.dataField="quarter";
    att2.name="Quarter";
    dimDateTime.attributes.addItem(att1)
    dimDateTime.attributes.addItem(att2)
    dimDateTime.hierarchies.addItem(hierDataTime);
    var dimDivDim:OLAPDimension = new
    OLAPDimension("DivDim","DivDim");
    dimDivDim.cube=MyCube;
    dimDivDim.name="DivDim";
    var hierDivDim:OLAPHierarchy = new
    OLAPHierarchy("hierDivDim","displayHierDivDim");
    var dd_l1:OLAPLevel = new OLAPLevel("Otd","Otd")
    var dd_l2:OLAPLevel = new OLAPLevel("Pos","Pos")
    hierDivDim.levels.addItem(dd_l1);
    hierDivDim.levels.addItem(dd_l2);
    var dd_att1:OLAPAttribute = new OLAPAttribute("Otd","Otd")
    dd_att1.dataField="otd";
    dd_att1.dimension=dimDivDim;
    var dd_att2:OLAPAttribute = new OLAPAttribute("Pos","Pos")
    dd_att2.dataField="pos";
    dd_att2.dimension=dimDivDim;
    dimDivDim.attributes.addItem(dd_att1);
    dimDivDim.attributes.addItem(dd_att2);
    dimDivDim.hierarchies.addItem(hierDivDim);
    MyCube.dimensions.addItem(dimDateTime);
    MyCube.dimensions.addItem(dimDivDim);
    MyCube.measures = a
    MyCube.refresh();
    //MyCube.measures.addEventListener("www",test);
    //MyCube.addEventListener(CubeEvent.CUBE_COMPLETE,runQuery)
    runQuery();
    //запустили
    выражение
    // Create the OLAP query.
    private function getQuery(cube:IOLAPCube):IOLAPQuery {
    // Create an instance of OLAPQuery to represent the query.
    var query:OLAPQuery = new OLAPQuery;
    // Get the row axis from the query instance.
    var rowQueryAxis:IOLAPQueryAxis =
    query.getAxis(OLAPQuery.ROW_AXIS);
    // Create an OLAPSet instance to configure the axis.
    var otdSet:OLAPSet = new OLAPSet;
    // Add the Product to the row to aggregate data
    // by the Product dimension.
    var tmp:IOLAPDimension = cube.findDimension("DivDim");
    var tmp2:OLAPDimension = cube.dimensions[0];
    otdSet.addElements(OLAPAttribute(OLAPDimension(cube.dimensions[1]).attributes[0]).childre n);//zah
    otdSet.addElements(cube.findDimension("DivDim").findAttribute("Otd").children);
    // Add the OLAPSet instance to the axis.
    var posSet:OLAPSet = new OLAPSet;
    // Add the Product to the row to aggregate data
    // by the Product dimension.
    posSet.addElements(OLAPAttribute(OLAPDimension(cube.dimensions[1]).attributes[1]).childre n);//zah
    posSet.addElements(cube.findDimension("DivDim").findAttribute("Pos").children);
    // Add the OLAPSet instance to the axis.
    rowQueryAxis.addSet(otdSet.crossJoin(posSet));
    // Get the column axis from the query instance, and
    configure it
    // to aggregate the columns by the Quarter dimension.
    var colQueryAxis:IOLAPQueryAxis =
    query.getAxis(OLAPQuery.COLUMN_AXIS);
    var yearSet:OLAPSet= new OLAPSet;
    yearSet.addElements(OLAPAttribute(OLAPDimension(cube.dimensions[0]).attributes[0]).childr en);//zah
    yearSet.addElements(cube.findDimension("DateTime").findAttribute("Year").children);
    var quarterSet:OLAPSet= new OLAPSet;
    quarterSet.addElements(OLAPAttribute(OLAPDimension(cube.dimensions[0]).attributes[1]).chi ldren);//zah
    //quarterSet.addElements(cube.findDimension("DateTime").findAttribute("Quarter").children );
    colQueryAxis.addSet(yearSet.crossJoin(quarterSet));
    return query;
    // Event handler to execute the OLAP query
    // after the cube completes initialization.
    // private function runQuery(event:CubeEvent):void {
    private function runQuery():void {
    // Get cube.
    //var cube:IOLAPCube = IOLAPCube(event.currentTarget);
    var cube:IOLAPCube = IOLAPCube(this.MyCube);
    // Create a query instance.
    var query:IOLAPQuery = getQuery(cube);
    // Execute the query.
    var token:AsyncToken = cube.execute(query);
    // Setup handlers for the query results.
    token.addResponder(new AsyncResponder(showResult,
    showFault));
    // Handle a query fault.
    private function showFault(result:Object, token:Object):void
    Alert.show("Error in query.");
    // Handle a successful query by passing the query results to
    // the OLAPDataGrid control..
    private function showResult(result:Object,
    token:Object):void {
    if (!result) {
    Alert.show("No results from query.");
    return;
    ODG.dataProvider= result as OLAPResult;
    [/Attach Code]

    Here is the fixed code. I would have loved to re-organize the
    code but left it as is so that you can diff the files and make a
    note of the differences.
    package
    import mx.collections.ArrayCollection;
    import mx.controls.Alert;
    import mx.controls.OLAPDataGrid;
    import mx.events.CubeEvent;
    import mx.olap.IOLAPCube;
    import mx.olap.IOLAPDimension;
    import mx.olap.IOLAPQuery;
    import mx.olap.IOLAPQueryAxis;
    import mx.olap.OLAPAttribute;
    import mx.olap.OLAPCube;
    import mx.olap.OLAPDimension;
    import mx.olap.OLAPHierarchy;
    import mx.olap.OLAPLevel;
    import mx.olap.OLAPMeasure;
    import mx.olap.OLAPQuery;
    import mx.olap.OLAPResult;
    import mx.olap.OLAPSet;
    import mx.rpc.AsyncResponder;
    import mx.rpc.AsyncToken;
    public class OlapDGCreator
    [Bindable]
    private var flatData:ArrayCollection = new ArrayCollection(
    {otd:"div1",pos:"programmer",year:2007,quarter:"q1",zp:20000},
    {otd:"div1",pos:"manager",year:2007,quarter:"q1",zp:15000},
    {otd:"div2",pos:"programmer",year:2007,quarter:"q1",zp:25000},
    {otd:"div2",pos:"manager",year:2007,quarter:"q1",zp:23000},
    {otd:"div1",pos:"programmer",year:2007,quarter:"q2",zp:21000},
    {otd:"div1",pos:"manager",year:2007,quarter:"q2",zp:16000},
    {otd:"div2",pos:"programmer",year:2007,quarter:"q2",zp:27000},
    {otd:"div2",pos:"manager",year:2007,quarter:"q2",zp:24000},
    public var str:String = "";
    public var ODG:OLAPDataGrid = new OLAPDataGrid();
    public var MyCube:OLAPCube = new OLAPCube("otchet");
    public function OlapDGCreator()
    MyCube.dataProvider=flatData;
    var m:OLAPMeasure = new OLAPMeasure("ZP");
    m.aggregator="SUM";
    m.dataField="zp";
    //var a:IList = new ArrayCollection();
    //a.addItem(m);
    var dimDateTime:OLAPDimension = new
    OLAPDimension("DateTime","DateTime");
    //dimDateTime.cube=MyCube;
    //dimDateTime.name="DateTime";
    var hierDataTime:OLAPHierarchy = new
    OLAPHierarchy("hierDataTime","displayHierDataTime");
    var l1:OLAPLevel = new OLAPLevel("Year","Year")
    l1.attributeName = "Year";
    var l2:OLAPLevel = new OLAPLevel("Quarter","Quarter")
    l2.attributeName = "Quarter";
    //hierDataTime.levels.addItem(l1);
    //hierDataTime.levels.addItem(l2);
    hierDataTime.levels = new ArrayCollection([l1, l2]);
    var att1:OLAPAttribute = new OLAPAttribute("Year","Year")
    att1.dataField="year";
    //att1.name="Year";
    var att2:OLAPAttribute = new
    OLAPAttribute("Quarter","quarter")
    att2.dataField="quarter";
    //att2.name="Quarter";
    //dimDateTime.attributes.addItem(att1)
    //dimDateTime.attributes.addItem(att2)
    dimDateTime.attributes = new ArrayCollection([att1, att2]);
    //dimDateTime.hierarchies.addItem(hierDataTime);
    dimDateTime.hierarchies = new
    ArrayCollection([hierDataTime]);
    var dimDivDim:OLAPDimension = new
    OLAPDimension("DivDim","DivDim");
    //dimDivDim.cube=MyCube;
    //dimDivDim.name="DivDim";
    var hierDivDim:OLAPHierarchy = new
    OLAPHierarchy("hierDivDim","displayHierDivDim");
    var dd_l1:OLAPLevel = new OLAPLevel("Otd","Otd")
    dd_l1.attributeName = "Otd";
    var dd_l2:OLAPLevel = new OLAPLevel("Pos","Pos")
    dd_l2.attributeName = "Pos";
    //hierDivDim.levels.addItem(dd_l1);
    //hierDivDim.levels.addItem(dd_l2);
    hierDivDim.levels = new ArrayCollection([dd_l1, dd_l2]);
    var dd_att1:OLAPAttribute = new OLAPAttribute("Otd","Otd")
    dd_att1.dataField="otd";
    //dd_att1.dimension=dimDivDim;
    var dd_att2:OLAPAttribute = new OLAPAttribute("Pos","Pos")
    dd_att2.dataField="pos";
    //dd_att2.dimension=dimDivDim;
    //dimDivDim.attributes.addItem(dd_att1);
    //dimDivDim.attributes.addItem(dd_att2);
    //dimDivDim.hierarchies.addItem(hierDivDim);
    dimDivDim.attributes = new ArrayCollection([dd_att1,
    dd_att2]);
    dimDivDim.hierarchies = new ArrayCollection([hierDivDim]);
    //MyCube.dimensions.addItem(dimDateTime);
    //MyCube.dimensions.addItem(dimDivDim);
    //MyCube.measures = a
    MyCube.elements = [dimDateTime, dimDivDim, m];
    MyCube.refresh();
    //MyCube.measures.addEventListener("www",test);
    MyCube.addEventListener(CubeEvent.CUBE_COMPLETE,runQuery)
    // Create the OLAP query.
    private function getQuery(cube:IOLAPCube):IOLAPQuery {
    // Create an instance of OLAPQuery to represent the query.
    var query:OLAPQuery = new OLAPQuery;
    // Get the row axis from the query instance.
    var rowQueryAxis:IOLAPQueryAxis =
    query.getAxis(OLAPQuery.ROW_AXIS);
    // Create an OLAPSet instance to configure the axis.
    var otdSet:OLAPSet = new OLAPSet;
    // Add the Product to the row to aggregate data
    // by the Product dimension.
    var tmp:IOLAPDimension = cube.findDimension("DivDim");
    var tmp2:OLAPDimension = cube.dimensions[0];
    otdSet.addElements(OLAPAttribute(OLAPDimension(cube.dimensions[1]).attributes[0]).children );//zah
    otdSet.addElements(cube.findDimension("DivDim").findAttribute("Otd").children);
    // Add the OLAPSet instance to the axis.
    var posSet:OLAPSet = new OLAPSet;
    // Add the Product to the row to aggregate data
    // by the Product dimension.
    posSet.addElements(OLAPAttribute(OLAPDimension(cube.dimensions[1]).attributes[1]).children );//zah
    posSet.addElements(cube.findDimension("DivDim").findAttribute("Pos").children);
    // Add the OLAPSet instance to the axis.
    rowQueryAxis.addSet(otdSet.crossJoin(posSet));
    // Get the column axis from the query instance, and configure
    it
    // to aggregate the columns by the Quarter dimension.
    var colQueryAxis:IOLAPQueryAxis =
    query.getAxis(OLAPQuery.COLUMN_AXIS);
    var yearSet:OLAPSet= new OLAPSet;
    yearSet.addElements(OLAPAttribute(OLAPDimension(cube.dimensions[0]).attributes[0]).childre n);//zah
    yearSet.addElements(cube.findDimension("DateTime").findAttribute("Year").children);
    var quarterSet:OLAPSet= new OLAPSet;
    quarterSet.addElements(OLAPAttribute(OLAPDimension(cube.dimensions[0]).attributes[1]).chil dren);//zah
    //quarterSet.addElements(cube.findDimension("DateTime").findAttribute("Quarter").children) ;
    colQueryAxis.addSet(yearSet.crossJoin(quarterSet));
    return query;
    // Event handler to execute the OLAP query
    // after the cube completes initialization.
    // private function runQuery(event:CubeEvent):void {
    private function runQuery(event:Event):void {
    // Get cube.
    //var cube:IOLAPCube = IOLAPCube(event.currentTarget);
    var cube:IOLAPCube = IOLAPCube(this.MyCube);
    // Create a query instance.
    var query:IOLAPQuery = getQuery(cube);
    // Execute the query.
    var token:AsyncToken = cube.execute(query);
    // Setup handlers for the query results.
    token.addResponder(new AsyncResponder(showResult,
    showFault));
    // Handle a query fault.
    private function showFault(result:Object, token:Object):void
    Alert.show("Error in query.");
    // Handle a successful query by passing the query results to
    // the OLAPDataGrid control..
    private function showResult(result:Object, token:Object):void
    if (!result) {
    Alert.show("No results from query.");
    return;
    ODG.dataProvider= result as OLAPResult;

  • How to make the CD/DVD drive compatible on Satellite 5000-204

    Hi all,
    I see a thread on replacing CD/DVD drive on this notebook, but it was closed, so i write this post.
    The most of recent unit is "cable select" type and will not be recognized from many Toshiba notebook.
    To solve that you must search a drive for which you can found a firmware update that change it to be "reverse cable select" type, as Nec or Optiarc
    If you buy a drive that can't be recognize (like me) read below.
    I succesfully replaced the DVD-ROM/CD-RW unit with a Pioneer DVR-KD08 DVD writer.
    This unit is a "cable select" type (as most other recent unit) so it can't be recognise by this notebook (and many other Toshiba models). The solution is to connect pin 45 and 47 together on the drive or on the connector adapter (this second solution is simpler).
    If you watch the drive from behind these pins are the second and third from the left on the upper row of pin of the connector.
    In the connector adapter it's simpler to connect these pin (with care) with a solder iron directly on the circuit board.
    Obviously on the circuit board the pins are the second and third from the right.
    After this the unit will recognize ok.

    Hi buddy
    First of all thank you for participation in the forum its always nice to have users who shares the own experience and knowledge.
    Thanks you also for this info how to make the CD/DVD drive compatible.
    But to be honest Im a little bit skeptical because there is a chance that the drive could be damage during this procedure.
    So everyone could do this but only at the own risk!!!
    Usually the compatible drives can be found in the user manual and it would be useful taking a look into the user manual before buying an NOT compatible drive ;)
    Cheers mate

  • I have a $10 gift card balance on my Apple ID but when I try to rent a movie it wants me to use my debit card. How can Make it use the iTunes credit?

    I have a $10 gift card balance on my Apple ID but when I try to rent a movie it wants me to use my debit card. How can Make it use the iTunes credit?

    Hi ...
    Select None for payment method > iTunes Store: Changing account information
    Be aware, an auto renewing subsciption by require a credit card.

  • How do i find a new driver for itunes?

    how do i get a new driver for my 2nd_gen ipod nano?  it wouldn't sync and when i ran a test it said the device couldn't be found.  when i tried to click on itunes it said i didn't have a driver for it anymore.  is there anyway to get another driver without losing everything i have in itunes?

    Hello there,
    I would start with this Apple support article related to your issue.
    http://support.apple.com/kb/ts1496
    B-rock

  • How do I add a new drive to a degraded MIRRORED  RAID set?

    My mirrored raid said it was degraded because one of the drives had a failure.
    Today I unplugged the faulty drive and inserted a new one.
    So far so good.
    I erased the new drive.
    Then I went into disk utility and followed the instructions in the help about RAID but I cannot see how to add this new drive to the RAID.
    I'm confused.
    1) The data is all on the RAID (the good, original slice) so can I add a new slice?
    2) how do I do it?
    Many thanks

    I don't recommend the Apple hardware RAID card, and it doesn't work with off the shelf drives. If you are using drives in RAID, first make sure they are RAID Edition or lacking that Enterprise. Same make/model/firmware.
    If using Seagate, avoid anything prior to 7200.12 series. If WD the RE2/3 series.
    Rebuilds are slow, and one reason why I recommend 3 drives, even if you lose one you are covered still.
    Of course just having two backups per volume is more important and comes first; mirrors are great for live editing and recording (audio) but otherwise... I'd stick to stripe and redundant backups. Only if you need 24/7. Otherwise, forget mirror.

  • How to move MACOS to new drive?

    How do I upgrade to a new drive - MACOS Lion installed?

    Exactly how Niel says.
    Make sure you erase/format your new hard drive using disk utility.
    Format it as MAC OS Extended Journaled then proceed to clone it using carbon copy.
    Once done, install your new drive in your macbook and use your old drive as a back up drive.

  • IX4-300D how do I import a new drive into RAID 5 Array?

    I already had a 3 x 2TB RAID 5 array, added new forth drive (same 2TB drive model) and let it auto format, which completed OK, but when I look at Status in Admin I see "Unallocated 1.8TB". This tells me the drive was formated but not imported into the Array.
    Looking at Drive Management Page it shows all four drives installed but offers no actions, you cannot even select a drive to display or take action on.
    Going into Settings only shows the settings I used to create the RAID 5 initially, no other options. I would expect a workflow of right click new drive and select to import into RAID 5.
    Looking in the help section no detail on RAID only a basic comment on what RAID is.
    Something badly missing here. Is there some info I have missed?
    Peter

     Hello 2Old2Slow
    I highly recommend that you do make plans to backup your data from the unit before attempting to expand the RAID just in case something goes wrong in the process.  
    When trying to expand an existing RAID 5 from 3 to 4 disks, you can use the "add disks to storage system" option that is located in Drive Management>Settings.  This option will become available after a new drive is added to the empty drive and the unit is powered back on.  It may need to overwrite the new disk, it will indicate which disk is being overwritten by marking the new drive with green stripes.  If you are being asked to overwrite data but none of the disks show green stripes, please stop and backup first as proceeding will most likely result in all disks being overwritten. 
    LenovoEMC Contact Information is region specific. Please select the correct link then access the Contact Us at the top right:
    US and Canada: https://lenovo-na-en.custhelp.com/
    Latin America and Mexico: https://lenovo-la-es.custhelp.com/
    EU: https://lenovo-eu-en.custhelp.com/
    India/Asia Pacific: https://lenovo-ap-en.custhelp.com/
    http://support.lenovoemc.com/

  • How to make udev load ALSA driver automaticly?

    I have added " modprobe snd-via82xx " (ALSA driver) to /etc/profile.d/mysh.sh, and I could use almost every multimedia software except mp3blaster.
    But after I installed udev, the udev load "via82cxxx_audio"  (OSS driver) automaticly instead of snd-via82xxx. mp3blaster can work now, but the esd output plug-in of XMMS could not work, so did stardict (is here anyone have ever used it?).
    I modprobe snd-via82xxx manually, but have no use.
    How to make OSS and ALSA work parallelly? And, how to make udev load ALSA automacticly instead of OSS?

    I have knew this method. What I mean is that the udev load OSS driver at boot. Although I modprobe the ALSA driver,  my software (stardict) can not play a wav sound (Other software can).
    I wants udev NOT to load OSS driver at boot. Or, it is the best, make OSS and ALSA work parallelly,

  • HT1338 how to make space on startup drive?

    how to make space on start up drive?

    Use http://monolingual.sourceforge.net/ to remove unwanted languages - DO NOT remove anything else with it.
    Install http://links.zero.eu.org/os-x/period/ to clear out very old log files etc
    Paste the following into open Terminal (in Utilities) window and then hit return - give password when asked and hit return again - takes a while but it will list your 100 largest files:
    cd / ; sudo du -caxk .[!.]* *| sort -rn | head -100  
    Keep backups on an external drive.
    Put photos on DVDs and not your Mac.

  • How to make a bootable flash drive Disk Utility's "Owners Enabled" function

    Being as Apple does not have a discussion group for this wonderful little utility and because Apple has neglected to fix the "Post New Topic" link in the "Special Interest Area>User Tips Library", I have no choice but to post here. I think what I found is useful and I have accomplished it in a way that avoids the need of using the disheartening Terminal.
    How to create a bootable flash drive:
    Step 1: Obtain a flash drive (e.g., 8GB USB flash SanDisk), OS cd

    and because Apple has neglected to fix the "Post New Topic" link in the "Special Interest Area>User Tips Library", I have no choice but to post here.
    http://discussions.apple.com/message.jspa?messageID=10672620#10672620

  • How to make dvd on new iMovie

    I just realized that the new iLife does not include iDVD.  Does anyone have any advice on how to make a DVD of a slideshow trailer I made in iMovie.  I guess Apple decided that making DVDs is obsolete.  Unfortunately my 90 yo Grandma does not think so and she would love to see the Birthday slideshow we made for her on a DVD player or laptop. 
    Alternatively, how do I move the iDVD software from my old iMac (OSX 10.5.8) to my new iMac (with Lion)?  I just tried burning the application onto a DVD (drag the iDVD icon to a disc) and transferring it that way but somehow it didn't bring over the themes and I was not able to use it on my new iMac.

    Do you still have the install disk with iDVD7 on it? That would be the only way to install it on your new iMac.
    Otherwise you will have to purchase iLife 11 - soon before they stop selling it!

  • How long will allocating a new drive take?

    Currently, we have a Xserve with a RAID 5 array with 6 drives allocated and one hot spare. I am going to add the hot spare to be a regular part of the array. They are all 500GB modules. Can anyone give me an idea of how long it will take to allocate the new drive space? I know it took about 3 days to initialize the original 6 drives. Should I expect that it will take a much shorter time, or is it just about the same regardless of how many drives it is allocating?
    TIA.

    Just to clarify- you know that you will need to
    remove the HFS+ filesystem and replace it with a new
    file system in order to utilize the additional space.
    (Backup, erase, make new volume, restore data)
    Good point. I didn't even think that far into it. Thank you very much for your reply. This will help plan it all out.
    Mac Pro Quad Xeon 2.0   Mac OS X (10.4.7)  

  • Hard drive crashed...  How to sync Iphone with New Drive?

    My hard drive crashed on my Macbook, I installed a new drive... How to I sync my Iphone without loosing applications, photos, pix,movies and contacts?

    You should have a back-up of important info/music/pix/etc on an external source fro this very reason.
    The iphone is not a storage device.
    Assuming you don't back-up your info:
    I think you can re-download Apps from the same itunes account.
    Itunes purchased music can be transferred with iphone attached - in itunes click File>Transfer Purchases.
    Pix can be e-mailed to yourself one at a time. The photos are optimized for viewing on iphone and will be of much lower quality than the original.
    If you enter at least one contact and calendar entry in your computer, before syncing, you will get the option to merge.
    The pic and music sync is one-way, computer to iphone.
    Unless you can find a 3rd party app that you can trust, the rest is lost.
    This would be a good time to begin backing up your important info.

  • How to make and use customised DataSource

    Hi Gurus. If we are not making cubes for Inventory etc for which DS is already available, how can we create data sources in order to load the desired data in BW.means if Database fields are entirely different
    kind regards
    rajesh

    Hi,
    Customised extractors are called Generic extracters.
    Usage:
    1. When the standard extractors are not supporting the extraction what you need. If SAP does not have a standard extractor for your need to get data from R3, you would have to go for generic extractor.
    2. If you create a custom object say by combining certain base tables in R3 say custom tables ZTAB1 and ZTAB2. These two tables are not SAP provided tables and there will not be any standard extractors. So cases like this you will have to go for generic extractors.
    3. FI-SL requires generic extractors.
    How:
    You have to use RSO2 transaction and you can also set delta based on, one of the three characteristics such as timestamp, calday or pointer (a sequence no).
    once you create it and activate it. The extractor will be available in ROOSOURCE - (table in R3 where all the data sources are available).
    Steps
    Log on sap R/3.
    Step 1. create a table or view for generic extraction in se11.
    Step 2. Goto  t-code RSO2
    Step 3. Here u have to decide whether to extract transaction data or master data attributes or texts.
    Step 4. suppose if u have opted for transaction data,then give name in the column ex:ztd_m(data source name)
    Step 5. select create button,this will take u to another screen.
    Step 6. Here u have to decide from which application component u r extacting data.Ex: SD,MM,..
    Step 7. in this screen u have to fill short disciption,medium,long( these r mandatory).
    Step 8. then U have to Table name or view name which u have created in se11.
    Step 9. I f u want to maintain generic delta then u can select generic delta in top left hand side corner.
    Step 10. in next screen u have to give some field which is primary key.
    step 11. here u to specify whether time stamp or cal day or numeric pointer depending on u r requirement.
    step 12. then u have to specify  whether new status for changed records or additive delta.
            If u choose additive delta ,then u have to load data to infocube or ods object.
            If u choose new status for changed records, then u to load data  to ods object only.
    Step 13. then save it.
    Step 14. then logon to sap bw ,then replicate the data source then as usuall.
    Refer:
    /people/siegfried.szameitat/blog/2005/09/29/generic-extraction-via-function-module
    Generic Extraction with Table, View, FM & Infoset
    Creating a datasource for generic extraction
    Generic Extraction
    Customer and Generic extraction difference ?
    generic extraction
    Re: Generic extractors
    generic extraction
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/d3219af2-0c01-0010-71ac-db
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/84bf4d68-0601-0010-13b5-b0
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/84bf4d68-0601-0010-13b5-b0
    http://help.sap.com/saphelp_nw04/helpdata/en/3f/548c9ec754ee4d90188a4f108e0121/content.h
    http://help.sap.com/saphelp_nw04/helpdata/en/3f/548c9ec754ee4d90188a4f108e0121/content.htm
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/84bf4d68-0601-0010-13b5-b062adbb3e33
    Re: Generic Extractor - Delta
    Thanks,
    JituK

Maybe you are looking for

  • Help in abap list report printing

    Dear all,i did a customized list report using abap.the usual size for report print out is A4 which is line-count 65 and line-size  255. but for this report,my line-size is 296. i define at the begining of my program with "REPORT ZMM_STKVAL_VIEW LINE-

  • Variables and Actions in Adobe Acrobat Connect Pro

    Hello Gurus, I have been searching different forums around the net for three days, so I am really frustrated since I cant find anything related to this, and I am even thinking if this is really possible. I'll try to explain what I wanted to make. I a

  • JAVA Browser Plugin for Mozilla on Linux Debian

    Hi! I run a Mozilla Firefox (iceWeasel) on a DEBIAN. It does NOT display german or french special characters like "Umlaute öäüÄÖÜß" and alike properly. The text is displayed within an Applet from a 3rd Party, so i can only change the text which is di

  • Image from Database

    I have a Table with ReportElements. Every Element have a ID (ReportElementID) and a String (reportElementValue) or a Image (ReportElementBLOB). To show the String in my report I use a SQL-Formular: "sqlCompanyName" - "(SELECT ReportElements.ReportEle

  • Disaster Recovery Plan

    We're running xMII 11.5 SP3 in a three-tiered centralized server environment (Development, Staging and Production).  We plan on having a project up and running in production by October 1.  Before we do so, however, we need to develop a disaster recov