Is Metadata Backup possible to be automated through taskflows?

Hi,
I wanted to know if metadata backup is possible through taskflows. I am aware that there is an Extract Data in the Actions when you create a taskflow but where do the files go after being extracted? Can I specify a specific server or path for its location? If yes, where can i define it?
I hope you could help me out :)
thank you!

Which product do you want to back up the metadata, which version are you on
Cheers
John
http://john-goodwin.blogspot.com/

Similar Messages

  • Updated iPad 1 to IOS 5. When trying to restore my iPad from my backup it gets half way through and the iPad reboots and iTunes says "An error occurred while restoring this iPad (-1)"

    Updated iPad 1 to IOS 5. When trying to restore my iPad from my backup it gets half way through and the iPad reboots and iTunes says "An error occurred while restoring this iPad (-1)"
    I have tried to restore my contacts and company data at least 20 times and every time half way through THE iPAD REBOOTS! When it boots back up it is at the brand new iPad screen.
    This makes me angry as I do not use the iPad for fun and games. I use it for business. My company data and records for the last year are gone. ALL of my out standing customer invoices are gone. ALL payments received are gone! ALL Business contacts and emails ARE GONE! All my company, personal email accounts and settings ARE GONE!
    What am I supposed to do now? In 6 hours I have to get on the road and conduct business with a empty blank factory out of the box iPad. How am I supposed to know who owes me money or who has paid their bills Apple? All of my meetings and calendar dates are GONE!
    Everything was supposed to be backed up and restored after the update!
    Question???WHY DID YOU MAKE THIS UPDATE WIPE OUT ALL SETTINGS AND APPS ON THE iPAD??? All the other updates left everything on the iPad intact and ONLY upgraded the IOS,and when it was done everything was still there.
    Yes! I have done everything. Rebooted computer, checked for updates, Hard booted iPad, Factory restored iPad to ios 5 twice, tried every usb port I have, unplugged all other usb components.
    Everytime half way through "Restoring iPad from backup..." The iPad turns off shows a spinning circle then shows the Apple logo and takes me to the brand new iPad setup screen.
    Apple, you have no idea the level of stress you have created today.....

    Check the console app to see if there are any error messages. I had one app showing an issue (Pet Hotel) the error was (truncated):
    ERROR: Restore message response: 102 rename error: File name too long (63) at path "/var/mobile/Library/SafeHarbor/com.pocketgems.tappethotel/Container/Documents/ savedGameHistory/savedGameHistory/savedGameHistory/savedGameHistory/savedGameHis tory/savedGameHistory/savedGameHistory/savedGameHistory/savedGameHistory/savedGa meHistory/savedGameHistory/savedGameHistory/savedGameHistory/savedGameHistory/sa vedGameHistory/savedGameHistory/savedGameHistory/savedGameHistory/savedGameHisto ry/savedGameHistory/savedGameHistory/savedGameHistory/savedGameHistory/savedGame History/savedGameHistory/savedGameHistory/savedGameHistory/savedGameHistory/save dGameHistory/savedGameHistory/savedGameHistory/savedGameHistory/savedGameHistory /savedGameHistory/savedGameHistory/savedGameHistory/savedGameHistory/savedGameHi story/savedGameHistory/savedGameHistory/savedGameHistory/savedGameHistory/savedG ameHistory/savedGameHistory/savedGameHistory/savedGameHistory/savedGameHistory/s avedGameHistory/savedGameHistory/savedGameHistory/savedGameHistory/savedGameHist ory/savedGameHistory/1313349538-pocket_gems_crash_report.txt" (MBErrorDomain/102)
    I manually snyc'ed that particular app and then re-ran the restore and am now the proud owner of a working iphone. Not sure it is the same problem or app but looking in the console was the key!

  • Hi my iphone was stolen, and i need to retrieve my serial number, i dont have a box is it possible to get it through i tunes?

    hi my iphone was stolen, and i need to retrieve my serial number, i dont have a box is it possible to get it through i tunes?

    well my laptop was formatted and all data along as well, so is there any other way as i only have my login with purchased items on Itunes. Would apple be able t help me out?

  • Access of possibly undefined property number through a reference with static type...

    Hello everyone !
    I run into this problem today ... take a look on the code :
    import com.trick7.effects.TeraFire;
    for (var j:uint=0; j<10; j++) {
        var fire:TeraFire = new TeraFire();
        fire.x = j * 40 + 20;
        fire.y = 100;
        fire.number = j; //This line is causeing the problem
        addChild(fire);
        fire.buttonMode = true;
    TeraFire class creates fire particles. The compiler error is :
    Scene 1, Layer 'Layer 1', Frame 1, Line 7
    1119: Access of possibly undefined property number through a reference with static type com.trick7.effects:TeraFire.
    Anyone can help me to find a solution to this problem.
    I can do that ".number" with a movieclip but not in this case. What can I do ?

    I borrowed that class from the internet.
    I made the changes you suggested: imported flash.Display.MovieClip and also made the class extend MovieClip.
    The error is still throwing in compiler errors. I am not really good enough to edit this class because there are some functions I don't still understand very good. This is the class below:
    package com.trick7.effects{
        import flash.display.BitmapData;
        import flash.display.GradientType;
        import flash.display.MovieClip;
        import flash.events.Event;
        import flash.filters.DisplacementMapFilter;
        import flash.filters.DisplacementMapFilterMode;
        import flash.geom.Matrix;
        import flash.geom.Point;
        import flash.geom.Rectangle;
        public class TeraFire extends MovieClip{
            public var phaseRateX:Number;
            public var phaseRateY:Number;
            private var offsets:Array= [new Point(),new Point()];
            private var seed:Number = Math.random();
            private var fireW:Number;
            private var fireH:Number;
            //火の色
            //private var fireColorIn:uint;
            //private var fireColorOut:uint;
            private var ball:Sprite;
            private var gradientImage:BitmapData;
            private var displaceImage:BitmapData;
            private var focalPointRatio:Number = 0.6;
            private const margin:int = 10;
            private var rdm:Number;
            public function TeraFire(xPos:Number=0, yPos:Number=0, fireWidth:Number=30, fireHeight:Number=90, fireColorIn:uint = 0xFFCC00,fireColorOut:uint = 0xE22D09){
                fireW = fireWidth;
                fireH = fireHeight;
                phaseRateX = 0;
                phaseRateY = 5;
                var matrix:Matrix = new Matrix();
                matrix.createGradientBox(fireW,fireH,Math.PI/2,-fireW/2,-fireH*(focalPointRatio+1)/2);
                var colors:Array = [fireColorIn, fireColorOut, fireColorOut];
                var alphas:Array = [1,1,0];
                var ratios:Array = [30, 100, 220];
                var home:Sprite = new Sprite();
                ball = new Sprite();
                ball.graphics.beginGradientFill(GradientType.RADIAL,colors, alphas, ratios, matrix,"pad","rgb",focalPointRatio);
                ball.graphics.drawEllipse(-fireW/2,-fireH*(focalPointRatio+1)/2,fireW,fireH);
                ball.graphics.endFill();
                //余白確保用透明矩形
                ball.graphics.beginFill(0x000000,0);
                ball.graphics.drawRect(-fireW/2,0,fireW+margin,1);
                ball.graphics.endFill();
                addChild(home);
                home.addChild(ball);
                this.x = xPos;
                this.y = yPos;
                addEventListener(Event.ENTER_FRAME,loop);
                displaceImage = new BitmapData(fireW+margin,fireH,false,0xFFFFFFFF);
                var matrix2:Matrix = new Matrix();
                matrix2.createGradientBox(fireW+margin,fireH,Math.PI/2,0,0);
                var gradient_mc:Sprite = new Sprite;
                gradient_mc.graphics.beginGradientFill(GradientType.LINEAR,[0x666666,0x666666], [0,1], [120,220], matrix2);
                gradient_mc.graphics.drawRect(0,0,fireW+margin,fireH);//drawのターゲットなので生成位置にこだわる必要はない。
                gradient_mc.graphics.endFill();
                gradientImage = new BitmapData(fireW+margin,fireH,true,0x00FFFFFF);
                gradientImage.draw(gradient_mc);//gradient_mcを消す必要は?
                rdm = Math.floor(Math.random()*10);
            private function loop(e:Event):void{
                for(var i:int = 0; i < 2; ++i){
                    offsets[i].x += phaseRateX;
                    offsets[i].y += phaseRateY;
                displaceImage.perlinNoise(30+rdm, 60+rdm, 2, seed, false, false, 7, true, offsets);
                displaceImage.copyPixels(gradientImage,gradientImage.rect,new Point(),null, null, true);
                var dMap:DisplacementMapFilter = new DisplacementMapFilter(displaceImage, new Point(), 1, 1, 20, 10, DisplacementMapFilterMode.CLAMP);
                ball.filters = [dMap];
    I you can clarify a little bit further I would appreciate it a lot because I wasted some good time on this.

  • Call to a possibly undefined method getClipboardContents through a reference with static type flashx.textLayout.edit:ISelectionManager.

    Hi Guys,
    As i am using the nigtly build of TLF 4.0.0.11073.
    I want to copy some text from the TLF, by copy operation. I am getting this type of Error.
    - Call to a possibly undefined method getClipboardContents through a reference with static type flashx.textLayout.edit:ISelectionManager.
    In the previous build, i dont use to get this type of error, but in this nightly builds i am getting this type of error.
    Can anyone help me to fix the same or any workaound.
    Thanks in advance.
    Krishna

    This functionality is still available, but it has moved. It's now in a TextClipboard class, in the same flashx.textLayout.edit package. So you should replace calls to getClipboardFormat() with TextClipboard.getContents().
    Hope this helps,
    - robin

  • Is incremental backup possible for archivelog.

    Hi expert
    i want to plan weekly and daily backup with windows redundancy 14 days.
    full archivelog backup script
    run
    BACKUP AS COMPRESSED BACKUPSET
    INCREMENTAL LEVEL = 0
    DEVICE TYPE DISK
    TAG = 'WEEKLY_ARCHIVELOG'
    FORMAT '/oracle/ITB/db/apps_st/rman_backup/weekly_archivelog_%d_t%t_s%s_p%p'
    ARCHIVELOG FROM TIME 'SYSDATE-7';
    daily backup script
    run
    BACKUP AS COMPRESSED BACKUPSET
    INCREMENTAL LEVEL = 1
    DEVICE TYPE DISK
    TAG = 'DAILY_INCREMENTAL_ARCHIVELOG'
    FORMAT '/oracle/ITB/db/apps_st/rman_backup/daily_incremental_archivelog_%d_t%t_s%s_p%p'
    ARCHIVELOG FROM TIME 'SYSDATE-1';
    my question that if i will take backup then, will be any gap in sequnce
    and second question is that ---is there incremental backup possible for archivelog.
    os =aix6 and database 10g2

    afzal wrote:
    Dear Sir,
    ok question number 2 is clear that incremental backup is not possible but still confuse
    about sequence
    if i did take backup of 17 feb at 12 o'clock seq 1,2,3,4
    after that i did take backup 18th fab 1 pm then it will take from 6,7,8-------seq 5 is missing
    please please correct my archive log script for weekly and daily backup with windows redundancy 14 days
    again please correct my script
    thnaksWHy you think the archive log file number 5 will be missing? RMAN automatically archives current redo log files and backups it
    Why you don't test your backup script by your own and check results? Never trust anyone on your critical databases' backups, do it by your own!
    Kamran Agayev A.
    Oracle ACE
    My Oracle Video Tutorials - http://kamranagayev.wordpress.com/oracle-video-tutorials/

  • Consistent hot backup possible

    Is a consistent hot backup possible?
    I would like to perform hot backups while the database is in basically a read only state. I am currently using Oracle recommended backups via OEM, for example.
    run {
    allocate channel oem_disk_backup device type disk;
    recover copy of database with tag 'ORA$OEM_LEVEL_0';
    backup incremental level 1 cumulative copies=1 for recover of copy with tag 'ORA$OEM_LEVEL_0' database;
    release channel oem_disk_backup;
    allocate channel oem_sbt_backup1 type 'SBT_TAPE' format '%U';
    backup recovery area;
    Would executing the sql command "alter database begin backup;" before running the above RMAN script accomplish this task? Then off course when completed execute sql "alter database end backup;".
    My basic concern is this type of RMAN hot backup usable in a disaster situation, i.e recreated on another server from tape backup.
    I am open to any other ideas.
    Thanks for your help in advance.
    Ed - Wasilla, Alaska
    Edited by: evankrevelen on Sep 11, 2008 10:18 PM

    Thanks everyone who replied to this thread.
    Just to clarify my complete backup strategy, there are two RMAN scripts run on daily and weekly basis. The daily does pickup the archivelogs. I had shown the weekly when first opening this thread. Here is the daily.
    run {
    allocate channel oem_disk_backup device type disk;
    recover copy of database with tag 'ORA$OEM_LEVEL_0';
    backup incremental level 1 cumulative copies=1 for recover of copy with tag 'ORA$OEM_LEVEL_0' database;
    release channel oem_disk_backup;
    allocate channel oem_sbt_backup1 type 'SBT_TAPE' format '%U';
    backup archivelog all not backed up;
    backup backupset all not backed up since time 'SYSDATE-1';
    My question now is what RMAN does in the increments. It appears to be updating the original level 0 copies of datafiles with changed blocks only. Is the new copy of the datafile now a level 0 type file?
    Here is a transcript from one of the daily backups.
    Starting recover at 11-SEP-08
    channel oem_disk_backup: starting incremental datafile backupset restore
    channel oem_disk_backup: specifying datafile copies to recover
    recovering datafile copy fno=00001 name=+DEVRVYG1/landesk/datafile/system.2576.616107783
    recovering datafile copy fno=00002 name=+DEVRVYG1/landesk/datafile/undotbs1.2574.616107865
    recovering datafile copy fno=00003 name=+DEVRVYG1/landesk/datafile/sysaux.2575.616107829
    recovering datafile copy fno=00004 name=+DEVRVYG1/landesk/datafile/users.2572.616107871
    recovering datafile copy fno=00005 name=+DEVRVYG1/landesk/datafile/landesk.2914.616107643
    channel oem_disk_backup: reading from backup piece +DEVRVYG1/landesk/backupset/2008_09_10/nnndn1_tag20080910t220150_0.12330.665100189
    channel oem_disk_backup: restored backup piece 1
    piece handle=+DEVRVYG1/landesk/backupset/2008_09_10/nnndn1_tag20080910t220150_0.12330.665100189 tag=TAG20080910T220150
    channel oem_disk_backup: restore complete, elapsed time: 00:05:16
    Finished recover at 11-SEP-08
    Starting backup at 11-SEP-08
    channel oem_disk_backup: starting incremental level 1 datafile backupset
    channel oem_disk_backup: specifying datafile(s) in backupset
    input datafile fno=00005 name=+DEVG1/landesk/datafile/landesk.374.614072207
    input datafile fno=00003 name=+DEVG1/landesk/datafile/sysaux.384.614002027
    input datafile fno=00001 name=+DEVG1/landesk/datafile/system.383.614002025
    input datafile fno=00002 name=+DEVG1/landesk/datafile/undotbs1.385.614002027
    input datafile fno=00004 name=+DEVG1/landesk/datafile/users.386.614002027
    channel oem_disk_backup: starting piece 1 at 11-SEP-08
    channel oem_disk_backup: finished piece 1 at 11-SEP-08
    piece handle=+DEVRVYG1/landesk/backupset/2008_09_11/nnndn1_tag20080911t220708_0.12999.665186835 tag=TAG20080911T220708 comment=NONE
    channel oem_disk_backup: backup set complete, elapsed time: 00:02:26
    channel oem_disk_backup: starting incremental level 1 datafile backupset
    channel oem_disk_backup: specifying datafile(s) in backupset
    including current control file in backupset
    including current SPFILE in backupset
    channel oem_disk_backup: starting piece 1 at 11-SEP-08
    channel oem_disk_backup: finished piece 1 at 11-SEP-08
    piece handle=+DEVRVYG1/landesk/backupset/2008_09_11/ncsnn1_tag20080911t220708_0.2301.665186983 tag=TAG20080911T220708 comment=NONE
    channel oem_disk_backup: backup set complete, elapsed time: 00:00:21
    Finished backup at 11-SEP-08
    It appears to be updating the previous copy with updated blocks thus rolling forward the datafile copy to a new level 0 copy.
    Then to restore from the backup RMAN would first use this new copy of the datafile and then apply any archivelogs to them to bring the database to the point in time the incremental backup was taken.
    Are these assumptions true?
    Thanks for your help,
    ED

  • Can i retrieve lost pictures with metadata backup?

    A few months ago I "cleaned up" iPhoto so I could use it solely for my portfolio of work. My personal pics I saved to my external HDD [Western Digital MyBook] and removed them from my Mac's hdd.
    I recently discovered that pics I thought were saved to my external hdd have gone missing. since they were not on my mac or in the recent iphoto library. However, I do still have the previous metadata back up folder on the hdd. It contains the following: Folder name: iPhoto Library_2 - albumdata.xml; albumdata2.xml; iphoto.ipspot and metadata backup. Can I use this to retrieve the pics?

    Did you delete the pics, or you just can't find them on your iPad?
    If you deleted them, they are gone as there is no Trash Can or Recycke Bin. If you have a backup, retrieve the pics from your backup.
     Cheers, Tom

  • I was in America and you ship over Amercan store now I went to Egypt transformed from Amircan Store to Egypt Store remains the payment method dollar and of possible action Director of through Cards iTunes you if introduced Carte iTunes on your Director of

    I was in America and you ship over Amercan store now I went to Egypt transformed from Amircan Store to Egypt Store remains the payment method dollar and of possible action Director of through Cards iTunes you if introduced Carte iTunes on your Director of ship dollar or is it to Amarcain only Even if there was a deal in dollars and there is the Director of word I want to answer quickly and thank you.   Ihave reedem word

    I'm not entirely sure what your post means. Whether gift cards will become available in Egypt I don't know, I'm just a fellow user, I don't know what Apple might or might not be planning. But as I said, gift cards are country-specific.
    If you are in Egypt then you can only use the Egyptian store. From the US iTunes store terms of use (and other country's stores will be similar) :
    The iTunes Service is available to you only in the United States, its territories, and possessions. You agree not to use or attempt to use the iTunes Service from outside these locations. Apple may use technologies to verify your compliance.

  • Is it possible to pass parameters through eventlisteners?

    Hello everyone!
    Inside a .fla file I have some buttons and each button will tween a different image to the stage. All the images are outside the stage in the same x and y position and I just need to tween the x coordinate.
    Now I'm working with an external document class where I'm trying to hold all my functions and I'm stucked with the Tweens. I'm willing to stay away from the flash tween engine and I'm trying to work with tweenLite.
    My question is: Is it possible to pass parameters through eventListeners so I can use something like this inside my docClass?
         public function animeThis (e:MouseEvent, mc:MovieClip, ep:int):void { //ep stands for endPoint.
         TweenLite.to(mc, 2, {x:ep});
    If this is possible, how am I supposed to write the listeners so it will pass the event to be listened for AND those parameters? And how to build the function so it will receive those parameters and the event?
    If this is not possible, what's the best approach to do this?
    Thanks again!

    So, I understand you need to match buttons with corresponding visuals.
    Here is a suggested approach.
    Since SimpleButton is not a dynamic class, I suggest you have an enhanced base class for these buttons that extends SimpleButton. What is enhanced is that button has reference to the target.
    I wrote code off the top of my head and it may be buggy. But concept is clear:
    This is base class for all the buttons:
    package 
         import flash.display.DisplayObject;
         import flash.display.SimpleButton;
         public class NavButton extends SimpleButton
              public var targetObject:DisplayObject
              public function NavButton()
    Now, this is your doc class that utilizes this new buttons:
    package 
         import flash.display.DisplayObject;
         import flash.display.MovieClip;
         import flash.display.Sprite;
         import flash.events.Event;
         import flash.events.MouseEvent;
         public class DocClass extends Sprite
              private var btnArray:Array;
              private var visuals:Array;
              // references to objects being swapped
              private var visualIn:MovieClip;
              private var visualOut:MovieClip;
              public function DocClass()
                   if (stage) init();
                   else addEventListener(Event.ADDED_TO_STAGE, init);
              private function init(e:Event = null):void
                   removeEventListener(Event.ADDED_TO_STAGE, init);
                   // buttons and MCs shouldn't be in the same array - otherwise it is counterintuitive
                   // assuming all the objects are on stage
                   btnArray = [price_btn, pack_btn, brand_btn, position_btn];
                   visuals = [g19_mc, g16_mc, g09_mc, g04_mc];
                   configObjects();
              private function configObjects():void
                   var currentVisual:MovieClip;
                   var currentButton:NavButton;
                   for (var i:int = 0; i < btnArray.length; i++)
                        currentVisual = visuals[i];
                        // hold original positioin
                        currentVisual.hiddenPosition = currentVisual.x;
                        currentButton = btnArray[i];
                        // set target MC
                        currentButton.targetObject = currentVisual;
                        currentVisual.addEventListener(MouseEvent.CLICK, placeObject);
                        currentButton.addEventListener(MouseEvent.CLICK, placeObject);
              private function placeObject(e:MouseEvent):void
                   // if NavButton is clicked - make new visual targeted for moving in and currently visible object subject for moving out
                   if (e.currentTarget is NavButton) {
                        visualOut = visualIn;
                        visualIn = NavButton(e.currentTarget).targetObject;
                   else {
                        // otherwise - move visual out
                        visualOut = visualIn;
                   swapVisuals();
               * Accompishes visuals swapping
              private function swapVisuals():void {
                   if (visualIn) TweenLite.to(visualIn, .3, { x:0 } );
                   if (visualOut) TweenLite.to(visualOut, .3, { x:visualOut.hiddenPosition } );

  • Is it possible to achieve SSO through IDM ??/

    Hello is it possible to achieve SSO through IDM ??? is so how please give me some details regarding this.
    regards
    ravi

    It depends what you mean by this:
    It is possible to have a single password through synchronising the passwords, but I don't think IDM will physically log you on to multiple systems
    --Calum                                                                                                                                                                                                                                                                                                                                                                                           

  • HT1937 hi i want to unlock my ipad3 from vodafone in uk. Is it possible to do it through apple store?

    i want to unlock my ipad3 from vodafone in uk. Is it possible to do it through apple store?

    I could be wrong, but I do not believe carriers unlock iPads.
    Regardless, it's up to the carrier, contact them and ask.

  • Is it possible to sell assets through a sales order

    Hi,
    Is it possible to sell assets through a sales order?
    Kindly help me
    Thanks
    Supriya

    Hi
    The basic process are as under:
    1. You need to create the asset as non valuated material
    2. You need to define a pricing procedure for the sale of asset. This would enable you to create a commerical outgoing invoice as well as capture all the taxes involved.
    3. You need to assign suitable revenu and tax accounts in VKOA
    4. Create a Sales Order and do the billing. This should create an Accounting entry
    Customer A/c Dr
         Revenue - Asset Sale Cr
         Sales Tax/Vat Payable Cr
    5. You need to create an outgoing excise invoice for the asset
    6. Through T Code ABAON, you need to pass an entry in Asset Accounting for Sale of Asset, with Revenue and W/o Customer. This would pass the accounting entry
    Revenue - Asset Sale Dr
        Asset Account Cr
    Hope this clarifies
    Thanks & Best Regards
    Sanil K Bhandari

  • Is there any way to control automator through voice commands?

    is there any way to control automator through voice commands?
    Im simply trying to program my macbook pro early 2011 8gigs ram to resound to voice commands using automator but I haven't found any discuss on the subject.

    I have some AppleScript that expects a Pages (v5.2.2) document opened. It will then then speak the document name, and the count of words in the document. Or, I can trigger Speakable items and tell it to, "Switch to Pages" which it does immediately, because this is part of its repertoire of built-in commands. Then speak Word Count?
    In Automator, I created an Application, in which I dragged/dropped the Library > Utilities > Run AppleScript action into the workflow window. I replaced the AppleScript boilerplate with my existing AppleScript code that speaks the word count, and saved the Application into <login dir>/Library/Speech/Speakable Items folder as Word Count? (without the .app extension). It can also be saved in the Application Speakable Items > Pages sub-folder under the general Speakable Items folder.
    Next, I turned on Speakable Items in System Preferences > Accessibility > Speakable Items.
    It took several tries to get a spoken result from the Automator application, but it did work. Even with a calibrated microphone, and speaking about 18 inches from it. About 2 successes for ten tries. If I just put the AppleScript (without extension) in the same folder, my success rate would improve to 5/10. You may grow very weary of the repetition necessary to get Speakable Items to work. A small pink text banner also appears with the spoken content in it — below the Speakable Items monitor on the screen.
    Automator is scriptable. This means that in AppleScript, you can dynamically build an Automator workflow, and then execute it.

  • How I can backup from another Hard disk through my Macbook air?

    How I can backup datas from another external storage disk by using My Macbook Air?

    How I can backup from another hard disk through my Macbook air in Time Capsule?

Maybe you are looking for

  • Aperture 3.4 plug-ins give Editing Error..

    I updated Aperture to 3.4 and as before sharing my iPhoto library. When I try and use any plug-ins like dfine or others I get the following error. Editing Error. One or more of the selected versions has a original files which is still being imported.

  • Unwanted chiming

    In the last week my 520 has begun "chiming" sporadically. At moments such as this, quiet as a lamb, go to YouTube or games and BOOM this annoying chiming starts. I've turned everything I could think of off but to no avail. I'm sure there is a simple

  • V$session and v$sqlarea

    Hi All, How can i join the v$session and v$sqlarea? I am trying to find out who has executed the sql statement or still executing the statement. I think without joining with v$session its not possible. Is there a way to get this information? And I am

  • Can you disable the DSL modem on 837 Router

    Hello is there any way to turn off / disable the DSL modem on the 837 router?   I have shutdown the ATM0 interface but the modem is still trying to train up.  I'm trying to disable it as I am now using an external modem with PPPOE.

  • OMS start error

    Each time I start the OMS manually from the control banel, I get the following message: error 997: overlaped I/O operation in process .......Can anyone tell me the reason? And how to solve this problem? Note: I'm using Oracle 8.1.6 under Windows 2000