SYS PACKAGE DBMS_DEFER_IMPORT_INTERNAL NOT ACCESSIBLE

We are trying to import a dmp file to Oracle 10.2.0.1 database. This is a full import and ignore=y has been given. We found the following error for one particular user
ORA-06550: line 2, column 5:
PLS-00302: component 'DBMS_DEFER_IMPORT_INTERNAL' must be declared
ORA-06550: line 2, column 1:
PL/SQL: Statement ignored
We observed that this is being executed when connected as a user FIDILEO, and on a standalone sql session too, we are getting the same error when executing the package
BEGIN
SYS.DBMS_DEFER_IMPORT_INTERNAL.QUEUE_IMPORT_CHECK('XXXXXX','IBMPC/WIN_NT-8.1.0');
END;
After much research on web, I have now done a GRANT command after logged in as SYS user, as
GRANT EXECUTE ON SYS.DBMS_DEFER_IMPORT_INTERNAL TO FIDILEO;
GRANT EXECUTE ON SYS.DBMS_DEFER_IMPORT_INTERNAL TO PUBLIC;
Still, we cannot execute this procedure when logged in as FIDILEO and continues to give the same error message. However, new users and other users are able to execute the PLSQL Block. I have verified that the package and it's body is VALID.
Basic overlook of the privileges shows that all seems right, still not able to execute this PLSQL block. This issue is happening for 3 packages
1. SYS.DBMS_DEFER_IMPORT_INTERNAL
2. SYS.DBMS_EXPORT_EXTENSION
3. SYS.DBMS_LOGREP_IMP
These issues were not in 11g import. Only in 10g. Can anyone help?
Message was edited by:
user636365

Version 10.2.0.1 is several years old and apparently never patched.
This may not solve your specific issue but based on your comment about not having the issue in 11g I would be reasonable, as a first step, to apply the available patches or at least determine if they address the issue before proceeding.

