Imp full db successful with warnings

Looking for options to fix those , or can i ignore them? What would be side effect if i drop/cascade users and re-run imp after increasing tablespace TS_PUBLIC size or i should not do that? and just fix the little warnings or even just ignore them?
Most of tables (i would say 95% ) & there data imported successfully after full imp , db size is 80GB around, import terminated successfully with warnings , which are below.....
IMP-00017: following statement failed with ORACLE error 1659:
"CREATE TABLE "CA_QUERY_1"
"ABLESPACE "TS_PUBLIC""
IMP-00041: Warning: object created with compilation warnings
"CREATE FORCE VIEW "ADMIN"."CHECK_EXTENTS_V"
IMP-00041: Warning: object created with compilation warnings
"CREATE TRIGGER MT1758.MEDDRA_MT1758_THE_SYN_UPD"

DBA2011 wrote:
Looking for options to fix those , or can i ignore them? What would be side effect if i drop/cascade users and re-run imp after increasing tablespace TS_PUBLIC size or i should not do that? and just fix the little warnings or even just ignore them?
Most of tables (i would say 95% ) & there data imported successfully after full imp , db size is 80GB around, import terminated successfully with warnings , which are below.....
IMP-00017: following statement failed with ORACLE error 1659:
"CREATE TABLE "CA_QUERY_1"
"ABLESPACE "TS_PUBLIC""
IMP-00041: Warning: object created with compilation warnings
"CREATE FORCE VIEW "ADMIN"."CHECK_EXTENTS_V"
IMP-00041: Warning: object created with compilation warnings
"CREATE TRIGGER MT1758.MEDDRA_MT1758_THE_SYN_UPD"; I would suggest you to look at export log and find out which are the tables that got failed and import only those tables again. Since the size is quite high as you said.
Secondly, since 95% tables are already import, so i suggest you to increase the Tablespace size by adding datafile or extending existing one, then run the import for rest 5% tables.
Third, You said can you ignore warning? During import oracle tries to create Views, it first check if the tables from which view is being create are already exists or not. If the tables doesn't exists oracle will create view forcefully, and mark these view as invalid. The only way to make the views valid is to alter the views definition to point to the correct base tables.
So there is little activity left after import is done with warning, that you have to alter the view definitions so that correct tables can be used.
Also see MOS -> IMP-00041 ORA-04063 FROMUSER/TOUSER IMPORT INTO NEW DATABASE [ID 1059520.6]
Hope my suggestions helps you

