HT3275 Any ideas about this error message?  (error -1)

Any ideas about this error message?
"The backup disk image “/Volumes/Data/ MacBook Pro.sparsebundle” could not be accessed (error -1)."

Standard Lion networking .. Reboot the TC or use the disconnect all users in the AU.. it has not closed the sparsebundle correctly from last time.. or has simply forgotten where the TC is.
It is reported at least once a day here.
See C17
http://pondini.org/TM/Troubleshooting.html

Similar Messages

  • I am using PP 2014 CC and it and or Encoder keep crashing.. using iMac computer with Yosemite OS anyone have any ideas about this issue?

    I am using PP 2014 CC and it and or Encoder keep crashing.. using iMac computer with Yosemite OS anyone have any ideas about this issue?

    Hi,
    Please give this a try: Premiere Pro CC, CC 2014, or 2014.1 freezing on startup or crashing while working (Mac OS X 10.9, and later)
    Thanks,
    Rameez

  • Any ideas about this problem's automization...

    Hi all
    Please suggest any sql query for below problem:
    I want to compare two schema tables(same in all schemas but altered late in either case) to display the differences in schemas. for this we can use TOAD SOFTWARE but it is very easy to compare the schema using this software but difficult to display the details (differences) according to my requirement. so can you anybody suggest any query to extract the following model:
    for example:
    Schema1 = emp table
    schema2 = emp table
    desc emp in schema1:
    empno number(10) notnull
    ename varchar2(20)
    sal number(30)
    desc emp in schema2:
    empno number(10) notnull
    empname varchar2(19) notnull
    sal number(30)
    out put requirement:
    Schema |TableName| Fields | Datatype | Null/Notnull | Constraint Schema2|TableName| Fields | Datatype | Null/Notnull
    EMP EMPNO NOTNULL EMP EMPNO NOT NULL
    SAL SAL
    ENAME VARCHAR2(20) EMPNAME VARCHAR2(19) "ADDITIONAL
                                                           (name change)      NOT NULL
                                                                     CONSTRAINT"
    let me explain above example, in the given two same tables in different schema, in the output
    those fields which are matched in terms of all i.e field name,datatype,constraint,null/notnull
    should be displayed first.
    Then those field which have differences should be displayed by giving appropriate comments
    like "colmn name changed if there is difference between col names in both schemas"
    In some cases, we cannot find the table in one schema, it should print "table not found on the schema2 side in the above output
    Very important note is that Schema1 should reflect same as
    schema2 tables.
    One more thing is in the above output : for ename field only datatype displayed, this is because for those
    fields which have change in schema2, for that colomns only we have to display the datatype.
    Thanks in advance
    prasanth

    Some sample code to get you started ...
    SQL> desc core.emp
    Name                                      Null?    Type
    EMPNO                                     NOT NULL NUMBER(10)
    ENAME                                              VARCHAR2(20)
    SAL                                                NUMBER(30)
    DT                                        NOT NULL DATE
     
    SQL> desc flip.emp
    Name                                      Null?    Type
    EMPNO                                     NOT NULL NUMBER(10)
    EMPNAME                                   NOT NULL VARCHAR2(19)
    SAL                                                NUMBER(30)
    DT                                                 DATE
     
    SQL> set lines 120
    SQL> col owner format a10
    SQL> col table_name format a10
    SQL> col column_name format a10
    SQL> col data_type format a10
    SQL>
    SQL> with t1 as
      2       ( SELECT 1               src1
      3               ,to_number(null) src2
      4               ,owner
      5               ,table_name
      6               ,column_name
      7               ,data_type
      8               ,data_length
      9               ,data_scale
    10               ,nullable
    11         FROM  dba_tab_columns
    12         WHERE owner      = 'CORE'
    13         AND   table_name = 'EMP'
    14       )
    15      ,t2 as
    16       ( SELECT to_number(null) src1
    17               ,1               src2
    18               ,owner
    19               ,table_name
    20               ,column_name
    21               ,data_type
    22               ,data_length
    23               ,data_scale
    24               ,nullable
    25         FROM  dba_tab_columns
    26         WHERE owner      = 'FLIP'
    27         AND   table_name = 'EMP'
    28       )
    29      ,src as
    30       ( select table_name
    31               ,column_name
    32               ,data_type
    33               ,data_length
    34               ,data_scale
    35               ,nullable
    36               ,count(src1) cnt1
    37               ,count(src2) cnt2
    38         from ( select * from t1
    39                union all
    40                select * from t2
    41              )
    42         group by table_name
    43               ,column_name
    44               ,data_type
    45               ,data_length
    46               ,data_scale
    47               ,nullable
    48       )
    49      ,similar_col as
    50       ( select table_name
    51               ,column_name
    52               ,data_type
    53               ,data_length
    54               ,data_scale
    55               ,nullable
    56         from   src
    57         where  cnt1 = cnt2
    58       )
    59      ,different_col as
    60       ( select table_name
    61               ,column_name
    62               ,data_type
    63               ,data_length
    64               ,data_scale
    65               ,nullable
    66         from   src
    67         where  cnt1 != cnt2
    68       )
    69      ,same as
    70       ( select 'Same'   text
    71               ,cast(null as varchar2(30)) owner
    72               ,s.*
    73        from    similar_col   s
    74       )
    75      ,diff1 as
    76       ( select 'Diff' text
    77               ,t1.owner
    78               ,d.*
    79         from   different_col d
    80               ,t1
    81         where  t1.table_name          = d.table_name
    82         and    t1.column_name         = d.column_name
    83         and    t1.data_type           = d.data_type
    84         and    nvl(t1.data_length,-1) = nvl(d.data_length,-1)
    85         and    nvl(t1.data_scale ,-1) = nvl(d.data_scale ,-1)
    86         and    t1.nullable            = d.nullable
    87       )
    88      ,diff2 as
    89       ( select 'Diff' text
    90               ,t2.owner
    91               ,d.*
    92         from   different_col d
    93               ,t2
    94         where  t2.table_name          = d.table_name
    95         and    t2.column_name         = d.column_name
    96         and    t2.data_type           = d.data_type
    97         and    nvl(t2.data_length,-1) = nvl(d.data_length,-1)
    98         and    nvl(t2.data_scale ,-1) = nvl(d.data_scale ,-1)
    99         and    t2.nullable            = d.nullable
    100       )
    101  select * from same
    102  union all
    103  select * from diff1
    104  union all
    105  select * from diff2
    106  order by 1 desc,4
    107  ;
     
    TEXT OWNER      TABLE_NAME COLUMN_NAM DATA_TYPE  DATA_LENGTH DATA_SCALE N
    Same            EMP        EMPNO      NUMBER              22          0 N
    Same            EMP        SAL        NUMBER              22          0 Y
    Diff CORE       EMP        DT         DATE                 7            N
    Diff FLIP       EMP        DT         DATE                 7            Y
    Diff FLIP       EMP        EMPNAME    VARCHAR2            19            N
    Diff CORE       EMP        ENAME      VARCHAR2            20            Y
     
    6 rows selected.To get the desired side by side output you would have to slightly modify the above and do a full outer join ... unfortunately, in 9.2.0.1.0, I got ORA-03113 trying to use the ANSI full outer join syntax ... to fake it with the traditional syntax ...
    SQL> set lines 200 pages 500
    SQL> with t1 as
      2       ( SELECT 1               src1
      3               ,to_number(null) src2
      4               ,owner
      5               ,table_name
      6               ,column_name
      7               ,data_type
      8               ,data_length
      9               ,data_scale
    10               ,nullable
    11         FROM  dba_tab_columns
    12         WHERE owner      = 'CORE'
    13         AND   table_name = 'EMP'
    14       )
    15      ,t2 as
    16       ( SELECT to_number(null) src1
    17               ,1               src2
    18               ,owner
    19               ,table_name
    20               ,column_name
    21               ,data_type
    22               ,data_length
    23               ,data_scale
    24               ,nullable
    25         FROM  dba_tab_columns
    26         WHERE owner      = 'FLIP'
    27         AND   table_name = 'EMP'
    28       )
    29      ,src as
    30       ( select table_name
    31               ,column_name
    32               ,data_type
    33               ,data_length
    34               ,data_scale
    35               ,nullable
    36               ,count(src1) cnt1
    37               ,count(src2) cnt2
    38         from ( select * from t1
    39                union all
    40                select * from t2
    41              )
    42         group by table_name
    43               ,column_name
    44               ,data_type
    45               ,data_length
    46               ,data_scale
    47               ,nullable
    48       )
    49      ,similar_col as
    50       ( select table_name
    51               ,column_name
    52               ,data_type
    53               ,data_length
    54               ,data_scale
    55               ,nullable
    56         from   src
    57         where  cnt1 = cnt2
    58       )
    59      ,different_col as
    60       ( select table_name
    61               ,column_name
    62               ,data_type
    63               ,data_length
    64               ,data_scale
    65               ,nullable
    66         from   src
    67         where  cnt1 != cnt2
    68       )
    69      ,sd1 as
    70       ( select 'same' text
    71               ,o.owner
    72               ,s.*
    73         from   similar_col   s
    74               ,(select owner from t1 where rownum <2) o
    75         union all
    76         select 'diff' text
    77               ,t1.owner
    78               ,d.*
    79         from   different_col d
    80               ,t1
    81         where  t1.table_name          = d.table_name
    82         and    t1.column_name         = d.column_name
    83         and    t1.data_type           = d.data_type
    84         and    nvl(t1.data_length,-1) = nvl(d.data_length,-1)
    85         and    nvl(t1.data_scale ,-1) = nvl(d.data_scale ,-1)
    86         and    t1.nullable            = d.nullable
    87       )
    88      ,sd2 as
    89       ( select 'same' text
    90               ,o.owner
    91               ,s.*
    92         from   similar_col   s
    93               ,(select owner from t2 where rownum <2) o
    94         union all
    95         select 'diff' text
    96               ,t2.owner
    97               ,d.*
    98         from   different_col d
    99               ,t2
    100         where  t2.table_name          = d.table_name
    101         and    t2.column_name         = d.column_name
    102         and    t2.data_type           = d.data_type
    103         and    nvl(t2.data_length,-1) = nvl(d.data_length,-1)
    104         and    nvl(t2.data_scale ,-1) = nvl(d.data_scale ,-1)
    105         and    t2.nullable            = d.nullable
    106       )
    107  select nvl(sd1.text,sd2.text) text
    108        ,sd1.owner
    109        ,sd1.table_name
    110        ,sd1.column_name
    111        ,sd1.data_type
    112        ,sd1.data_length
    113        ,sd1.data_scale
    114        ,sd1.nullable
    115        ,sd2.owner
    116        ,sd2.table_name
    117        ,sd2.column_name
    118        ,sd2.data_type
    119        ,sd2.data_length
    120        ,sd2.data_scale
    121        ,sd2.nullable
    122  from  sd1,sd2
    123  where sd1.table_name  = sd2.table_name  (+)
    124  and   sd1.column_name = sd2.column_name (+)
    125  union
    126  select nvl(sd1.text,sd2.text) text
    127        ,sd1.owner
    128        ,sd1.table_name
    129        ,sd1.column_name
    130        ,sd1.data_type
    131        ,sd1.data_length
    132        ,sd1.data_scale
    133        ,sd1.nullable
    134        ,sd2.owner
    135        ,sd2.table_name
    136        ,sd2.column_name
    137        ,sd2.data_type
    138        ,sd2.data_length
    139        ,sd2.data_scale
    140        ,sd2.nullable
    141  from  sd1,sd2
    142  where sd1.table_name  (+) = sd2.table_name
    143  and   sd1.column_name (+) = sd2.column_name
    144  order by 1 desc nulls last, 4
    145  ;
    TEXT OWNER      TABLE_NAME COLUMN_NAM DATA_TYPE  DATA_LENGTH DATA_SCALE N OWNER      TABLE_NAME COLUMN_NAM DATA_TYPE  DATA_LENGTH DATA_SCALE N
    same CORE       EMP        EMPNO      NUMBER              22          0 N FLIP       EMP        EMPNO      NUMBER              22          0 N
    same CORE       EMP        SAL        NUMBER              22          0 Y FLIP       EMP        SAL        NUMBER              22          0 Y
    diff CORE       EMP        DT         DATE                 7            N FLIP       EMP        DT         DATE                 7            Y
    diff CORE       EMP        ENAME      VARCHAR2            20            Y
    diff                                                                      FLIP       EMP        EMPNAME    VARCHAR2            19            NNow, having done all this ... was it worthwhile? Wouldn't comparing the output of dbms_metdata.get_ddl been as good (actionable) as this? Hmmm.
    Cheers.

  • HT2577 This is not the first time I have woke up to finding my Mac in the sleep mod, and the airport on and connected. Any ideas about this one?

    Is it possible to access and not leave a calling card of access in the system? I had a service result that went bad, and required another service result that reinstalled the Mt.Lion. Bad being that they did not install as the paper work stated. OSX 10.8.5 questions my ability to protect access. Any thoughts on technical support being to technical with personal information?

    Go here:
    http://www.apple.com/support/itunes/contact/
    and follow the instructions to report the issue to the iTunes Store.
    Regards.

  • My repaired water damaged macbook pro has no audio with the icon greyed out. i tried all the suggestions but nothing seems to work. however, on my external clone, the output does work. any ideas about this?

    I tried reseting the pram, reinstalling the software, plugging the headphone jack in and out, deleting playlist but nothing works. on the external clone, the output works with noise but still no input device.
    can i use a sound card instead?

    If you just had the system repaired for water damage what did they replace? If it was the Logic board then all parts should work and if they don't, like the sound, then they didn't fix it correctly and you should take it back to them for a proper fix.

  • After downloading and trying to install the newest version of i tunes on my pc, I got an error message telling me: unable to locate component MSVCR80.dll. Now I can't use the version I had and obviously not the newest version. Any ideas about how to fix ?

    After downloading and trying to install the newest version of i tunes on my pc, I got an error message telling me: unable to locate component MSVCR80.dll. Now I can't use the version I had and obviously not the newest version. Any ideas about how to fix ?

    Solving MSVCR80 issue and Windows iTunes install issues.
    Thanks to user turingtest2 for this solution.
    Solving MSVCR80 issue and Windows iTunes install issues.
    If the above doesn’t do the trick entirely, then use the instructions in the following as it applies to the version of Windows you are using:
    HT1925: Removing and Reinstalling iTunes for Windows XP
    HT1923: Removing and reinstalling iTunes for Windows Vista, Windows 7, or Windows 8
    You may be required to boot into safe mode to complete the folder deletion process.

  • I am getting an "error -5000" message when I try to backup my iphone 4 to itunes.  Any ideas what this means?

    i am getting an "error -5000" message when I try to backup my iphone 4 to itunes.  Any ideas what this means?

    Take a look at this link, http://support.apple.com/kb/ts1424

  • TS4431 Hi after trying to update my iPhone 5s while connected to iTunes on the Mac I got a notice saying it could not update the phone (error message: (-1)). Any idea what this error message means? Is it a space issue?

    Hi after trying to update my iPhone 5s while connected to iTunes on the Mac I got a notice saying it could not update the phone (error message: (-1)). Any idea what this error message means? Is it a space issue?

    Resolve iOS update and restore errors

  • I am trying to open my Preview application to view a PDF. However nothing opens and an error message, "Error -1712" pops up. Any ideas what I can do to resolve this?

    I am trying to open my Preview application to view a PDF. However nothing opens and an error message, "Error -1712" pops up. Any ideas what I can do to resolve this?

    Restart. If an application won't quit and prevents restarting, select
     ▹ Force Quit...
    from the menu bar, then select the frozen application from the list and press return. As a last resort, force a shutdown by holding down the power button for a few seconds. Then press it again briefly to start up. Test.

  • My videos on iPhoto no longer play ... the message reads OSStatus error -54.    anyone any idea what this might mean?

    My videos on iPhoto no longer play ... the message reads OSStatus error -54.    anyone any idea what this might mean?

    Hi Terence,
    FWIW...
    I just restored my entire iPhoto library from Time Machine.  I'm running Yosemite.  After opening iPhoto for the first time after restoring the DB, it asked me to confirm my library location.  Then it proceeded to update all the thumbnails.  After this was completed, I observed what the OP reported: all photos work normally, but all videos were a.) missing thumbnails; and b.) yielding this error code when attempting to open.
    HOWEVER.  Doing a Reveal in Finder showed the videos on disk, and they were playable.  After quitting iPhoto and restarting it, it *again* said it was updating thumbnails, and now all the videos both have the thumbnails and play correctly from within iPhoto.

  • Trouble uploading to shootproof, keep getting an error that says "internal error, name not unique, color" any idea what this is and how to resolve it?

    trouble uploading to shootproof, keep getting an error that says "internal error, name not unique, color" any idea what this is and how to resolve it?

    Note that you should be cautious when you get the 'untrusted' error message and that you should never create a permanent exception in cases like this without investigating the cause.
    If you have created a permanent exception then best is to remove it in the Server tab in the Certificate Manager.
    *Tools > Options > Advanced > Certificates/Encryption: View Certificates

  • Hi, I'm moving my site from MobileMe to Filezilla and there is apparently a coding error on iWeb that means when I try to get onto my site there's no access online and it says there are too many redirects. Anyone have any idea what this might be?

    Hi, I'm moving my site from MobileMe to Filezilla and there is apparently a coding error on iWeb that means when I try to get onto my site there's no access online and it says there are too many redirects. Anyone have any idea what this might be?

    Well, firstly Filezilla is not a hosting company but an ftp client that helps you upload your site to your new server. You need to purchase a new hosting account first though.
    If you have iWeb 09 then you can publish directly to your new host and you select the publish to ftp option and not MobileMe - MobileMe won't be here after tomorrow.
    You can also publish to a local folder if want to and use Filezilla to upload your site to your server.
    You don't need re-directs as MobileMe won't be here so you need to cancel and delete your domain name from your MobileMe account and then cancel any domain name forwarding that you have at your domain name registrar - that is what the redirects are about.
    Firstly ensure that you have your new hostings account - Filezilla is not a host, rather an ftp client that you use to upload your site.

  • ERRORS found during the burning process #-34506...any idea what this means?

    ERRORS found during the burning process #-34506...any idea what this means?
    This one project I want to copy to DVD keeps saying this when I go to burn (that is after nearly 2 hrs of processing). There is nothing wrong with the movie so i don't know why i'm having such a problem burning it. i guess to start i'd need to know what this code means (I couldn't find it in iDVD help).
    thanks in advance
    Jeremiah

    First I'd be certain that I had changed the preferences from best quality to best performance.
    Did you follow the chapter rules?
    *Make sure no chapter markers are within two seconds of the start or end of the timeline.
    *Make sure no chapter markers are within a transition.
    *Make sure no chapter markers are within two seconds of the end of a transition.
    You may have already done this, but
    Quit iDVD. Search for the file named com.apple.iDVD.plist and trash it. (A new one will be created next launch of iDVD.) Or look in: User/Library/Preferences. This may solve project loading errors too. Restart and use Disk Utility to Repair Permissions.
    :)Sue

  • HT201210 dose someone has any idea about error 1015 when trying to restore iphone iOS?

    Dose someone has any idea about error 1015 when trying to restore iphone iOS?

    Error 1015 means the phone was jailbroken. You can not get help here.

  • Error msg while downloading or visiting iTune store: "network connection was lost". Any idea about the problem?

    I am getting for the last days a constant error msg while downloading or visiting iTune store: "network connection was lost" (sometimes also ways it was "reset" instead). But, the network is working (I can make othe rdownloads and visit to other internet sites). Any idea about the problem?

    Mac server or Windows server? Have you checked her permissions/access vs another user not having the issue?

Maybe you are looking for