Similar Messages

  • Error message: ORA-06553: PLS-213: package STANDARD not accessible

    I log in the database by owner 'sys'. and I tried to drop a user from the database. But the db didn't allow me to do this. Then, I want to copy the table structure from one schema to another schema. the error is come:
    ORA-06553: PLS-213: package STANDARD not accessible
    Unreasonable that, I have tried to do this task many times before, it still worked. But after I failed to drop the user, then the db didn't allow me to copy table structure.
    That problem also affected that the user cannot sign-in into the company web site which is connected to database. Very complex problem now.
    What can I do now? Did the problem is related to the process of droping user? any setting I could do to let me fix it?
    Could you please help me to solve this problem? Thx very much!

    Thanks for your reply!
    Actually, I login as SYS, and I have run the following scripts in SQL*plus :
    SQL> connect / as sysdba
    SQL> $ORACLE_HOME/rdbms/admin/catalog.sql
    SQL> $ORACLE_HOME/rdbms/admin/catproc.sql
    SQL> $ORACLE_HOME/rdbms/admin/catexp.sql
    However, those scripts are response to following message:
    'ORACLE_HOME' is not recognized as an internal or external command,
    operable program or batch file.
    So, what could I do next? Thaks a lot!

  • ESS Busness Package Content Not Accessible For Delta Copy Role

    We are implementing EP 6.0 connected to an ECC 5.0 backend System. We have imported ESS Business Package 60.2 into the portal. If I assign the ESS role "out of the box" (PCD folder structure: CONTENT PROVIDED BY SAP => END USER CONTENT => com.sap.pct.ess.employee => com.sap.pct.ess.roles => Employee Self-Service) to the Everyone Group, the content displays correctly. I had to set the Web Dynpro System Permissions for the End User to get this to work (Everyone Group => Administrator None, End-User Enabled) but did NOT have to set any Permissions on the role or its parent folders. I made a delta copy of the ESS User Role and placed it in a customization folder in the PCD and then deleted some of the worksets from the delta copy. The remaining worksets, roles, iviews, etc in the delta copy role are located in the PCD in folder structure: CONTENT PROVIDED BY SAP => END USER CONTENT => com.sap.pct.ess.employee. The Web Dynpro System Permissions for the End User are set(Everyone Group => Administrator None, End-User Enabled). The ESS navigation tabs are visible as well as the Overview page but none of the area group pages or services will display. I have tried setting End-User permissions on the PCD folder that contains the delta copy role but it still will not work. Any ideas?

    HI,
          Please send me the best practice you use to create ESS role and workset.
    thanks,

  • Package NOT accessible outside parent/root directory - NoClassDefFoundError

    I can't seem to import a package I created, EXCEPT UNDER THE TOP LEVEL
    PARENT DIRECTORY. The following chronicles what I attempted. I read, and
    tried related postings in this newsgroup, but they have not totally
    solved my problems.
    /* d:\java\zsamples\zswingpackage1\swing-optgrp-eg1.java
    /* Following package stmts. causing run-time error "Exception in thread
    "main" java.lang.NoClassDefFoundError: zswingpackage1/Swing
    OptGroup1a [(wrong name: java/zsamples/zswingpackage1/SwingOptGroup1a)]".
    Solution: as suggested in newsgroup posting, changed package stmt. to
    include ONLY the SUBDIRECTORIES UNDERNEATH the top level 'java'
    directory (EXCLUDE 'java.' qualifier from package stmt.). Compiled from
    the parent directory of the package path, and also ran from that path
    i.e.
    package zsamples.zswingpackage1;     // omits the top level 'java' directory
    public class swing_optgrp_eg1 extends JFrame {
    Here's how I compiled:
         cd java
         d:\java>javac zsamples\zswingpackage1\swing_optgrp_eg1.java
    Here's how I executed:
         Following WORKED. Uses '.' aot backslash qualifier.
         D:\java>java zsamples.zswingpackage1.swing_optgrp_eg1
         Above package defn. solution allowed a calling program (residing under
         the top level 'java' directory) to successfully import the package
         (refer \java\test-package2.java)!! But having difficulties in importing
         this package when referenced in a calling program RESIDING IN A DEEPER
         LEVEL DIRECTORY, such as d:\java\zsamples (refer package-test1.java).
    Calling program1 (resides under d:\java\package-test2.java): WORKED
         /* This source purposely placed in the 1st level directory to test the
         theory/scenario: is it necessary to store the calling program (that
         accesses my package) in the top level directory (d:\java)? */
         import zsamples.zswingpackage1.swing_optgrp_eg1;     // resides under d:\java
    Calling program2 (resides under d:\java\zsamples\package-test1.java): DID NOT WORK
         /* Following import causing "package zsamples.zswingpackage1 does not exist"
              COMPILE ERROR. But worked in package-test2.java.
         Solution (wasn't necessary in package-test2.java):
              - specified 'java' in classpath i.e.          
                   d:\java\zsamples>javac package-test1.java -classpath .;d:\java
              But subsequently, when RUNNING using D:\java\zsamples>java Package_Test1,
              caused RUN-TIME error "Exception in thread "main" java.lang.NoClassDefFoundError:
              zsamples/zswingpackag e1/swing_optgrp_eg1".
              import zsamples.zswingpackage1.swing_optgrp_eg1;     // resides under d:\java
         /* Unsuccessful remedies:
         1) use -classpath with compiler i.e.
              d:\java\zsamples>javac package-test1.java -classpath .;d:\java\zsamples\zswingpackage1
         2) removed top level 'zsamples' qualifier in package name, compiled
              with, and without -classpath parm. i.e.
              import zswingpackage1.swing_optgrp_eg1;     // resides under d:\java\zsamples
              This caused "cannot access zswingpackage1.swing_optgrp_eg1 bad class
              file: .\zswingpackage1\swing_optgrp_eg1.class class file contains wrong
              class: zsamples.zswingpackage1.swing_optgrp_eg1 Please remove or make
              sure it appears in the correct subdirectory of the classpath."
         3) added top level 'java.' qualifier in package name, compiled with, and
              without -classpath parm. i.e.
              import java.zsamples.zswingpackage1.swing_optgrp_eg1;
              This caused "package java.zsamples.zswingpackage1 does not exist".
         4) when running, specified '.;d:\java\zsamples\zswingpackage1', or
              '.;d:\java\zsamples' in -classpath i.e.
                   D:\java\zsamples>java Package_Test1 -classpath .;d:\java\zsamples\zswingpackage1
                   D:\java\zsamples>java Package_Test1 -classpath .;d:\java\zsamples
         // Following import caused same errors as above import stmt.
         //import zsamples.zswingpackage1.*;
         class Package_Test1 {
    My PC configuration:
         java version "1.4.0_01"
         Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.0_01-b03)
         Java HotSpot(TM) Client VM (build 1.4.0_01-b03, mixed mode)
         JRun 4 (Build 47304)
         WinNT 4.0 SP5
         IE 5.50
         CLASSPATH=.;D:\jakarta-tomcat-3.3.1\lib\common\servlet.jar;
              C:\JRun4\servers\default\default-ear\default-war\WEB-INF\classes
         JAVA_HOME=C:\j2sdk1.4.0_01
         Path=C:\j2sdk1.4.0_01\bin;C:\WINNT\system32;C:\WINNT;
              C:\Program Files\Network Associates\PGPNT;C:\Program Files\MTS;d:\MSSQL7\BINN

    It's hard for me to follow everything you posted. Perhaps this link will help.
    http://java.sun.com/docs/books/tutorial/java/interpack/packages.html
    Some things to keep in mind. Packages are not directories - they just use the path structure of directories to manage namespaces. No matter where a class is, if your Classpath is d:\java, then the root of any class in a package must be in a directory structure that exists inside d:\java. Also, compilers and the JVM utilize the fully qualified name of a class, meaning the package name plus the class name.

  • Connector problem : root not accessible

    I'm running a midlet and i try to get a file text from the computer i'm using with the wireless toolkit.
    But these lines don't work :
    String uri = "file:///c:/testinput.txt";
    InputConnection conn = (InputConnection) Connector.open( uri, Connector.READ );
    When I run it i get the message "is it OK to read your files?", i select yes and then i get an IOException : "Root is not accessible". Do I have to set permissions or something else?
    I am also suspecting MIDlets only being able to get data via http... I hope it's not that.
    I would be sooo happy if you helped me, I have no idea what's going on with this unaccessible root.

    My first guess would be that your mix of Support Package levels is giving you problems.

  • PLS-00753: malformed or corrupted wrapped unit on SYS packages

    Hello All,
    I tried to run an export today and received this error on the SYS.DBMS_AQADM_SYS package body. I tried dropping and recreating through the catalog.sql, catexp.sql, and catproc.sql scripts but the package body was recreated with the same errors. I have done exports on this instance before and it seemed to cause this problem today at random. Now several other sys packages are going invalid as a result and when I try to run an export I get the error:
    UDE-00008: operation generated ORACLE error 4063
    ORA-04063: package body "SYS.KUPV$FT_INT" has errors
    ORA-06508: PL/SQL : could not find the program unit being called: "SYS.KUPV$FT_INT"
    ORA-06512: at "SYS.DBMS_DATAPUMP", line 2742
    ORA-04063: package body "SYS.KUPV$FT_INT" has errors
    ORA-06508: PL/SQL : could not find the program unit being called: "SYS.KUPV$FT_INT"
    ORA-06512: at "SYS.DBMS_DATAPUMP", line 3712
    ORA-06512: at line 1
    Does anyone know what could cause this or how to fix it?
    Thanks,
    Sean

    it appears that my sys and apex_flows schema are now hosed. apex stopped working so I restarted the machine - now when I try to start Oracle it gets all the way to "database mounted" before cancelling with the "ORA-01092: ORACLE instance terminated. Disconnection forced"
    does this mean that my instance is hosed? I can restore from a backup but would lose some serious development time if this occurred.

  • Sap server url is not accessible..Portal is not getting started

    Hi all,
    I have netweaver 2004 and portal on aix02.
    I was getting some error while accessing one of the link of the portal.
    So through OS admin I gave command <b>stopsap</b>.
    and again started sap server using <b>startsap all</b>
    Still my sap url is not accessible.
    I am getting error as <b>"Page can't be displayed"</b>
    Following is the output of the operations I performed through OS:
    <b>124> stopsap</b>
    Checking db Database
    Stopping the SAP instance SCS01
    Shutdown-Log is written to /home/jetadm/stopsap_SCS01.log
    Instance SCS01 was not running!
    Database not running
    Running /usr/sap/JET/SYS/exe/run/stopj2eedb
    Trying to stop database ...
    Log file: /home/jetadm/stopj2eedb.log
    The database state is offline.
    /usr/sap/JET/SYS/exe/run/stopj2eedb completed successfully
    <b>ctsaix02:jetadm 125> startsap all</b>
    Checking db Database
    Starting SAP Instance SCS01
    Startup-Log is written to /home/jetadm/startsap_SCS01.log
    Instance on host ctsaix02 started
    <b>Can you please help me to SOLVE this issue?</b>

    Thanks Supriya,
    I have pasted logs below:
    Can you please help?
    <u><b>logs startsap_JC00.log=></b></u>
    Trace of system startup/check of SAP System JET on Wed May 23 16:06:13 CDT 2007
    Called command: /usr/sap/JET/SYS/exe/run/startsap
    Starting SAP Instance JC00
    SAP-R/3-Startup Program Rel 640 V1.8 (2003/04/24)
    Starting at 2007/05/23 16:06:13
    Startup Profile: "/usr/sap/JET/SYS/profile/START_JC00_ctsaix02"
    (332024) SETENV LD_LIBRARY_PATH=/usr/sap/JET/JC00/j2ee/os_libs:
    Setup Environment Variables
    (332024) SETENV SHLIB_PATH=/usr/sap/JET/JC00/j2ee/os_libs:
    (332024) SETENV LIBPATH=/usr/sap/JET/JC00/j2ee/os_libs:/usr/lib:/lib:/usr/sap/JET/SYS/exe/run
    Execute Pre-Startup Commands
    (332024) Local: rm -f jc.sapJET_JC00
    (332024) Local: ln -s -f /usr/sap/JET/JC00/j2ee/os_libs/jcontrol jc.sapJET_JC00
    Starting Programs
    (438468) Starting: local jc.sapJET_JC00 pf=/usr/sap/JET/SYS/profile/JET_JC00_CTSAIX02
    (332024) Waiting for Child Processes to terminate.
    (332024) **** 2007/05/23 16:06:13 Child 438468 terminated with Status 0 . ****
    (332024) **** No more Child Processes to wait for.
    (332024) Parent Shutdown at 2007/05/23 16:06:13
    Execute Post-Shutdown Commands
    (332024) Exiting with Return-Code 3. (No more child processes)
    Startup of Instance failed
    ~<b></b>

  • Event ID 12072 The WSUS content directory is not accessible

    Getting this error in wsus on 2012. I cannot download any updates. 
    any idea?
    Log Name:      Application
    Source:        Windows Server Update Services
    Date:          7/1/2014 7:26:57 PM
    Event ID:      12072
    Task Category: 9
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      wsus2012
    Description:
    The WSUS content directory is not accessible.
    System.IO.IOException: The device is not ready.
       at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
       at System.IO.FileStream.Init(String path, FileMode mode, FileAccess access, Int32 rights, Boolean useRights, FileShare share, Int32 bufferSize, FileOptions options, SECURITY_ATTRIBUTES secAttrs, String msgPath, Boolean bFromProxy, Boolean useLongPath,
    Boolean checkHost)
       at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, FileOptions options, String msgPath, Boolean bFromProxy)
       at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share)
       at System.IO.FileInfo.Open(FileMode mode, FileAccess access, FileShare share)
       at Microsoft.UpdateServices.Internal.HealthMonitoring.HmtWebServices.CheckContentDirWebAccess(EventLoggingType type, HealthEventLogger logger)
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Windows Server Update Services" />
        <EventID Qualifiers="0">12072</EventID>
        <Level>2</Level>
        <Task>9</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2014-07-02T02:26:57.000000000Z" />
        <EventRecordID>485447</EventRecordID>
        <Channel>Application</Channel>
        <Computer>wsus2012/Computer>
        <Security />
      </System>
      <EventData>
        <Data>The WSUS content directory is not accessible.
    System.IO.IOException: The device is not ready.
       at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
       at System.IO.FileStream.Init(String path, FileMode mode, FileAccess access, Int32 rights, Boolean useRights, FileShare share, Int32 bufferSize, FileOptions options, SECURITY_ATTRIBUTES secAttrs, String msgPath, Boolean bFromProxy, Boolean useLongPath,
    Boolean checkHost)
       at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, FileOptions options, String msgPath, Boolean bFromProxy)
       at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share)
       at System.IO.FileInfo.Open(FileMode mode, FileAccess access, FileShare share)
       at Microsoft.UpdateServices.Internal.HealthMonitoring.HmtWebServices.CheckContentDirWebAccess(EventLoggingType type, HealthEventLogger logger)</Data>
      </EventData>
    </Event>

    Getting this error in wsus on 2012. I cannot download any updates.
    Description:
    The WSUS content directory is not accessible.
    Did somebody recently try to relocate the WSUSContent folder? or change the ACLs?
    Here are the relevant questions:
    What is the actual physical pathname of the WSUSContent folder?
    What is the pathname configured in IIS for the /Content v-dir?
    What is the pathname configured in the registry value "ContentDir" in HKLM\Software\Microsoft\Update Services\Server\Setup?
    Lawrence Garvin, M.S., MCSA, MCITP:EA, MCDBA
    SolarWinds Head Geek
    Microsoft MVP - Software Packaging, Deployment & Servicing (2005-2014)
    My MVP Profile: http://mvp.microsoft.com/en-us/mvp/Lawrence%20R%20Garvin-32101
    http://www.solarwinds.com/gotmicrosoft
    The views expressed on this post are mine and do not necessarily reflect the views of SolarWinds.

  • SYS.UTL_FILE does not exists...

    Hi!
    I use 'utl_file.fopen' in a PL/SQL Package. It works fine with ORACLE 8.1.7 and now with ORALCE 9.2 it breaks.
    First I have create a directory 'UTL_FILE_TMP' and grant it to the PL/SQL user.
    At the code 'v_file := utl_file.fopen('UTL_FILE_TMP',v_name, 'a');' I get the ORAERR 04067 --> SYS.UTL_FILE does not exists...
    Have I install the package seperatly and when yes, how can I do?
    Regars
    -mic

    I really doubt that you have a directory called UTL_FILE_TMP, "C:\UTL_FILE_TMP" on a winows machine, "u01/UTL_FILE_TMP" on a unix machine I can believe, but a volume labeled "UTL_FILE_TMP", I don't You MUST have the full directory path the the directory and the directory MUST be writable by the user (typically oracle) that is running the database code.

  • SQL Always On: not accessible for queries

    Hi forum!
    I'm monitoring SQL 2012 Always On Groups with the latest SQL MP. A couple of the database replicas are configured to not allow access. This is to avoid additional license costs for those minor important databases.
    However, I get the following events in the SQL log:
    Error 976, Severity 14
    The target database, '%.*ls', is participating in an availability group and is currently not accessible for queries. Either data movement is suspended
    or the availability replica is not enabled for read access. To allow read-only access to this and other ...
    Of course, as soon as I configure read-only for those databases the events disappear.
    Is there any other solution?
    Has anyone identified already (all) the accessing workflows?
    Thanks in advance,
    Patrick
    http://www.syliance.com | http://www.systemcenterrocks.com

    Hi All, I am also experiencing this issue.  Having a look at the statements SCOM is issuing, it's actually checking whether the AG secondary allows connections but it ignores the value and tries to connect anyway.  I believe this is a minor bug. 
    See below for these queries. 
    You can vote to correct it through Microsoft Connect on: https://connect.microsoft.com/WindowsServer/feedback/details/1121330
    --SCOM/MP: is this database a replica and does it allow connections?
    SELECT d.name, d.database_id, CASE WHEN d.replica_id IS NULL THEN 0 ELSE 1 END AS is_replica, ar.secondary_role_allow_connections
    FROM sys.databases d JOIN sys.availability_replicas ar on d.replica_id = ar.replica_id JOIN sys.servers s ON s.name = ar.replica_server_name AND s.server_id = 0 /*local server*/
    WHERE d.database_id = x --current db id in sys.databases loop
    --SCOM/MP: let's look into that db (regardless of whether it allows connections)
    --EXCEPTION: The target database, 'x', is participating in an availability group and is currently not accessible for queries. Either data movement is suspended or the availability replica is not enabled for read access. To allow read-only access to this and other databases in the availability group, enable read access to one or more secondary availability replicas in the group. For more information, see the ALTER AVAILABILITY GROUP statement in SQL Server Books Online.

  • Sys package invalid !!!

    hey gurus
    i'm facing a starnge problem , it's showing all packages of sys schema as in valid . i try to run
    exec dbms_stats.export_schema_stats('SCHEMANAME', 'STATS_BKP_SCHEMA', sysdate, 'PRODD');
    ORA-06502: PL/SQL: numeric or value error
    ORA-06512: at "SYS.DBMS_STATS", line 5173
    ORA-06512: at "SYS.DBMS_STATS", line 5185
    ORA-06512: at "SYS.DBMS_STATS", line 5587
    ORA-06512: at line 1
    following is thelist of invalid objects
    DBMS_AQ
    DBMS_AQADM
    DBMS_AQJMS_INTERNAL
    DBMS_AQ_EXP_QUEUES
    DBMS_AQ_EXP_ZECURITY
    DBMS_AQ_IMPORT_INTERNAL
    DBMS_AQ_SYS_EXP_ACTIONS
    DBMS_AQ_SYS_IMP_INTERNAL
    DBMS_CAPTURE_ADM_INTERNAL
    DBMS_CAPTURE_PROCESS
    DBMS_DDL_INTERNAL
    DBMS_DEFER
    DBMS_DEFERGEN
    DBMS_DEFERGEN_AUDIT
    DBMS_DEFERGEN_AUDIT
    DBMS_DEFERGEN_INTERNAL
    DBMS_DEFERGEN_INTERNAL
    DBMS_DEFERGEN_LOB
    DBMS_DEFERGEN_LOB
    DBMS_DEFERGEN_PRIORITY
    DBMS_DEFERGEN_RESOLUTION
    DBMS_DEFERGEN_RESOLUTION
    DBMS_DEFERGEN_UTIL
    DBMS_DEFERGEN_WRAP
    DBMS_DEFERGEN_WRAP
    DBMS_DEFER_IMPORT_INTERNAL
    DBMS_DEFER_INTERNAL_SYS
    DBMS_DEFER_QUERY_UTL
    DBMS_DEFER_REPCAT
    DBMS_DEFER_SYS
    DBMS_DEFER_SYS_PART1
    DBMS_DESCRIBE
    DBMS_IAS_CONFIGURE
    DBMS_IAS_INST_UTL_EXP
    DBMS_IAS_QUERY
    DBMS_IAS_SESSION
    DBMS_ITRIGGER_UTL
    DBMS_LOGREP_EXP
    DBMS_LOGREP_IMP_INTERNAL
    DBMS_LOGSTDBY
    DBMS_PROPAGATION_ADM
    DBMS_REDEFINITION
    DBMS_REGXDB
    DBMS_REPCAT_INSTANTIATE
    DBMS_REPCAT_RGT_ALT
    DBMS_REPCAT_RGT_CHK
    DBMS_REPUTIL2
    DBMS_SNAP_REPAPI
    DBMS_SNAP_REPAPI
    DBMS_STATS
    DBMS_STATS_INTERNAL
    DBMS_SUMMARY
    DBMS_SUMVDM
    INITJVMAUX
    LTAQ
    LTPRIV
    LT_CTX_PKG
    LT_EXPORT_PKG
    LT_REPLN
    OWA_TEXT
    OWM_MIG_PKG
    OWM_REPUTIL
    Please suggest sometthing
    p.s. database is running fine so far
    Thanks

    try to recompile with the ?/rdbms/admin/utlrp.sql script. This should set all sys packages in a valid status. If problem persists, it means somehow your data dictionary is inconsistent and you may need to run the catproc.sql script.
    ~ Madrid

  • Prestage Package status not reflecting on the console

    Hello,
    I have extracted some prestage packages successfully on the new DP but for some reasons, it doesn’t reflect the status on the primary server. After troubleshooting, I found
    this article which describes my issue similarly.
    http://eskonr.com/tag/sccm-2012/page/2/
    Where it says, “Will reject this STA for DP”, that similarly matches with my concern.
    I have followed the article regarding the script for compare the version difference but what I am not sure is, I believe it ultimately says to redistribute the content to
    the DP once more ?
    Let me know if I am wrong or if there is any other way as this is happening for many prestage packages.
    Not sure how it started all of a sudden when it working since a day before.

    Hello, 
    I have created a new prestage package and it extracted successfully as per the below message in Distmgr.log but for some reasons the status doesnt reflect on the console.
    Please help as this is really urgent
    Processing status update for package AAA SMS_DISTRIBUTION_MANAGER
    11/12/2014 9:25:21 AM 11344 (0x2C50)
    Successfully updated the package server status for ["Display=\\<DP server>\"]MSWNET:["SMS_SITE=SiteID"]\\<DP server>\ for package AAA, Status 3
    SMS_DISTRIBUTION_MANAGER 11/12/2014 9:25:21 AM
    11344 (0x2C50)
    STATMSG: ID=2330 SEV=I LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=<primaryserver>SITE=<SiteID> PID=19600 TID=11344 GMTDATE=Wed Nov 12 03:55:21.886 2014 ISTR0="AAA" ISTR1="["Display=\\<DP
    server>\"]MSWNET:["SMS_SITE=<SiteID>"]\\<DP server>\" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=2 AID0=400
    AVAL0="AAA" AID1=404 AVAL1="["Display=\\<DP server>\"]MSWNET:["SMS_SITE=<SiteID>"]\\<DP server>\"
    SMS_DISTRIBUTION_MANAGER 11/12/2014 9:25:21 AM
    11344 (0x2C50)
    Successfully delete package status file C:\Program Files\Microsoft Configuration Manager\inboxes\distmgr.box\INCOMING\BKP96Y8Q.STA
    SMS_DISTRIBUTION_MANAGER 11/12/2014 9:25:21 AM
    11344 (0x2C50)

  • Why are protected fields not-accessible from sub-classed inner class?

    I ran across a situation at work where we have to sub-class an inner class from a third-party package. So, it looks something like this...
    package SomePackage;
    public class Outer {
       protected int x;
       public class Inner {
    package OtherPackage;
    public class NewOuter extends Outer {
       public class NewInner extends Outer.Inner {
    }Now the NewInner class needs to access protected variables in the Outer class, just like the Inner class does. But because NewOut/NewInner are in a different package I get the following error message.
    Variable x in class SomePackage.Outer not accessible from inner class NewOuter. NewInner.You can still access those protected variables from the NewOuter class though. So, I can write accessor methods in NewOuter for NewInner to use, but I am wondering why this is. I know that if NewOuter/NewInner are in the same package as Outer/Inner then everything works fine, but does not when they are in different packages.
    I have to use JDK1.1.8 for the project so I don't know if there would be a difference in JDK1.2+, but I would think that nothing has changed. Anyway, if you know why Java disallows access as I have detailed please let me know.

    Although I don't have the 1.1.8 JDK installed on my system, I was able to compile the following code with the 1.3.1_01 JDK and run it within a Java 1.1.4 environment (the JVM in the MSIE 5.5 browser). As long as you don't access any of the APIs that were introduced with 1.2+ or later, the classes generated by the JDK 1.2+ javac are compatible with the 1.1.4+ JVM.
    //// D:\testing\SomePackage\Outer.java ////package SomePackage ;
    public class Outer {
        protected int x ;
        public Outer(int xx) {
            x = xx ;
        public class Inner {
    }//// D:\testing\OtherPackage\NewOuter.java ////package OtherPackage;
    import SomePackage.* ;
    public class NewOuter extends Outer {
        public NewOuter(int xx) {
            super(xx) ;
        public class NewInner extends Outer.Inner {
            public int getIt() {
                return x ;
    }//// D:\testings\Test.java ////import OtherPackage.* ;
    import java.awt.* ;
    import java.applet.* ;
    public class Test extends Applet {
        public void init () {
            initComponents ();
        private void initComponents() {
            add(new Label("x = ")) ;
            int myx = new NewOuter(3288).new NewInner().getIt() ;
            TextField xfld = new TextField() ;
            xfld.setEditable(false) ;
            xfld.setText(Integer.toString(myx)) ;
            add(xfld) ;
    }//// d:\testing\build.cmd ////set classpath=.;D:\testing
    cd \testing\SomePackage
    javac Outer.java
    cd ..\OtherPackage
    javac NewOuter.java
    cd ..
    javac Test.java//// d:\testing\Test.html ////<HTML><HEAD></HEAD><BODY>
    <APPLET CODE="Test.class" CODEBASE="." WIDTH=200 HEIGHT=100></APPLET>
    </BODY></HTML>

  • Method not accessible from other classes

    Hi,
    I ve defined a class and would like to create an instance of it from another class. That works fine, I am also able to access class variables. However the class method "calcul" which is defined as following, is not accessible from other classes:
    class Server {
    static String name;
    public static void calcul (String inputS) {
    int length = inputS.length();
    for (int i = 0 ; i < length; i++) {
    System.out.println(newServer.name.charAt(i)); }
    If I create an instant of the class in the same class, the method is then available for the object.
    I am using JBuilder, so I can see, which methods and variables are available for an object. Thanks for your help

    calcul is a static method, that means you do not need an instance of server to run this method. This method is also public, but your class Server is not, your Server class is package protected. So only classes within the same package has Server can use its method. How to use the calcul method?// somewhere in the same package as the Server class
    Server.calcul( "toto" );

  • A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (p

    A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that
    the instance name is correct and that SQL Server is configured to allow remote connections. (provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server)(Microsoft SQL Server, Error: 2)
    The system cannot find the file specified
    Cannot connect to COWBOYS.
    Here are the technical details===================================
    A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider:
    Named Pipes Provider, error: 40 - Could not open a connection to SQL Server) (.Net SqlClient Data Provider)
    For help, click: http://go.microsoft.com/fwlink?ProdName=Microsoft%20SQL%20Server&EvtSrc=MSSQLServer&EvtID=2&LinkId=20476
    Error Number: 2
    Severity: 20
    State: 0
    Program Location:
       at System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
       at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose)
       at System.Data.SqlClient.TdsParser.Connect(ServerInfo serverInfo, SqlInternalConnectionTds connHandler, Boolean ignoreSniOpenTimeout, Int64 timerExpire, Boolean encrypt, Boolean trustServerCert, Boolean integratedSecurity, Boolean withFailover)
       at System.Data.SqlClient.SqlInternalConnectionTds.AttemptOneLogin(ServerInfo serverInfo, String newPassword, SecureString newSecurePassword, Boolean ignoreSniOpenTimeout, TimeoutTimer timeout, Boolean withFailover)
       at System.Data.SqlClient.SqlInternalConnectionTds.LoginNoFailover(ServerInfo serverInfo, String newPassword, SecureString newSecurePassword, Boolean redirectedUserInstance, SqlConnectionString connectionOptions, SqlCredential credential, TimeoutTimer
    timeout)
       at System.Data.SqlClient.SqlInternalConnectionTds.OpenLoginEnlist(TimeoutTimer timeout, SqlConnectionString connectionOptions, SqlCredential credential, String newPassword, SecureString newSecurePassword, Boolean redirectedUserInstance)
       at System.Data.SqlClient.SqlInternalConnectionTds..ctor(DbConnectionPoolIdentity identity, SqlConnectionString connectionOptions, SqlCredential credential, Object providerInfo, String newPassword, SecureString newSecurePassword, Boolean redirectedUserInstance,
    SqlConnectionString userConnectionOptions, SessionData reconnectSessionData)
       at System.Data.SqlClient.SqlConnectionFactory.CreateConnection(DbConnectionOptions options, DbConnectionPoolKey poolKey, Object poolGroupProviderInfo, DbConnectionPool pool, DbConnection owningConnection, DbConnectionOptions userOptions)
       at System.Data.ProviderBase.DbConnectionFactory.CreateNonPooledConnection(DbConnection owningConnection, DbConnectionPoolGroup poolGroup, DbConnectionOptions userOptions)
       at System.Data.ProviderBase.DbConnectionFactory.TryGetConnection(DbConnection owningConnection, TaskCompletionSource`1 retry, DbConnectionOptions userOptions, DbConnectionInternal oldConnection, DbConnectionInternal& connection)
       at System.Data.ProviderBase.DbConnectionInternal.TryOpenConnectionInternal(DbConnection outerConnection, DbConnectionFactory connectionFactory, TaskCompletionSource`1 retry, DbConnectionOptions userOptions)
       at System.Data.ProviderBase.DbConnectionClosed.TryOpenConnection(DbConnection outerConnection, DbConnectionFactory connectionFactory, TaskCompletionSource`1 retry, DbConnectionOptions userOptions)
       at System.Data.SqlClient.SqlConnection.TryOpenInner(TaskCompletionSource`1 retry)
       at System.Data.SqlClient.SqlConnection.TryOpen(TaskCompletionSource`1 retry)
       at System.Data.SqlClient.SqlConnection.Open()
       at Microsoft.SqlServer.Management.SqlStudio.Explorer.ObjectExplorerService.ValidateConnection(UIConnectionInfo ci, IServerType server)
       at Microsoft.SqlServer.Management.UI.ConnectionDlg.Connector.ConnectionThreadUser()
    ===================================
    The system cannot find the file specified
    I have tried from so many forms. This is so frustrating. Thank for everyone/anyone who wants to help. So this is what happened: I had to uninstall my previous sqlserver 2012(which worked great) for some reason, and I uninstalled everything from that download.
    Then I installed the trial edition of sql server 2012 (64 Bit) and It wouldn't connect to the database. (Error mentioned above.) My local DB is COWBOYS. (COWBOYS is also my computer name.) After this, I have tried downloading sqlexpress and sqlserver 64bit
    many times and cannot connect to my local DB. 
    How do I connect to my Local DB? 
    Also, I think this might help: (When I run sqlserve.exe, which I was able to find in C:\Program Files\Microsoft SQL Server\110\LocalDB\Binn, I get an error: Your SQL server installation is either corrupt or has been tampered with(Error getting
    instance ID from name). Please uninstall then re-run setup to correct this problem.
    I would happily re install it, if it wasn't my 20th time.
    I don't have any remote connections, I don't use username/password, only window authentication. I work mostly on visual studio, but without able to store /retrieve data, I don't know how to survive.
    May be the solution is very simple, but I am too frustrated. 
    Some of the things I have tried:
    From a command prompt, enter one of the following commands:
    net start "SQL Server Agent (MSSQLSERVER)" OR 
    net start "SQL Server Agent(instancename)"(for instance)
    on my sql configuration, I cannot start anything because there is nothing there to start. I can post more details, if that would help. Also, some more details about the error:
    Details
    Product:
    SQL Server
    ID:
    2
    Source:
    MSSQLServer
    Version:
    10.0
    Component:
    SQLEngine
    Message:
    An error has occurred while establishing a connection to the server. When connecting to SQL Server, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections. (provider: Named Pipes Provider, error:
    40 - Could not open a connection to SQL Server) (.Net SqlClient Data Provider)
    Explanation
    SQL Server did not respond to the client request because the server is probably not started.
    User Action
    Make sure that the server is started.
    Version:
    9.0
    Component:
    SQLEngine
    Message:
    An error has occurred while establishing a connection to the server. When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections. (provider: Named Pipes Provider, error:
    40 - Could not open a connection to SQL Server) (.Net SqlClient Data Provider)
    Explanation
    SQL Server did not respond to the client request because the server is probably not started.
    User Action
    Make sure that the server is started.
    Any one that can help me, I will be greatful. Thank you so much. p.s. please ask me anything if you have any questions.

    It sounds like there are a couple things going on here.  First check if you have a successful install of SQL Server, then we'll figure out the connection issues.
    Can you launch SQL Server Configuration Manager and check for SQL Server (MSSQLSERVER) if default instance or SQL Server (other name) if you've configured your instance as a named instance.  Once you find this, make sure the service is started. 
    If not started, try to start it and see if it throws an error.  If you get an error, post the error message your hitting.  If the service starts, you can then launch SSMS and try to connect.  If you have a default instance, you can use the machine
    name in the connection dialog.  Ex:  "COWBOYS" where Cowboys is the machine name.  However, if you named the SQL Server instance during install, you'll need to connect using the machine\instance format.  Ex:  COWBOYS\Romo (where Romo
    is the instance name you set during install).
    You can also look at the summary.txt file in the SQL Server setup error logs to see what happened on the most recent install.  Past install history is archived in the log folder if you need to dig those up to help troubleshoot, but the most
    recent one may help get to the bottom of it if there is an issue with setup detecting a prior instance that needs to be repaired.
    Thanks,
    Sam Lester (MSFT)
    http://blogs.msdn.com/b/samlester
    This posting is provided "AS IS" with no warranties, and confers no rights. Please remember to click
    "Mark as Answer" and
    "Vote as Helpful" on posts that help you. This can be beneficial to other community members reading the thread.

Maybe you are looking for

  • Languages: Some song titles do not show up on iPod menus

    Hi, I have a few Thai CDs that I have uploaded to my iPod. Unfortunately, the song titles that are using Thai script do not show up in the iPod lists (they show as blank). Is there any way to correct this problem short of translating the names to Eng

  • Trouble connecting to itunes store:  network connection

    For the past 3 or 4 months i havent been able to connect to the itunes store at all. I have tried all the trouble shooting, uninstalling, re installing, running the test, turning off firewall completely and still nothing... I am not using Norton and

  • How to get safari working again?

    Safari won't open in my user name but as guest it will. I deleting some caches then my wi-fi hardware was missing, so I use my disk and reinstall lion. My safari won't open tried adding java no good. So some stuff from tried the different user it wor

  • Dynamic Routing using AQ Adapter

    Hi I am using AQ Adapter to configure my OSB Buisness services to enqueue/Dequeue messages to my AQ queues. My requirement is to post messages to different Aq queues at runtime without having to reconfigure adapter everytime. I tried the routing opti

  • CS 6: trial version install hangs at 42%  (Win 7)

    Greetings, I am attempting to install the CS6 trial version on my Windows 7 machine. When it starts installing AdobeHelp, it gets to 42%, then the time remaining increases, but the percentage stays at 42%. I rebooted and tried again, with the same re