Similar Messages

  • Imp full db successful without warnings

    I am doing research to imp full db during my migration from 8i/Solaris db to 10g/windows
    Here is the command i come up with , make me right if i am not.....
    imp system/ora2000sys full=yes ignore=no statistics=none log=clin_full_import.log
    FILE=
    D:\yo_momma\dave_is_ugly_1.dmp,
    D:\yo_momma\dave_is_ugly_2.dmp,
    D:\yo_momma\dave_is_ugly_3.dmp
    if this is not successful i will drop users cascade and re-run it ....
    Exp successful without warnings.....
    /u01/app/oracle/admin/clin/backups/com.par
    userid=system/******
    full=Y
    inctype=complete
    filesize=1g
    recordlength=4096
    buffer=16384
    direct=Y

    DBA2011 wrote:
    I am doing research to imp full db during my migration from 8i/Solaris db to 10g/windows
    Here is the command i come up with , make me right if i am not.....
    imp system/ora2000sys full=yes ignore=no statistics=none log=clin_full_import.log
    FILE=
    D:\yo_momma\dave_is_ugly_1.dmp,
    D:\yo_momma\dave_is_ugly_2.dmp,
    D:\yo_momma\dave_is_ugly_3.dmp
    if this is not successful i will drop users cascade and re-run it ....
    Exp successful without warnings.....
    /u01/app/oracle/admin/clin/backups/com.par
    userid=system/******
    full=Y
    inctype=complete
    filesize=1g
    recordlength=4096
    buffer=16384
    direct=Ylook OK to me
    Handle:     DBA2011
    Email:     [email protected]
    Status Level:     Newbie (35)
    Registered:     Sep 9, 2005
    Total Posts:     2,771
    Total Questions:     268 (137 unresolved)
    Why so many unanswered questions?

  • Import Successful with warnings....ORA-01658 error..

    Friends,
    OS: RHEL AS 3.0
    DB: Oracle 9iR2
    When i try to import the dump, i am getting the below message.
    "Import was successful with warnings"
    when i check the log file there is
    IMP-00017: following statement failed with oracle error 1658:
    IMP-00003: ORACLE error 1658 encountered
    ORA-01658: unable to create INITIAL extent for segment in tablespace PROD_DEFAULTPlease check the below, this is what i did before importing.
    I want to import only the table structures without rows from the user "SMS" to "NMS".
    After creating the below tablespace the free space in "/u02" is 3GB.
    AM i have to change any value in the below statement?
    CREATE TABLESPACE "PROD_DEFAULT" DATAFILE
      '/u02/oradata/PROD_DEFAULT.dbf' SIZE 3072M REUSE
      LOGGING ONLINE PERMANENT BLOCKSIZE 8192
      EXTENT MANAGEMENT LOCAL AUTOALLOCATE SEGMENT SPACE MANAGEMENT AUTO
    CREATE TEMPORARY TABLESPACE "PROD_TEMP" TEMPFILE
      '/u02/oradata/PROD_TEMP.dbf' SIZE 3072M REUSE
      EXTENT MANAGEMENT LOCAL UNIFORM SIZE 1048576
    CREATE USER "NMS" IDENTIFIED BY "SDF345345KLSDSD8K" DEFAULT
    TABLESPACE "PROD_DEFAULT"
    TEMPORARY TABLESPACE "PROD_TEMP"
    GRANT CONNECT,RESOURCE TO NMS
    [oracle@linuxdb oracle]$ imp system/password file=/u02/today1.dmp
    log=/u02/today1.log fromuser=sms touser=nms rows=n buffer=8000000 commit=yNote:
    Even if i omit "buffer" and "commit" the same error occurs.
    where im making a mistake? Is there any changes i have to made in the create tablespace statement.
    Please point out the mistake.
    thanks & regards

    not for a single statement. for all the statements
    its showing the error.instead of 512 tables
    structures, only 490 tables structures were created.Because it was not able to allocate contiguous space in the tablespace.
    >
    actually i want to import "NMS_DEFAULT" tablespace's
    table structures to "PROD_DEFAULT" tablespace.
    also I want to import only the table structures
    without rows from the user "SMS" to "NMS".Use FROMUSER/TOUSER for this and set the default tablespace for NMS as PROD_DEFAULT.
    Now specify rown=N while running import or at the time of running export itself.
    i created the "NMS_DEFAULT" tablespace with 3072M.
    so i created the "PROD_DEFAULT" tablespace with the
    same size.
    actually i created the "PROD_DEFAULT" tablespace
    using below output.
    "select
    dbms_metadata.get_ddl('TABLESPACE','NMS_DEFAULT')
    from dual"You didnt allocate sufficient space to the tablespace, i guess.
    Amardeep Sidhu
    http://www.amardeepsidhu.com
    Corrected a mistake...
    Message was edited by:
    Amardeep Sidhu

  • Export is terminating successfully with warnings

    Hi Gurus,
    Export is getting terminated successfully with warnings. Below errors are recorded in export file
    EXP-00008: ORACLE error 4063 encountered
    ORA-04063: package body "SYS.LT_EXPORT_PKG" has errors
    ORA-06508: PL/SQL: could not find program unit being called: "SYS.LT_EXPORT_PKG"
    ORA-06512: at line 1
    EXP-00083: The previous problem occurred when calling SYS.LT_EXPORT_PKG.system_info_exp
    EXP-00008: ORACLE error 6550 encountered
    ORA-06550: line 1, column 13:
    PLS-00201: identifier 'EXFSYS.DBMS_EXPFIL_DEPASEXP' must be declared
    ORA-06550: line 1, column 7:
    PL/SQL: Statement ignored
    EXP-00083: The previous problem occurred when calling EXFSYS.DBMS_EXPFIL_DEPASEXP.system_info_exp
    EXP-00008: ORACLE error 4063 encountered
    ORA-04063: package body "SYS.LT_EXPORT_PKG" has errors
    ORA-06508: PL/SQL: could not find program unit being called: "SYS.LT_EXPORT_PKG"
    ORA-06512: at line 1
    EXP-00083: The previous problem occurred when calling SYS.LT_EXPORT_PKG.system_info_exp
    EXP-00008: ORACLE error 6550 encountered
    ORA-06550: line 1, column 13:
    PLS-00201: identifier 'EXFSYS.DBMS_EXPFIL_DEPASEXP' must be declared
    ORA-06550: line 1, column 7:
    PL/SQL: Statement ignored
    EXP-00083: The previous problem occurred when calling EXFSYS.DBMS_EXPFIL_DEPASEXP.system_info_exp
    . exporting pre-schema procedural objects and actions
    EXP-00008: ORACLE error 6550 encountered
    ORA-06550: line 1, column 13:
    PLS-00201: identifier 'EXFSYS.DBMS_EXPFIL_DEPASEXP' must be declared
    ORA-06550: line 1, column 7:
    PL/SQL: Statement ignored
    EXP-00083: The previous problem occurred when calling EXFSYS.DBMS_EXPFIL_DEPASEXP.schema_info_exp
    EXP-00008: ORACLE error 4063 encountered
    ORA-04063: package body "SYS.LT_EXPORT_PKG" has errors
    ORA-06508: PL/SQL: could not find program unit being called: "SYS.LT_EXPORT_PKG"
    ORA-06512: at line 1
    EXP-00083: The previous problem occurred when calling SYS.LT_EXPORT_PKG.schema_info_exp
    EXP-00008: ORACLE error 6550 encountered
    ORA-06550: line 1, column 13:
    PLS-00201: identifier 'DMSYS.DBMS_DM_MODEL_EXP' must be declared
    ORA-06550: line 1, column 7:
    PL/SQL: Statement ignored
    EXP-00083: The previous problem occurred when calling DMSYS.DBMS_DM_MODEL_EXP.schema_info_exp
    Please help me how to resolve this.
    Thanks,
    Dasarath

    Pl post details of OS and database versions, along with the complete export command. Has this ever worked before ? If so, what has changed since the last successful export ?
    See these MOS Docs
    298107.1 - Export Is Giving Errors Exp-00008 ORA-4068 ORA-4063 on SYS.LT_EXPORT_PKG
    740818.1 - Full Database Export Raises Warnings EXP-8 ORA-6550 PLS-201 Identifier 'SYS.LT_EXPORT_PKG' Must be Declared
    312317.1 - Export Failing with ORA-06550 and PLS-00201 on LT_EXPORT_PKG
    HTH
    Srini

  • Export terminated successfully with warnings.

    Hi,
    I have a 9i database (9.2.0.8.0) running on a HP Unix machine (B.11.11). The database size is 170GB.
    When I run a full database export, I get couple of ORA-01403 error.
    EXP-00008: ORACLE error 1403 encountered
    ORA-01403: no data found
    But the end of it, it shows Export terminated successfully with warnings.
    Is my export backup valid or do I need to solve the ORA-01403 issue? And how do I solve that?
    Request your quick help on this1
    thanks!

    I checked the Oracle Support notes, but it says that the cause is due to the FILESIZE parameter. But we have not used the FILESIZE parameter in our environment.
    And there are enough space in the file system too. So I dont think the spacing is an issue here.
    userid=dba_backup/xxxxxx
    file=xxxxxx.dmp
    compress=n
    consistent=y
    full=y
    rows=y
    direct=yThe solution mentioned in the note is:
    Solution
    -- To implement the solution, please execute the following steps::
    Add more files to the file= list to make sure there is enough space available for the export.How do I do that? file=xxxxxx.dmp, yyyyyy.dmp is it?
    Thanks!

  • Backup Error "Return Code 0001 Success with warnings"

    Hi All,
    I have a problem while taking backup using brtools .We scheduled a full offline backup and in DB12 when i check the status of last successful backup then it shows like
    Return Code 0001 Success with warnings
    System: ECC6
    OS:Solaris
    DB:Oracle10g
    What does this error mean there is no warning in log file also.
    Anybody have any idea??
    Thanks in Advance

    Hi,
    Thanks for your reply .
    Here is my  Logfile
    TOO LONG .....
    BR0051I BRBACKUP 7.00 (32)
    BR0055I Start of database backup: bdzgizji.aff 2008-11-14 22.18.54
    BR0484I BRBACKUP log file: /oracle/<MYSID>/sapbackup/bdzgizji.aff
    BR0477I Oracle pfile /oracle/<MYSID>/102_64/dbs/init<MYSID>.ora created from spfile /oracle/<MYSID>/102_64/dbs/spfile<MYSID>.ora
    BR0286W Size 2306875392 of file /oracle/<MYSID>/sapdata1/sr3700_2/sr3700.data2 is different from Oracle file size 2222989312
    BR0101I Parameters
    Name                           Value
    oracle_sid                     <MYSID>
    oracle_home                    /oracle/<MYSID>/102_64
    oracle_profile                 /oracle/<MYSID>/102_64/dbs/init<MYSID>.ora
    sapdata_home                   /oracle/<MYSID>
    sap_profile                    /oracle/<MYSID>/102_64/dbs/init<MYSID>.sap
    backup_mode                    ALL
    backup_type                    offline_force
    backup_dev_type                util_file
    util_par_file                  /oracle/<MYSID>/102_64/dbs/init<MYSID>.utl
    system_info                    ora<MYSID>/ora<MYSID> DBD112 SunOS 5.10 Generic_127127-11 sun4v
    oracle_info                    <MYSID> 10.2.0.2.0 8192 2867 21991272 DBD112 UTF8 UTF8
    sap_info                       700 SAPSR3 0002LK0003<MYSID>0011Q07320361650013NetWeaver_ORA
    make_info                      sun_64 OCI_102 Feb  6 2008
    command_line                   brbackup -u / -c -d util_file -t offline_force -m all -a -sd -c
    BR0116I ARCHIVE LOG LIST before backup for database instance <MYSID>
    Parameter                      Value
    Database log mode              Archive Mode
    Automatic archival             Enabled
    Archive destination            /oracle/<MYSID>/oraarch/<MYSID>arch
    Archive format                 %t_%s_%r.dbf
    Oldest online log sequence     2864
    Next log sequence to archive   2867
    Current log sequence           2867             SCN: 21991272
    Database block size            8192             Thread: 1
    Current system change number   22007193         ResetId: 665869765
    BR0118I Tablespaces and data files
    Tablespace     TS-Status  F-Status  File                                                       Size   Id.     Device  Link    Type       MaxSize     IncrSize  BlkSize
    PSAPSR3        ONLINE*    ONLINE+   /oracle/<MYSID>/sapdata1/sr3_1/sr3.data1                 2097160192    4     9764872  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3        ONLINE*    ONLINE+   /oracle/<MYSID>/sapdata1/sr3_2/sr3.data2                 2097160192    5     9764872  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3        ONLINE*    ONLINE+   /oracle/<MYSID>/sapdata1/sr3_3/sr3.data3                 2097160192    6     9764872  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3        ONLINE*    ONLINE+   /oracle/<MYSID>/sapdata1/sr3_4/sr3.data4                 2097160192    7     9764872  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3        ONLINE*    ONLINE+   /oracle/<MYSID>/sapdata1/sr3_5/sr3.data5                 2097160192    8     9764872  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3        ONLINE*    ONLINE+   /oracle/<MYSID>/sapdata2/sr3_10/sr3.data10               2118131712   13     9764872  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3        ONLINE*    ONLINE+   /oracle/<MYSID>/sapdata2/sr3_6/sr3.data6                 2097160192    9     9764872  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3        ONLINE*    ONLINE+   /oracle/<MYSID>/sapdata2/sr3_7/sr3.data7                 2097160192   10     9764872  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3        ONLINE*    ONLINE+   /oracle/<MYSID>/sapdata2/sr3_8/sr3.data8                 2097160192   11     9764872  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3        ONLINE*    ONLINE+   /oracle/<MYSID>/sapdata2/sr3_9/sr3.data9                 2097160192   12     9764872  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3        ONLINE*    ONLINE+   /oracle/<MYSID>/sapdata3/sr3_11/sr3.data11               2181046272   14     9764872  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3        ONLINE*    ONLINE+   /oracle/<MYSID>/sapdata3/sr3_12/sr3.data12               2369789952   15     9764872  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3        ONLINE*    ONLINE+   /oracle/<MYSID>/sapdata3/sr3_13/sr3.data13               2181046272   16     9764872  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3        ONLINE*    ONLINE+   /oracle/<MYSID>/sapdata3/sr3_14/sr3.data14               2202017792   17     9764872  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3        ONLINE*    ONLINE+   /oracle/<MYSID>/sapdata3/sr3_15/sr3.data15               2118131712   18     9764872  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3        ONLINE*    ONLINE+   /oracle/<MYSID>/sapdata4/sr3_16/sr3.data16               2306875392   19     9764872  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3        ONLINE*    ONLINE+   /oracle/<MYSID>/sapdata4/sr3_17/sr3.data17              10485768192   20     9764872  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3        ONLINE*    ONLINE+   /oracle/<MYSID>/sapdata4/sr3_18/sr3.data18              10485768192   21     9764872  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3        ONLINE*    ONLINE+   /oracle/<MYSID>/sapdata4/sr3_19/sr3.data19               3292536832   22     9764872  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3        ONLINE*    ONLINE+   /oracle/<MYSID>/sapdata4/sr3_20/sr3.data20               2097160192   23     9764872  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3700     ONLINE*    ONLINE+   /oracle/<MYSID>/sapdata1/sr3700_1/sr3700.data1           2160074752   24     9764872  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3700     ONLINE*    ONLINE+   /oracle/<MYSID>/sapdata1/sr3700_2/sr3700.data2           2222989312   25     9764872  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3700     ONLINE*    ONLINE+   /oracle/<MYSID>/sapdata1/sr3700_3/sr3700.data3           2411732992   26     9764872  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3700     ONLINE*    ONLINE+   /oracle/<MYSID>/sapdata1/sr3700_4/sr3700.data4          10485768192   27     9764872  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3700     ONLINE*    ONLINE+   /oracle/<MYSID>/sapdata2/sr3700_5/sr3700.data5          10485768192   28     9764872  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3700     ONLINE*    ONLINE+   /oracle/<MYSID>/sapdata2/sr3700_6/sr3700.data6          10485768192   29     9764872  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3700     ONLINE*    ONLINE+   /oracle/<MYSID>/sapdata2/sr3700_7/sr3700.data7           9374277632   30     9764872  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3700     ONLINE*    ONLINE+   /oracle/<MYSID>/sapdata2/sr3700_8/sr3700.data8           2789220352   31     9764872  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3700     ONLINE*    ONLINE+   /oracle/<MYSID>/sapdata3/sr3700_10/sr3700.data10         2327846912   33     9764872  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3700     ONLINE*    ONLINE+   /oracle/<MYSID>/sapdata3/sr3700_11/sr3700.data11         2411732992   34     9764872  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3700     ONLINE*    ONLINE+   /oracle/<MYSID>/sapdata3/sr3700_12/sr3700.data12         2181046272   35     9764872  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3700     ONLINE*    ONLINE+   /oracle/<MYSID>/sapdata3/sr3700_9/sr3700.data9           3187679232   32     9764872  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3700     ONLINE*    ONLINE+   /oracle/<MYSID>/sapdata4/sr3700_13/sr3700.data13         2160074752   36     9764872  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3700     ONLINE*    ONLINE+   /oracle/<MYSID>/sapdata4/sr3700_14/sr3700.data14         2327846912   37     9764872  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3700     ONLINE*    ONLINE+   /oracle/<MYSID>/sapdata4/sr3700_15/sr3700.data15         2222989312   38     9764872  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3700     ONLINE*    ONLINE+   /oracle/<MYSID>/sapdata4/sr3700_16/sr3700.data16         2139103232   39     9764872  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3700     ONLINE*    ONLINE    /oracle/<MYSID>/sapdata4/sr3700_17/sr3700.data17         2097160192   43     9764872  NOLINK  FILE             0            0     8192
    PSAPSR3700     ONLINE*    ONLINE    /oracle/<MYSID>/sapdata4/sr3700_18/sr3700.data18         2097160192   44     9764872  NOLINK  FILE             0            0     8192
    PSAPSR3700     ONLINE*    ONLINE    /oracle/<MYSID>/sapdata4/sr3700_19/sr3700.data19         2097160192   45     9764872  NOLINK  FILE             0            0     8192
    PSAPSR3USR     ONLINE*    ONLINE+   /oracle/<MYSID>/sapdata1/sr3usr_1/sr3usr.data1             20979712   40     9764872  NOLINK  FILE   10485760000     20971520     8192
    PSAPTEMP       ONLINE#    ONLINE+   /oracle/<MYSID>/sapdata2/temp_1/temp.data1               2097160192   -1     9764872  NOLINK  FILE   10485760000     20971520     8192
    PSAPUNDO       ONLINE-    ONLINE+   /oracle/<MYSID>/sapdata3/undo_1/undo.data1               9374277632    2     9764872  NOLINK  FILE   10485760000     20971520     8192
    SYSAUX         ONLINE*    ONLINE+   /oracle/<MYSID>/sapdata1/sysaux_1/sysaux.data1            272637952    3     9764872  NOLINK  FILE   10485760000     20971520     8192
    SYSAUX         ONLINE*    ONLINE    /oracle/<MYSID>/sapdata1/sysaux_2/sysaux.data2           2097160192   42     9764872  NOLINK  FILE             0            0     8192
    SYSTEM         ONLINE*    SYSTEM+   /oracle/<MYSID>/sapdata1/system_1/system.data1            880812032    1     9764872  NOLINK  FILE   10485760000     20971520     8192
    SYSTEM         ONLINE*    SYSTEM    /oracle/<MYSID>/sapdata1/system_2/system.data2           2097160192   41     9764872  NOLINK  FILE             0            0     8192
    BR0119I Redo log files
    File                                                Size  Group     Device  Status    Link    Type
    /oracle/<MYSID>/origlogA/log_g11m1.dbf              52429312    1      9764872  INUSE     NOLINK  FILE
    /oracle/<MYSID>/mirrlogA/log_g11m2.dbf              52429312    1      9764872  INUSE     NOLINK  FILE
    /oracle/<MYSID>/origlogB/log_g12m1.dbf              52429312    2      9764872  INUSE     NOLINK  FILE
    /oracle/<MYSID>/mirrlogB/log_g12m2.dbf              52429312    2      9764872  INUSE     NOLINK  FILE
    /oracle/<MYSID>/origlogA/log_g13m1.dbf              52429312    3      9764872  INUSE     NOLINK  FILE
    /oracle/<MYSID>/mirrlogA/log_g13m2.dbf              52429312    3      9764872  INUSE     NOLINK  FILE
    /oracle/<MYSID>/origlogB/log_g14m1.dbf              52429312    4      9764872  INUSE     NOLINK  FILE
    /oracle/<MYSID>/mirrlogB/log_g14m2.dbf              52429312    4      9764872  INUSE     NOLINK  FILE
    BR0120I Control files
    File                                                Size   Id.      Device  Link    Type
    /oracle/<MYSID>/origlogA/cntrl/cntrl<MYSID>.dbf         15908864    0      9764872  NOLINK  FILE
    /oracle/<MYSID>/origlogB/cntrl/cntrl<MYSID>.dbf         15908864    0      9764872  NOLINK  FILE
    /oracle/<MYSID>/sapdata1/cntrl/cntrl<MYSID>.dbf         15908864    0      9764872  NOLINK  FILE
    BR0280I BRBACKUP time stamp: 2008-11-14 22.18.57
    BR0057I Backup of database: <MYSID>
    BR0058I BRBACKUP action ID: bdzgizji
    BR0059I BRBACKUP function ID: aff
    BR0110I Backup mode: ALL
    BR0077I Database files for backup:
    /oracle/<MYSID>/origlogA/log_g11m1.dbf
    /oracle/<MYSID>/origlogB/log_g12m1.dbf
    /oracle/<MYSID>/origlogA/log_g13m1.dbf
    /oracle/<MYSID>/origlogB/log_g14m1.dbf
    /oracle/<MYSID>/origlogA/cntrl/cntrl<MYSID>.dbf
    BR0061I 51 files found for backup, total size 146335.533 MB
    BR0143I Backup type: offline_force
    BR0130I Backup device type: util_file
    BR0109I Files will be saved by backup utility
    BR0289I BRARCHIVE will be started at the end of processing
    BR0126I Unattended mode active - no operator confirmation required
    BR0280I BRBACKUP time stamp: 2008-11-14 22.18.57
    BR0307I Shutting down database instance <MYSID> ...
    BR0280I BRBACKUP time stamp: 2008-11-14 22.20.47
    BR0308I Shutdown of database instance <MYSID> successful
    BR0280I BRBACKUP time stamp: 2008-11-14 22.20.47
    BR0229I Calling backup utility with function 'backup'...
    BR0278I Command output of '/usr/sap/<MYSID>/SYS/exe/run/backint -u <MYSID> -f backup -i /oracle/<MYSID>/sapbackup/.bdzgizji.lst -t file -p /oracle/<MYSID>/102_64/dbs/init<MYSID>.utl -c':
    WARNING: sort_backup_type not specified in .utl file
    WARNING: default sort_backup_type to <size> for backup
    ///Here i feel some doubt initially but it does not have to take anything with this error as same warning is there in DEV server log also but there backup is sucessful///
    Program:          /usr/sap/<MYSID>/SYS/exe/run/backint 6.0
    Input File:          /oracle/<MYSID>/sapbackup/.bdzgizji.lst
    Profile:          /oracle/<MYSID>/102_64/dbs/init<MYSID>.utl
    Function:          BACKUP
    Backup Type:          BACKUP_FILE
    BR0280I BRBACKUP time stamp: 2008-11-15 05.11.02
    #FILE..... /oracle/<MYSID>/sapdata1/sr3_1/sr3.data1
    #SAVED.... VXF1226681408
    BR0280I BRBACKUP time stamp: 2008-11-15 05.11.02
    #FILE..... /oracle/<MYSID>/sapdata1/sr3_2/sr3.data2
    #SAVED.... VXF1226681408
    BR0280I BRBACKUP time stamp: 2008-11-15 05.11.02
    #FILE..... /oracle/<MYSID>/sapdata1/sr3_3/sr3.data3
    #SAVED.... VXF1226681408
    BR0280I BRBACKUP time stamp: 2008-11-15 05.11.02
    #FILE..... /oracle/<MYSID>/sapdata1/sr3_4/sr3.data4
    #SAVED.... VXF1226681408
    BR0280I BRBACKUP time stamp: 2008-11-15 05.11.02
    #FILE..... /oracle/<MYSID>/sapdata1/sr3_5/sr3.data5
    #SAVED.... VXF1226681408
    BR0280I BRBACKUP time stamp: 2008-11-15 05.11.02
    #FILE..... /oracle/<MYSID>/sapdata2/sr3_10/sr3.data10
    #SAVED.... VXF1226681408
    BR0280I BRBACKUP time stamp: 2008-11-15 05.11.02
    #FILE..... /oracle/<MYSID>/sapdata2/sr3_6/sr3.data6
    #SAVED.... VXF1226681408
    BR0280I BRBACKUP time stamp: 2008-11-15 05.11.02
    #FILE..... /oracle/<MYSID>/sapdata2/sr3_7/sr3.data7
    #SAVED.... VXF1226681408
    BR0280I BRBACKUP time stamp: 2008-11-15 05.11.02
    #FILE..... /oracle/<MYSID>/sapdata2/sr3_8/sr3.data8
    #SAVED.... VXF1226681408
    BR0280I BRBACKUP time stamp: 2008-11-15 05.11.02
    #FILE..... /oracle/<MYSID>/sapdata2/sr3_9/sr3.data9
    #SAVED.... VXF1226681408
    BR0280I BRBACKUP time stamp: 2008-11-15 05.11.02
    #FILE..... /oracle/<MYSID>/sapdata3/sr3_11/sr3.data11
    #SAVED.... VXF1226681408
    BR0280I BRBACKUP time stamp: 2008-11-15 05.11.02
    #FILE..... /oracle/<MYSID>/sapdata3/sr3_12/sr3.data12
    #SAVED.... VXF1226681408
    BR0280I BRBACKUP time stamp: 2008-11-15 05.11.02
    #FILE..... /oracle/<MYSID>/sapdata3/sr3_13/sr3.data13
    #SAVED.... VXF1226681408
    BR0280I BRBACKUP time stamp: 2008-11-15 05.11.02
    #FILE..... /oracle/<MYSID>/sapdata3/sr3_14/sr3.data14
    #SAVED.... VXF1226681408
    BR0280I BRBACKUP time stamp: 2008-11-15 05.11.02
    #FILE..... /oracle/<MYSID>/sapdata3/sr3_15/sr3.data15
    #SAVED.... VXF1226681408
    BR0280I BRBACKUP time stamp: 2008-11-15 05.11.02
    #FILE..... /oracle/<MYSID>/sapdata4/sr3_16/sr3.data16
    #SAVED.... VXF1226681408
    BR0280I BRBACKUP time stamp: 2008-11-15 05.11.02
    #FILE..... /oracle/<MYSID>/sapdata4/sr3_17/sr3.data17
    #SAVED.... VXF1226681408
    BR0280I BRBACKUP time stamp: 2008-11-15 05.11.02
    #FILE..... /oracle/<MYSID>/sapdata4/sr3_18/sr3.data18
    #SAVED.... VXF1226681408
    BR0280I BRBACKUP time stamp: 2008-11-15 05.11.02
    #FILE..... /oracle/<MYSID>/sapdata4/sr3_19/sr3.data19
    #SAVED.... VXF1226681408
    BR0280I BRBACKUP time stamp: 2008-11-15 05.11.02
    #FILE..... /oracle/<MYSID>/sapdata4/sr3_20/sr3.data20
    #SAVED.... VXF1226681408
    BR0280I BRBACKUP time stamp: 2008-11-15 05.11.02
    #FILE..... /oracle/<MYSID>/sapdata1/sr3700_1/sr3700.data1
    #SAVED.... VXF1226681408
    BR0280I BRBACKUP time stamp: 2008-11-15 05.11.02
    #FILE..... /oracle/<MYSID>/sapdata1/sr3700_2/sr3700.data2
    #SAVED.... VXF1226681408
    BR0280I BRBACKUP time stamp: 2008-11-15 05.11.02
    #FILE..... /oracle/<MYSID>/sapdata1/sr3700_3/sr3700.data3
    #SAVED.... VXF1226681408
    BR0280I BRBACKUP time stamp: 2008-11-15 05.11.02
    #FILE..... /oracle/<MYSID>/sapdata1/sr3700_4/sr3700.data4
    #SAVED.... VXF1226681408
    BR0280I BRBACKUP time stamp: 2008-11-15 05.11.02
    #FILE..... /oracle/<MYSID>/sapdata2/sr3700_5/sr3700.data5
    #SAVED.... VXF1226681408
    BR0280I BRBACKUP time stamp: 2008-11-15 05.11.02
    #FILE..... /oracle/<MYSID>/sapdata2/sr3700_6/sr3700.data6
    #SAVED.... VXF1226681408
    BR0280I BRBACKUP time stamp: 2008-11-15 05.11.02
    #FILE..... /oracle/<MYSID>/sapdata2/sr3700_7/sr3700.data7
    #SAVED.... VXF1226681408
    BR0280I BRBACKUP time stamp: 2008-11-15 05.11.02
    #FILE..... /oracle/<MYSID>/sapdata2/sr3700_8/sr3700.data8
    #SAVED.... VXF1226681408
    BR0280I BRBACKUP time stamp: 2008-11-15 05.11.02
    #FILE..... /oracle/<MYSID>/sapdata3/sr3700_10/sr3700.data10
    #SAVED.... VXF1226681408
    BR0280I BRBACKUP time stamp: 2008-11-15 05.11.02
    #FILE..... /oracle/<MYSID>/sapdata3/sr3700_11/sr3700.data11
    #SAVED.... VXF1226681408
    BR0280I BRBACKUP time stamp: 2008-11-15 05.11.02
    #FILE..... /oracle/<MYSID>/sapdata3/sr3700_12/sr3700.data12
    #SAVED.... VXF1226681408
    BR0280I BRBACKUP time stamp: 2008-11-15 05.11.02
    #FILE..... /oracle/<MYSID>/sapdata3/sr3700_9/sr3700.data9
    #SAVED.... VXF1226681408
    BR0280I BRBACKUP time stamp: 2008-11-15 05.11.02
    #FILE..... /oracle/<MYSID>/sapdata4/sr3700_13/sr3700.data13
    #SAVED.... VXF1226681408
    BR0280I BRBACKUP time stamp: 2008-11-15 05.11.02
    #FILE..... /oracle/<MYSID>/sapdata4/sr3700_14/sr3700.data14
    #SAVED.... VXF1226681408
    BR0280I BRBACKUP time stamp: 2008-11-15 05.11.02
    #FILE..... /oracle/<MYSID>/sapdata4/sr3700_15/sr3700.data15
    #SAVED.... VXF1226681408
    BR0280I BRBACKUP time stamp: 2008-11-15 05.11.02
    #FILE..... /oracle/<MYSID>/sapdata4/sr3700_16/sr3700.data16
    #SAVED.... VXF1226681408
    BR0280I BRBACKUP time stamp: 2008-11-15 05.11.02
    #FILE..... /oracle/<MYSID>/sapdata4/sr3700_17/sr3700.data17
    #SAVED.... VXF1226681408
    BR0280I BRBACKUP time stamp: 2008-11-15 05.11.02
    #FILE..... /oracle/<MYSID>/sapdata4/sr3700_18/sr3700.data18
    #SAVED.... VXF1226681408
    BR0280I BRBACKUP time stamp: 2008-11-15 05.11.02
    #FILE..... /oracle/<MYSID>/sapdata4/sr3700_19/sr3700.data19
    #SAVED.... VXF1226681408
    BR0280I BRBACKUP time stamp: 2008-11-15 05.11.02
    #FILE..... /oracle/<MYSID>/sapdata1/sr3usr_1/sr3usr.data1
    #SAVED.... VXF1226681408
    BR0280I BRBACKUP time stamp: 2008-11-15 05.11.02
    #FILE..... /oracle/<MYSID>/sapdata2/temp_1/temp.data1
    #SAVED.... VXF1226681408
    BR0280I BRBACKUP time stamp: 2008-11-15 05.11.02
    #FILE..... /oracle/<MYSID>/sapdata3/undo_1/undo.data1
    #SAVED.... VXF1226681408
    BR0280I BRBACKUP time stamp: 2008-11-15 05.11.02
    #FILE..... /oracle/<MYSID>/sapdata1/sysaux_1/sysaux.data1
    #SAVED.... VXF1226681408
    BR0280I BRBACKUP time stamp: 2008-11-15 05.11.02
    #FILE..... /oracle/<MYSID>/sapdata1/sysaux_2/sysaux.data2
    #SAVED.... VXF1226681408
    BR0280I BRBACKUP time stamp: 2008-11-15 05.11.02
    #FILE..... /oracle/<MYSID>/sapdata1/system_1/system.data1
    #SAVED.... VXF1226681408
    BR0280I BRBACKUP time stamp: 2008-11-15 05.11.02
    #FILE..... /oracle/<MYSID>/sapdata1/system_2/system.data2
    #SAVED.... VXF1226681408
    BR0280I BRBACKUP time stamp: 2008-11-15 05.11.02
    #FILE..... /oracle/<MYSID>/origlogA/log_g11m1.dbf
    #SAVED.... VXF1226681408
    BR0280I BRBACKUP time stamp: 2008-11-15 05.11.02
    #FILE..... /oracle/<MYSID>/origlogB/log_g12m1.dbf
    #SAVED.... VXF1226681408
    BR0280I BRBACKUP time stamp: 2008-11-15 05.11.02
    #FILE..... /oracle/<MYSID>/origlogA/log_g13m1.dbf
    #SAVED.... VXF1226681408
    BR0280I BRBACKUP time stamp: 2008-11-15 05.11.02
    #FILE..... /oracle/<MYSID>/origlogB/log_g14m1.dbf
    #SAVED.... VXF1226681408
    BR0280I BRBACKUP time stamp: 2008-11-15 05.11.02
    #FILE..... /oracle/<MYSID>/origlogA/cntrl/cntrl<MYSID>.dbf
    #SAVED.... VXF1226681408
    BR0280I BRBACKUP time stamp: 2008-11-15 05.11.02
    BR0232I 51 of 51 files saved by backup utility
    BR0230I Backup utility called successfully
    BR0280I BRBACKUP time stamp: 2008-11-15 05.11.04
    BR0304I Starting and opening database instance <MYSID> ...
    BR0280I BRBACKUP time stamp: 2008-11-15 05.11.35
    BR0305I Start and open of database instance <MYSID> successful
    BR0117I ARCHIVE LOG LIST after backup for database instance <MYSID>
    Parameter                      Value
    Database log mode              Archive Mode
    Automatic archival             Enabled
    Archive destination            /oracle/<MYSID>/oraarch/<MYSID>arch
    Archive format                 %t_%s_%r.dbf
    Oldest online log sequence     2864
    Next log sequence to archive   2867
    Current log sequence           2867             SCN: 21991272
    Database block size            8192             Thread: 1
    Current system change number   22012086         ResetId: 665869765
    BR0280I BRBACKUP time stamp: 2008-11-15 05.11.37
    BR0229I Calling backup utility with function 'backup'...
    BR0278I Command output of '/usr/sap/<MYSID>/SYS/exe/run/backint -u <MYSID> -f backup -i /oracle/<MYSID>/sapbackup/.bdzgizji.lst -t file -p /oracle/<MYSID>/102_64/dbs/init<MYSID>.utl -c':
    WARNING: sort_backup_type not specified in .utl file
    WARNING: default sort_backup_type to <size> for backup
    Program:          /usr/sap/<MYSID>/SYS/exe/run/backint 6.0
    Input File:          /oracle/<MYSID>/sapbackup/.bdzgizji.lst
    Profile:          /oracle/<MYSID>/102_64/dbs/init<MYSID>.utl
    Function:          BACKUP
    Backup Type:          BACKUP_FILE
    BR0280I BRBACKUP time stamp: 2008-11-15 05.12.09
    #PFLOG.... /oracle/<MYSID>/102_64/dbs/init<MYSID>.ora
    #SAVED.... VXF1226706058
    BR0280I BRBACKUP time stamp: 2008-11-15 05.12.09
    #PFLOG.... /oracle/<MYSID>/102_64/dbs/spfile<MYSID>.ora
    #SAVED.... VXF1226706058
    BR0280I BRBACKUP time stamp: 2008-11-15 05.12.09
    #PFLOG.... /oracle/<MYSID>/102_64/dbs/init<MYSID>.sap
    #SAVED.... VXF1226706058
    BR0280I BRBACKUP time stamp: 2008-11-15 05.12.09
    #PFLOG.... /oracle/<MYSID>/102_64/dbs/init<MYSID>.utl
    #SAVED.... VXF1226706058
    BR0280I BRBACKUP time stamp: 2008-11-15 05.12.09
    #PFLOG.... /oracle/<MYSID>/sapreorg/space<MYSID>.log
    #SAVED.... VXF1226706058
    BR0280I BRBACKUP time stamp: 2008-11-15 05.12.09
    #PFLOG.... /oracle/<MYSID>/sapreorg/struc<MYSID>.log
    #SAVED.... VXF1226706058
    BR0280I BRBACKUP time stamp: 2008-11-15 05.12.09
    #PFLOG.... /oracle/<MYSID>/sapbackup/bdzgizji.aff
    #SAVED.... VXF1226706058
    BR0280I BRBACKUP time stamp: 2008-11-15 05.12.09
    #PFLOG.... /oracle/<MYSID>/sapbackup/back<MYSID>.log
    #SAVED.... VXF1226706058
    BR0280I BRBACKUP time stamp: 2008-11-15 05.12.09
    BR0232I 8 of 8 files saved by backup utility
    BR0230I Backup utility called successfully
    BR0056I End of database backup: bdzgizji.aff 2008-11-15 05.12.09
    BR0280I BRBACKUP time stamp: 2008-11-15 05.12.13
    BR0053I BRBACKUP completed successfully with warnings
    BR0280I BRBACKUP time stamp: 2008-11-15 05.12.13
    BR0291I BRARCHIVE will be started with options '-U -d util_file -sd -c'
    BR0280I BRBACKUP time stamp: 2008-11-15 05.13.36
    BR0292I Execution of BRARCHIVE finished with return code 0
    Please suggest as i am not able to understand that error code.
    Thanks

  • Imp tip to successful without warnings

    I am doing full imp of one full exported dmp file, To finish full exp i used
    direct=y &
    statistics=none
    and full exp was successful without warnings....
    I am looking for tips to do full imp of this dmp file without warnings also
    i already used
    ignore=y
    constraints=n
    but still imp ended with ended with warnings of integrity violations , I am looking for tips to do imp without warnings .......which parameters i should use to do so?

    Hi,
    but still imp ended with ended with warnings of integrity violationsBe aware that it can be faster to disable constraints and drop indices, and re-add them later. I have notes here:
    http://www.dba-oracle.com/oracle_tips_load_speed.htm
    Hope this helps. . .
    Don Burleson
    Oracle Press author

  • DB12 log RC code:0001 Success with warnings

    Hi,
    I have scheduled <b>Whole database online + redo log backup</b> , which started successfully. I have went to DB12 then log shows that return code :0001 sucess with warnings
    Also message pops up that "The redo log files created during the last online backup have not yet been archived using BRARCHIVE.They are needed for a complete recovery."
    Not sure what is this warning. Any help...
    Thanks
    Chimsik

    How are you scheduling this backup (in DB13 or using scripts / sapdba)? Please post the part of the backup log that shows the command that was run to start the backups. Also please post from the end of the logs, which shows progress in backing up the archives. There may also be a separate archive log file corresponding to your backup run. Please paste that as well.
    Typically archives can be covered by flags -sd, -cds etc. I would like to know what flags your backup is using.
    Regards,
    Sanket

  • Export terminated successfully with warnings, warning is ignoreable

    Is this waring ignorable?
    Connected to: Oracle9i Enterprise Edition Release 9.2.0.4.0 - 64bit Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.4.0 - Production
    Export done in US7ASCII character set and AL16UTF16 NCHAR character set
    server uses WE8ISO8859P1 character set (possible charset conversion)
    Note: table data (rows) will not be exported
    About to export the entire database ...
    . exporting tablespace definitions
    . exporting profiles
    . exporting user definitions
    . exporting roles
    . exporting resource costs
    . exporting rollback segment definitions
    . exporting database links
    . exporting sequence numbers
    . exporting directory aliases
    . exporting context namespaces
    . exporting foreign function library names
    . exporting PUBLIC type synonyms
    . exporting private type synonyms
    . exporting object type definitions
    EXP-00097: Object type "SYSTEM"."ValidateTravelBookingRS102_T" is not in a valid state, type will not be exported
    "q17alsn.log" 622 lines, 32848 characters
    EXP-00097: Object type "SYSTEM"."ErrorType100_T" is not in a valid state, type will not be exported
    EXP-00097: Object type "SYSTEM"."TravelSegmentType99_T" is not in a valid state, type will not be exported
    EXP-00097: Object type "SYSTEM"."Address98_T" is not in a valid state, type will not be exported
    EXP-00097: Object type "SYSTEM"."ValidateTravelBookingRQ96_T" is not in a valid state, type will not be exported
    EXP-00097: Object type "SYSTEM"."TravelSegmentType95_T" is not in a valid state, type will not be exported
    EXP-00097: Object type "SYSTEM"."Address94_T" is not in a valid state, type will not be exported
    EXP-00097: Object type "SYSTEM"."ValidateTravelPlanRS92_T" is not in a valid state, type will not be exported
    EXP-00097: Object type "SYSTEM"."ErrorType90_T" is not in a valid state, type will not be exported
    EXP-00097: Object type "SYSTEM"."TravelSegmentType89_T" is not in a valid state, type will not be exported
    EXP-00097: Object type "SYSTEM"."TravelSegmentType87_T" is not in a valid state, type will not be exported
    EXP-00097: Object type "SYSTEM"."MemberInfoRS85_T" is not in a valid state, type will not be exported
    EXP-00097: Object type "SYSTEM"."ErrorType83_T" is not in a valid state, type will not be exported
    EXP-00097: Object type "SYSTEM"."MemberInfoRQ81_T" is not in a valid state, type will not be exported
    . exporting system procedural objects and actions
    . exporting pre-schema procedural objects and actions
    . exporting cluster definitions
    . about to export SYSTEM's tables via Direct Path ...
    . . exporting table AQ$_INTERNET_AGENTS

    The object type"s status is invalid which may be caused by a dependant type"s modification without cascading the change. You must have the type recompiled using ALTER TYPE COMPILE prior to performing the export operation.
    ~ Madrid

  • Success with adding an external eSATA drive to a Verizon FIOS DVR

    August 4, 2012 - Success with adding an external eSATA drive to a Verizon FIOS DVR
    I just upgraded from a Comcast DVR to a Verizon FIOS DVR.   I upgraded because my old DVR was limited to 500GB (1/2 TB) on the internal drive and the new FIOS DVR allowed for a much larger external eSATA drive.   Selecting a viable external drive for the FIOS DVR was easier said than done.  The three drives listed on the Verizon web site as compatible with FIOS DVRs are no longer manufactured by western digital and are not available on the market.
    The DVR that I received from Verizon was a Cisco "CHS 435 HD DVR" that came with a 500GB (1/2 TB) internal drive.   This is one of their "Multi-Room DVRs" that allows other set top boxes (not DVRs) to watch videos recorded on it.
    I selected a western digital "WD30EURS" eSATA disk drive because it was a follow on product to one of the three listed as acceptable by Verzion on their web page and it was 3TB in size.  I ordered from amazon.com for $170.99.  This drive is a "bare drive" so it does not come with an external encloser or a eSATA cable.  
    According to the Western Digial web site this is a AV-GP drive:  "These drives are designed to last in high temperature always-on, streaming digital audio/video environments such as PVR/DVR, IPTV, and video surveillance systems."
    http://www.wdc.com/wdproducts/library/AAG/ENG/2178-771131.pdf 
    I got a "Macally G-S350SU Hi-Speed eSata/USB2.0 External Storage Enclosure for 3.5inch SATA HDD" to hold the drive for $34.39.  I chose this one because it does not use a fan that could cause continious noise.  The box is made out of metal so it cools itself as long as it is exposed to air (not covered up).  This box comes with an external power supply that has a small transformer that plugs into a wall outlet.
    Then I needed a eSATA cable.  I got a "StarTech 6-Feet Shielded External eSATA Cable M/M (ESATA6)" for $6.50 and a 3-foot version for $5.90.  I went with the longer one so that the cable would be less likely to become accidentally unplugged if I need to move the drive or the DVR.  The cables and the drive houseing came from the same Amazon provider so it saved me on shipping. The drive came from Amazon/Western Digial directly but they do not have external housings or eSATA cables on that site.
    The total cost was $255.56 including shipping for all these items.  
    I went with the largest (3TB) drive from western digial's AV-GP line to avoid a future upgrade from a smaller drive to a larger drive.   There is no way to copy videos from one external eSATA drive to another drive because they are formatted by the FIOS DVR in a propriatary format.  That would mean that any future upgrade would require losing all recorded files during an upgrade.  That also means that there is no way to back up the contents of the drive to protect yourself from hard drive failure.
    The installer who setup the DVR did not want me to plug in the drive while he was there and explained that I was on my own when I attached this kind of personal device to the DVR.  When I plugged in the new eSATA drive it was automatically discovered.  I was asked by the DVR if I wanted to format the new drive.  I answered yes and within 2 hours the drive completed formatting.   I did not watch the boring format so it could have finished faster.   
    When I started recording new videos they go directly to the external drive automatically and avoids the internal drive.  It had no trouble recording two HD shows and playing a recording at the same time.  I now have 20 hours of HD video recorded and the 3TB external drive is 17% full.  So far my experience with the external drive has been great.   No problems or issues.   Learning the new remote control, new DVR menu system, and web browser control of the DVR from a laptop is another story.  It will take some time to figure out how to make all the new features work.
    It took me a while to figure out how to make this work since the verizon web site made useless suggestions and pointed me to products that are not available any more.  I could not tell if this really would work until I plugged it in and then I was pleasantly suprised that it did.  I have had this working for 3 days without any issues.  I hope this post makes it easier for you to add an external eSATA drive to your DVR.
    Here are the three items ordered from Amazon to make this work:
    Western Digital 3 TB AV-GP 3 TB SATA 2 Intellipower 64 MB Cache Bulk/OEM 3.5-Inch Internal Bare Driv...
    Macally G-S350SU Hi-Speed eSata/USB2.0 External Storage Enclosure for 3.5inch SATA HDD
    StarTech 6-Feet Shielded External eSATA Cable M/M (ESATA6)

    You are right. I can only access 2TB of my 3TB external drive. That gives me a total of 2.5 TB counting the internal (0.5 TB) and external (2.0 TB) drives. This is a significant improvement over the just the 0.5 TB internal drive. I have not been able to find a reason for this limitation. Cisco and Verizon do not mention any limits that I can find. I hope that a future BIOS upgrade could provide access to more space but this would probably require me to reformat the drive and lose everything recorded.
    I paid $170.99 for the 3 TB WD30EURS drive at amazon. I could have gotten away with spending only $116.99 for the 2 TB WD20EURS drive. Not worth returning at this point so I will stay with it. Makes me glad I didn't buy the most expensive 6 TB external  monster drive available from another company.
    I bought: 3TB drive: Western Digital 3 TB AV-GP 3 TB SATA 2 Intellipower 64 MB Cache Bulk/OEM 3.5-Inch Internal Bare Drive WD30EURS by Western Digital
    I could have bought: 2TB drive: Western Digital AV-GP 2 TB SATA II Intellipower 64 MB Cache Bulk/OEM Internal Hard Drive - WD20EURS by Western Digital
    Details of what I learned:
    The external 2 TB drive now has 41 hours of HD video recorded and claims to be 34% full (66% free). My estimate would allow me to have aprox 120 hours of HD on the external drive (2TB) and 30 hours of HD on the internal drive (500GB) for a total of 150 hours of HD. This will keep me happy for the near future.
    There is a hidden "diagnostic menu" that is not normally accessible or documented by CISCO or Verizon. This menu has a lot of interesting info on the inner working of the DVR. There was an obscure reference to this menu on another forum.
    To access this diagnostics menu:
    1) Get the DVR into normal live tv mode (no menu, no guide, no pause ...)
    2) Go to the Cisco CHS 435 HD DVR (not the remote control) and press these buttons on the front of the DVR: Press both the Left Arrow "<-" button and "OK" button at the same time and hold them both down for aprox 5 seconds.
    3) The "Verizon FiOS TV Diagnostics Menu" menu will appear. The menu can then be used by the remote control.
    4) I chose "D03 Memory / HDD" and then "Hard Disk Information" and finally "OK"
    A five page disk report appeared. With a little bit of interpretation I discovered:
    The Internal Drive is know as "drive 1/hdc1" has 461 GB total space with 454 GB free.
    The External Drive is split into two partitions "hdc2" and "hdc3" (aka two mount points).
    "drive 2/hdc2" has 1007 MB total with 317 GB free
    "drive 3/hdc3" has 1007 MB total with 974 GB free
    The normal DVR menu has an "Eject" feature that allows you to stop the external drive and make it safe to remove it from the DVR without losing anything via an unplanned drive removal. This can be found at "DVR" button on remote then "Settings"->"External Hard Drive"->"Eject".

  • Time machine only copies User Info and Users (Applications, Library, and System are missing) from my quad core Mac Pro.  45 Gb of 162 Gb are missing.  Any one having success with time machine copying all folders using Mavericks?   What do I need to do dif

    Time machine only copies User Info and Users (Applications, Library, and System are missing) from my quad core Mac Pro.  45 Gb of 162 Gb are missing.  Any one having success with time machine copying all folders using Mavericks?
    What do I need to do differently?

    The late, great Pondini was investigating that issue before he passed away.
    See here: https://discussions.apple.com/thread/5125969
    I think there might be information there on how to reset Time Machine to do a full backup. I think you basically have to reset it and start over.

  • Cluster Setup Support Rules fails with Warnings

    Hi,
    I'm in the process of installing our ECC production server in a clustered environment on windows server 2008 with SQL server 2008 as our database.
    The MSCS cluster at the OS level has been configured successfully. When I start the SQL server installation as mentioned in the installation guide, the Setup Support Rules fails with following warnings.
    1. The setup support file prompts me to set the MSDTC service as a clustered one but it was not mentioned anywhere in the installation guide that the MSDTC service needs to be clustered. Do I need to cluster that service with seperate network ip address and cluster group ?
    2. The Network binding order issues a warning even though the adapters are set up in the right order as mentioned in the installation guide.
    3. Eventhough there is a internet connectivity available in the server, the "Microsoft .Net Application Security" check issues a warning.
    NB: As per the cluster validation report, the clustering at the OS level seems to be fine.
    Please provide me your valuable suggestions to rectify these warnings. Can I ignore these warnings and proceed with the installation of SQL Server ?
    Regards,
    Varadharajan M

    Hi,
    Microsoft Distributed Transaction Coordinator
    Is is user by older versions of Mssql database.
    From a SAP perspective you don't need this service.
    You can ignore setup request for this service.
    As per the reply, I understand that the MSDTC service is not mandatory to cluster in Windows Server 2008/MS SQL Server 2008. But when i try to install the SQL DB, the Set support rule ends up with warnings saying that the MSDTC service should be clustered. Can I ignore the warnings and proceed with the installation. Can anyone confirm this please ?
    Also please confirm whether we need to have the db cluster group in the DNS before initiating the SQL Server Set up.
    Regards,
    Varadharajan M

  • HT203175 When I try to back up my Iphone, I get a message that My Iphone can not be backed up on my computer.  My computer is authorized and I have been successful with this in the past. I uninstalled Itunes and reinstalled the lastest version and the sam

    When I try to back up my Iphone, I get a message that My Iphone can not be backed up on my computer.  My computer is authorized and I have been successful with this in the past. I uninstalled Itunes and reinstalled the lastest version and the same problem occurs.

    If you are running Tiger, you don't have time machine. 
    You need to get something like SuperDuper! or Carbon Copy Cloner (sorry, I don't have a handy link for CCC but you can Google it to get their site) to make a clone of your drive on the external and then do incremental backups.  The free versions do a lot and you can upgrade to the full-service versions for small change if you need more.  The one time I used SuperDuper! for cloning a volume it worked just fine. 
    (My backup application is the last PPC capable version of Retrospect, which does a credible job, or has over the past ten-twelve years.)

  • My iPod touch 4th gen. Keeps giving me the error message "cannot connect to the app store when I sign in. I can open the app store and browse it but I can't download anything. I have full signal strength with my wi-fi and safari is working perfect.

    My iPod touch 4th gen. Keeps giving me the error message "cannot connect to the app store when I sign in. I can open the app store and browse it but I can't download anything. I have full signal strength with my wi-fi and safari is working perfect. I turned it off and restarted it 3 times now. I have an iPad 2 and the app store works flawlessly with it. What is going on?

    Same here on my lpad2. Can access the web just fine from browsers but cannot install new apps or updates in appl store.  Seeing a few others reporting same issue tonight so likely an apple server issue and staff will notice it in network monitors and fix it...sometime this weekend.
    Rob

  • Magic Mouse  question. I have set this in Preferences by ticking Swipe between pages with  one finger and also Swipe between full-screen apps with two fingers,  however when I try to do the latter, the 2 finger swipe will take me only to the dashboard and

    It's a Magic Mouse question. I have set this up in Preferences by ticking Swipe between pages with one finger and also Swipe between full-screen apps with two fingers,  however when I try to do the latter, the 2 finger swipe will take me from the app that I am on to the dashboard only and not to my other open apps.
    I also find that Smart zoom only works with some apps, for instance not with Word docs or email.
    How can I correct this please?

    Just figured out it also does not work with the Mail app.

Maybe you are looking for

  • Error when running a script on linux

    Hi, Could you please help me with the below error identification. Am trying to run the mapbuilder.sh script in Red Hat Linux ES 3 and get the below error. I have JDK1.5 and JRE1.6 installed on Linux. the script contains the below statement which when

  • OAS 4.0.8.2 and NLS problem

    Hi, I migrated from OAS 4.0.8.1 to ...2. When I setup the net80 configuration using Easynet config I get the following error from the testing of the connection: ORA-12705: Invalid or unknown NLS parameter value specified. It just worked fine with the

  • Process chains in red(errors occurred), monitoring in green

    Hi friends,I have same problems with the monitoring / process chains. For exemples in the Monitor for OMAT_SALES in the tab Status I have green for Total and Technical with the message:    Data successfully updated    Diagnosis    The request has bee

  • Dashboard after software updates

    The text in my dashboard is converted into shapes and it only displays the outline of the texts. This happened after I updated OS X to 10.4.6 version. Can somebody help me fix this problem? Thanks!

  • SAP_ISU_FICA_Reclassification

    Hi, Could you explain about the Reclassification of receivable in FICA. At the same time what exactly we suppose do in FPRECL. Thanks for the support Prudhvi Edited by: Prudhvi.L on Jan 30, 2011 3:09 PM