What caused a system package to be invalid?

Hi All,
11.1.0.7
We have a oracle system package this is running for weeks.
But today the alert logs showed some error about it.
ORA-12012: error on auto execute of job 2
ORA-06550: line 1, column 96:
PLS-00201: identifier 'EMD_MAINTENANCE.EXECUTE_EM_DBMS_JOB_PROCS' must be declared
ORA-06550: line 1, column 96:
PL/SQL: Statement ignoredCould this be the cause of ORA-04030: out of memory to allocate? Bacause I also see this error along with it.
Thanks a lot,
Kinz

Did anyone remove or disable the package? See the MOS notes mentioned in this thread.
What does "EXECUTE_EM_DBMS_JOB_PROCS" do??(10g)

Similar Messages

  • What causes the Missing or invalid version of SQL library PSORA (200,0)?

    What causes the Missing or invalid version of SQL library PSORA (200,0) in PeopleTools 8.51 Application Designer?

    Could be several things. Bad path, bad version, etc. give us details on your client install. What Oracle client do you have installed. App Designer is 32 bit. If you installed the 64 bit client you might get this error. What OS are you using. PeopleTools version? guessing 8.51 from your other post.

  • What causes four beeps followed by a system shut down?

    What causes forced shut down proceed by four beeps?

    For products produced after 1999:
    4 beeps = no good boot images in the boot ROM (and/or bad sys config block)

  • Casio G'zOne "package file is invalid"

    I just bought the Casio G'zOne and everytime I download an ap for it I get "Package file is invalid".  I use Play Store to get the ap.  I tried clearing the cache and data for Play Store, I turned the phone on and off, I took the battery out of the phone and turned it back on, I looked for System updates and downloaded any updates needed.  I bought 2 of these phones.  Both work perfect for everything except for downloading aps.  Is there a software update I am missing or are these phones too old to get newer aps.  Aps I have been trying to get are Words with friends, weatherchannel, Angry Birds, etc.  It seems that if I keep trying, then one of the phones will finally successfully download the ap and work.  But I watch my nieces with their Droid and Samsung Galaxy and they don't have any of these problems.  Any help would be apreciated.

    Thanks for all the help.  I talked to my Verizon dealer the other day and after I left them and got back home, I realized what the problem was.  My WiFi was causing the conflict for some reason.  My verizon dealer said some phones were not able to use the wifi to download aps or the wifi wasn't a good enough connection.  I turned the WiFi off on the phone and everything worked using 3G.  So I did get my 2 phones to download aps.  Thanks for all your help on this issue.
    I did have one other question.  Is there a way to set my time manually on my phone to a different time zone?  I live on the border of a time zone and the towers I use are both on central time, where I live on mountain time.  My old flip phone allowed me to put the current time zone time and also the Denver time - both at the same time.  I mostly work on the mountain time zone, but I do cross into the central time zone, so that really worked good on my flip phone.  But my new phone says "automatically set time" and I cannot control how the time is shown on the screen.

  • Package procedure in invalid state

    Hi all,
    We are having an application in C# and backend oracle 10g placed in Location1.
    There is modification in Packaged procedure. So we remotely (from Location2) connected to Location1 and that Packaged procedure is created.
    This Packaged procedure has been created (in Location1 ) without any errors. But this procedure is in INVALID state. We tried to compile it remotely by using following statements, but still this is in invalid state .
    ALTER PACKAGE my_package COMPILE;
    ALTER PACKAGE my_package COMPILE BODY;
    If we run this package and package body manually, without any modifications after creating it remotly, it is becoming VALID state.
    I am not getting any idea, why it is creating in INVALID state. Any help is appreciated.
    Thanks in advance,
    Pal

    Ok, here's a previous response that I gave re. packages and their "states". Should give you a good idea what a state is...
    Packages tend to fail because of their "package state". A package has a "state" when it contains package level variables/constants etc. and the package is called. Upon first calling the package, the "state" is created in memory to hold the values of those variables etc. If an object that the package depends upon e.g. a table is altered in some way e.g. dropped and recreated, then because of the database dependencies, the package takes on an INVALID status. When you next make a call to the package, Oracle looks at the status and sees that it is invalid, then determines that the package has a "state". Because something has altered that the package depended upon, the state is taken as being out of date and is discarded, thus causing the "Package state has been discarded" error message.
    If a package does not have package level variables etc. i.e. the "state" then, taking the same example above, the package takes on an INVALID status, but when you next make a call to the package, Oracle sees it as Invalid, but knows that there is no "state" attached to it, and so is able to recompile the package automatically and then carry on execution without causing any error messages. The only exception here is if the thing that the package was dependant on has changes in such a way that the package cannot compile, in which case you'll get an Invalid package type of error.
    And if you want to know how to prevent discarded package states....
    Move all constants and variables into a stand-alone package spec and reference those from your initial package. Thus when the status of your original package is invlidated for whatever reason, it has no package state and can be recompiled automatically, however the package containing the vars/const will not become invalidated as it has no dependencies, so the state that is in memory for that package will remain and can continue to be used.
    As for having package level cursors, you'll need to make these local to the procedures/functions using them as you won't be able to reference cursors across packages like that (not sure about using REF CURSORS though.... there's one for me to investigate!)
    This first example shows the package state being invalided by the addition of a new column on the table, and causing it to give a "Package state discarded" error...
    SQL> set serveroutput on
    SQL>
    SQL> create table dependonme (x number)
      2  /
    Table created.
    SQL>
    SQL> insert into dependonme values (5)
      2  /
    1 row created.
    SQL>
    SQL> create or replace package mypkg is
      2    procedure myproc;
      3  end mypkg;
      4  /
    Package created.
    SQL>
    SQL> create or replace package body mypkg is
      2    v_statevar number := 5; -- this means my package has a state
      3
      4    procedure myproc is
      5      myval number;
      6    begin
      7      select x
      8      into myval
      9      from dependonme;
    10
    11      myval := myval * v_statevar;
    12      DBMS_OUTPUT.PUT_LINE('My Result is: '||myval);
    13    end;
    14  end mypkg;
    15  /
    Package body created.
    SQL>
    SQL> exec mypkg.myproc
    My Result is: 25
    PL/SQL procedure successfully completed.
    SQL>
    SQL> select object_name, object_type, status from user_objects where object_name = 'MYPKG'
      2  /
    OBJECT_NAME
    OBJECT_TYPE         STATUS
    MYPKG
    PACKAGE             VALID
    MYPKG
    PACKAGE BODY        VALID
    SQL>
    SQL>
    SQL> alter table dependonme add (y number)
      2  /
    Table altered.
    SQL>
    SQL> select object_name, object_type, status from user_objects where object_name = 'MYPKG'
      2  /
    OBJECT_NAME
    OBJECT_TYPE         STATUS
    MYPKG
    PACKAGE             VALID
    MYPKG
    PACKAGE BODY        INVALID
    SQL>
    SQL> exec mypkg.myproc
    BEGIN mypkg.myproc; END;
    ERROR at line 1:
    ORA-04068: existing state of packages has been discarded
    ORA-04061: existing state of package body "CRISP_INTELL.MYPKG" has been invalidated
    ORA-06508: PL/SQL: could not find program unit being called: "CRISP_INTELL.MYPKG"
    ORA-06512: at line 1
    SQL>
    SQL> select object_name, object_type, status from user_objects where object_name = 'MYPKG'
      2  /
    OBJECT_NAME
    OBJECT_TYPE         STATUS
    MYPKG
    PACKAGE             VALID
    MYPKG
    PACKAGE BODY        INVALID
    SQL>
    SQL> exec mypkg.myproc
    PL/SQL procedure successfully completed.
    SQL>
    SQL> select object_name, object_type, status from user_objects where object_name = 'MYPKG'
      2  /
    OBJECT_NAME
    OBJECT_TYPE         STATUS
    MYPKG
    PACKAGE             VALID
    MYPKG
    PACKAGE BODY        VALIDAnd this next example shows how having the package variables in their own package spec, allows the package to automatically recompile when it is called even though it became invalidated by the action of adding a column to the table.
    SQL> drop table dependonme
      2  /
    Table dropped.
    SQL>
    SQL> drop package mypkg
      2  /
    Package dropped.
    SQL>
    SQL> set serveroutput on
    SQL>
    SQL> create table dependonme (x number)
      2  /
    Table created.
    SQL>
    SQL> insert into dependonme values (5)
      2  /
    1 row created.
    SQL>
    SQL> create or replace package mypkg is
      2    procedure myproc;
      3  end mypkg;
      4  /
    Package created.
    SQL>
    SQL> create or replace package mypkg_state is
      2    v_statevar number := 5; -- package state in seperate package spec
      3  end mypkg_state;
      4  /
    Package created.
    SQL>
    SQL> create or replace package body mypkg is
      2    -- this package has no state area
      3
      4    procedure myproc is
      5      myval number;
      6    begin
      7      select x
      8      into myval
      9      from dependonme;
    10
    11      myval := myval * mypkg_state.v_statevar;  -- note: references the mypkg_state package
    12      DBMS_OUTPUT.PUT_LINE('My Result is: '||myval);
    13    end;
    14  end mypkg;
    15  /
    Package body created.
    SQL>
    SQL> exec mypkg.myproc
    My Result is: 25
    PL/SQL procedure successfully completed.
    SQL>
    SQL> select object_name, object_type, status from user_objects where object_name = 'MYPKG'
      2  /
    OBJECT_NAME
    OBJECT_TYPE         STATUS
    MYPKG
    PACKAGE             VALID
    MYPKG
    PACKAGE BODY        VALID
    SQL>
    SQL> alter table dependonme add (y number)
      2  /
    Table altered.
    SQL>
    SQL> select object_name, object_type, status from user_objects where object_name = 'MYPKG'
      2  /
    OBJECT_NAME
    OBJECT_TYPE         STATUS
    MYPKG
    PACKAGE             VALID
    MYPKG
    PACKAGE BODY        INVALID
    SQL>
    SQL> exec mypkg.myproc
    My Result is: 25
    PL/SQL procedure successfully completed.

  • What causes a slow mouse/cursor response on a fast machine?

    I have a system that has always displayed poor cursor redraw performance with certain adobe applications.   All rendering and other effects are fast, but basic mouse selections and button knobs are extremely unresponsive.   I have searched and searched and can not seem to find out what causes the mouse cursor speed issues.   Does anyone have any ideas as to why my mouse would slow for such basic Interface interactions?    Do I need to change my hardware, settings, displays, BIOS, etc?
    Any insight into what the mouse redraw/refresh is called in terms of computing would help me search for a solution.  And if you have a solution as to why my mouse cursor acts drunk and sluggish when interacting with the Adobe UI's in premiere and after effects and sometimes Photoshop I would greatly appreciate the help.
    Thank You.  I attached a screen shot of a very basic selection interaction that is dog slow.  The selection box redraws like there is a lag in some process associated with the square box overlay.
    Computer Specs
    Windows 7 64
    ASUS Z9PE-d8
    dual xeon
    64 gig ram
    quadro 5000 (driving two 30 inch dell monitors of different models  One DVI-D and the other Display Port)
    512 SSD main drive with windows Swap on 10k Raptor drive.
    *All have been updated and the issue remains for over a year and a half.
    Thank you so much.
    Cliff

    Your answer is in this part of your specs:
    > (driving two 30 inch dell monitors)
    It takes a long time to draw and redraw the pixels to the screen(s) with such large monitors.
    We can mitigate this by making some changes in how our UI is drawn to the screen, and such changes are a rather high priority for use to work on for the near future.

  • Office 2013 with Visio and Project Error - Package manifest is invalid

    In July I successfully created an App-V install of Office 2013 VL using the ODT. This week I decided to try just doing Visio as we don't install it or Project on all systems. I used my same customconfig.xml and just changed the ProPlusVolume to VisioProVolume
    and changed the source path. Everything downloaded and packaged fine. I was able to import into SCCM just fine and create a deployment to my test collection. However when I run the install out of Software Center I get (as part of a much longer error) the message
    in AppEnforce.log that the package manifest is invalid. Thinking that maybe I had to include Office as long with Visio I tried packaing all three items but still get the same error. Has anyone else seen this behavior and/or ideas how to fix it? Can I sequence
    just Visio or just Project? I'm including my config.xml just in case I've got something wrong with it that I haven't caught. Thanks
     <Configuration>
      <Add SourcePath="<networkpath>\Microsoft\AppVOffice2013\Sept\" OfficeClientEdition="32" >
        <Product ID="ProPlusVolume">
        <Language ID="en-us" />
        </Product>
        <Product ID="VisioProVolume">
        <Language ID="en-us" />
        </Product>
        <Product ID="ProjectProVolume">
        <Language ID="en-us" />
        </Product>
      </Add>
      <Display Level="None" AcceptEULA="TRUE" />
      <Logging Name="OfficeSetup.txt" Path="%temp%" />
      <Property Name="AUTOACTIVATE" Value="1" />
    </Configuration>

    Hy. I'm having the same problema.
    I'm trying to create na app-v package (v.5 SP2) of Office 2013.
    I downloaded the Office Deployment Tool for Click-to-Run from here:
    http://www.microsoft.com/en-us/download/details.aspx?id=36778
    I installed it into C:\Office2013pck shared that folder as 
    \\APPVMANAGER\Office2013 and mapped as Z:\.
    I changed the configuration.xml file to:
    <Configuration>
    <Add OfficeClientEdition="32" >
    <Product ID="ProPlusVolume">
    <Language ID="en-us" />
    </Product>
    <Product ID="VisioProVolume">
    <Language ID="en-us" />
    </Product>
    </Add>
    </Configuration>
    Then I ran in na elevated cmd:
    >Z:
    >\\APPV-CL-WIN7DEF\Office2013\setup.exe /download
    \\APPV-CL-WIN7DEF\Office2013\configuration.xml
    and
    >\\APPV-CL-WIN7DEF\Office2013\setup.exe /packager
    \\APPV-CL-WIN7DEF\Office2013\configuration.xml
    \\APPV-CL-WIN7DEF\Office2013\Appv
    Everything seemed to work fine.
    The creted folder had Office\Data\15.0.4649.1001 folder (I guessed this is a version number)
    When I tried to add the package to App-V Server (in the Console) I get the following error:
    An unexpected error occurred while retrieving AppV package manifest. Windows error code: 1465 - Windows was unable to parse the requested XML data.
    I tryied to publish it from powershell, getting the same error message agalluci image post shows.
    From the Event Log I got this additional information:
    There was a problem retrieving the requested package \\APPVMANAGER\AppVpck\Office\VisioProVolume_ProPlusVolume_en-us_x86.appv for import. Error message: Unspecified error
    Element '{http://schemas.microsoft.com/appv/2010/manifest}UsedKnownFolders' is unexpected according to content model of parent element '{http://schemas.microsoft.com/appx/2010/manifest}Package'.
    I haven't found any indication of which file is the manifest app-v file.
    I also haven't found any .xml with the "UsedKnownFolders" tag (I changed the .appv package extension to .zip and explored some of the files).
    I tryied creating a package for 32 and 64 bits, only office, office and visio, and office visio and project running Windos 7 and Windows 2012.
    Thanks in advance for any help.

  • What caused the iBook problem?

    I'm writing this for my wife, as she's unable to use her iBook for more than a few minutes before it locks up.
    I'm serving in the military overseas. My wife and I both use Apple products to chat, email, etc. When I spoke to her yesterday, she was frantic. Her iBook G4 apparently started making a strange noise and then stopped working altogether.
    I asked her what she had tried, and she explained that she spent over an hour on the phone with Apple support (I knew AppleCare might come in handy). The first support person she spoke with was, for lack of a better term, an idiot. This was confirmed by the third support person she spoke with. I'll explain later.
    The problem was that when she tapped her spacebar to wake up the computer, it didn't wake up completely. She got a grey screen, Apple logo, and that was it. I told her to be patient, that maybe it was reseting after an update (that was before I knew about the 10.4.6 update being available).
    Her computer auto-updates every Monday.
    I had her turn off the computer by holding down the power button. I then had her disconnect the power cord and remove the battery. I did this on a hunch (just in case the computer had a heat problem). She reconnected the power cord, pressed the power button, and it was back up and running - for about 5 minutes.
    Then the computer began making a not-so-funny noise again, and the spinning-beach-ball-of-death reared it's ugly head and wouldn't go away.
    The first support person had her use the install/boot disk that came with the computer. That was Panther. We're using Tiger. Bad idea.
    When the boot/install disk did not appear to be working, the first support person had her abort, and she was prompted with little phrases like "are you sure you want to quit, doing so now may damage your files" or something like that.
    He just had her keep clicking "OK" and eventually got tired of talking to her and told her the hard drive was bad and that she was SOL.
    The second support person was apparently too busy to troubleshoot any further and cut directly to "sorry, you're SOL".
    The third support person was a little more helpful in that he talked her through connecting the iBook to her G5 PowerPC iMac to attempt pulling the files over to the iMac (she had already resigned herself to the fact that the iBook hard drive was on it's last leg).
    She had asked the first support person about doing this and he said that if the files were corrupt on the iBook, they might corrupt the iMac, and that it was a bad idea. Not a very bright guy, considering the files would be copied to a folder, and wouldn't overwrite the iMac's system files.
    She started to transfer files and the iBook froze again. She repeated the steps I had her do earlier, managed to get a CD in the the drive, copied a few folder successfully to the CD, checked the CD to see if the files were there (success!) but then the iBook died before she could get the CD out. She's working on holding down the track pad button while rebooting to see if it'll spit out the CD as I type this.
    So, in addition to wanting to know how to resolve the problem, I'd like to know what caused it.
    What caused so many people to have alleged hard-drive problems within a day or two of each other?
    Is this Apple's first virus?
    Is this the work of a disgruntled Apple employee working in the updates department?
    Is this an evil Apple plot to force us to by MacBook Pro's that won't run Virtual PC?
    Will running the 10.4.6 hurt or help the situation?
    Why is there such inconsistency in Apple support and aren't they supposed to log their trouble-shooting steps performed thus far?
    My wife has been using Mac's for over 9 years. I've only been using them for 2 years. Up until now, I've had a lot of confidence in Apple to be a solid platform, even if not the fastest platform. This experience is not inspiring me to purchase another Apple computer.
    PowerBook G4 1.5Ghz 15   Mac OS X (10.4.6)   iBook G4 1.2Ghz 14, iSight, 23" HD Cinema Display, LaCie d2, iLap, nano, Airport Express

    Hi Robk64,
    You might want to look at...
    Knowledge Base Document #106214 on Troubleshooting Startup Issues
    Knowledge Base Document #58583 on How to use FireWire target disk mode
    Knowledge Base Document #106941 on Mac OS X: How to back up and restore your files
    Do you have the Tiger Install Disc?
    SOL?
    Her files probably won't fit on a CD; unless she has less then 700Mb.
    1."Is this Apple's first virus?"
    Negative
    2. "Is this the work of a disgruntled Apple employee working in the updates department?"
    No, I don't think so. Apple tries these out to try and avoid problems with their updates. Things happen that are not expected. They wouldn't put anything out unless they thought it was ready.
    3. "Is this an evil Apple plot to force us to by MacBook Pro's that won't run Virtual PC?"
    First off, look at #1 and think about what platform is notorious for virus problems (Mac has had not had any virus out breaks so far). There have been some "malware/macro" software that was meant to mess with Apple Computers. The most recent that was was over exaggerated was nothing special; MacWorld worked pretty hard to get it to effect their machine. As long as you know what you are downloading and where you are getting it from, you should have no problem.
    If you want VPC to work on a MacBook Pro; don't look to Apple. You should talk to Microsoft's Mac Department because Apple announced the Universal Binary switch a long time ago (with developer help) so that software companies could make the switch easier. If anyone is to blame; its Microsoft [they are busy working out their problems with Vista; I am guessing it will be awhile before you see VPC for MBP;) ]
    "Will running the 10.4.6 hurt or help the situation?"
    My opinion would to just reinstall Mac OS X after backing up the hard drive. That would probably fix your problem. Once OS X is installed; update the software.
    "Why is there such inconsistency in Apple support and aren't they supposed to log their trouble-shooting steps performed thus far"
    Once in a while Apple's personnel may make human errors. The second one you talked to may have seen her work-up and just reiterated what was said. They have resources we don't, but they can't really go beyond them because they can't see the product, and they are just call support. You may have to send it in.
    So in 9 years, you have had this one problem. We can't really tell you what is wrong with the computer because we can't see it ourselves; we can only give suggestions/ideas. Tell them her story, explaining her situation (military etc) and then see if they can help. She may want to bring it into her local Apple Store/Reseller. She can make a reservation on the website or at the store. She can get better feedback in person.
    Just some of my thoughts,
    Jon
    Mac Mini 1.42Ghz, iPod (All), Airport (Graphite & Express), G4 1.33Ghz iBook, G4 iMac 1Ghz, G3 500Mhz, iBook iMac 233Mhz, eMate, Power Mac 5400 LC, PowerBook 540c, Macintosh 128K, Apple //e, Apple //, and some more...  Mac OS X (10.4.5) Moto Razr, iLife '06, SmartDisk 160Gb, Apple BT Mouse, Sight..

  • What causes BUFFER GETS and PHYSICAL READS in INSERT operation to be high?

    Hi All,
    Am performing a huge number of INSERTs to a newly installed Oracle XE 10.2.0.1.0 on Windows. There is no SELECT statement running, but just INSERTs one after the other of 550,000 in count. When I monitor the SESSION I/O from Home > Administration > Database Monitor > Sessions, I see the following stats:
    BUFFER GETS = 1,550,560
    CONSISTENT GETS = 512,036
    PHYSICAL READS = 3,834
    BLOCK CHANGES = 1,034,232
    The presence of 2 stats confuses. Though the operation is just INSERT in database for this session, why should there be BUFFER GETS of this magnitude and why should there by PHYSICAL READS. Aren't these parameters for read operations? The BLOCK CHANGES value is clear as there are huge writes and the writes change these many blocks. Can any kind soul explain me what causes there parameters to show high value?
    The total columns in the display table are as follows (from the link mentioned above)
    1. Status
    2. SID
    3. Database Users
    4. Command
    5. Time
    6. Block Gets
    7. Consistent Gets
    8. Physical Reads
    9. Block Changes
    10. Consistent Changes
    What does CONSISTENT GETS and CONSISTENT CHANGES mean in a typical INSERT operation? And does someone know which all tables are involved in getting these values?
    Thank,
    ...

    Flake wrote:
    Hans, gracias.
    The table just have 2 columns, both of which are varchar2 (500). No constraints, no indexes, neither foreign key references are in place. The total size of RAM in system is 1GB, and yes, there are other GUI's going on like Firefox browser, notepad and command terminals.
    But, what does these other applications have to do with Oracle BUFFER GETS, PHYSICAL READS etc.? Awaiting your reply.Total RAM is 1GB. If you let XE decide how much RAM is to be allocated to buffers, on startup that needs to be shared with any/all other applications. Let's say that leaves us with, say 400M for the SGA + PGA.
    PGA is used for internal stuff, such as sorting, which is also used in determing the layout of secondary facets such as indexes and uniqueness. Total PGA usage varies in size based on the number of connections and required operations.
    And then there's the SGA. That needs to cover the space requirement for the data dictionary, any/all stored procedures and SQL statements being run, user security and so on. As well as the buffer blocks which represent the tablespace of the database. Since it is rare that the entire tablespace will fit into memory, stuff needs to be swapped in and out.
    So - put too much space pressure on the poor operating system before starting the database, and the SGA may be squeezed. Put that space pressure on the system and you may enbd up with swapping or paging.
    This is one of the reasons Oracle professionals will argue for dedicated machines to handle Oracle software.

  • How can I find out what causes a program to NOT RESPONDING status suddenly?

    After a very long period of functioning without serious problems a program suddenly doesn't start anymore, showing this funny rotating ball and a message in the Activity Monitor that this program is not responding. I have searched the log files meticulously, hoping to find some clues what caused the stuck, but no chance of course. Is there a more or less "educated way" to find out, what happened and how to prevent it in the future?
    Thanks a lot in advance

    Some of your user files (not system files) have incorrect permissions or are locked. This procedure will unlock those files and reset their ownership, permissions, and access controls to the default. If you've intentionally set special values for those attributes, they will be reverted. In that case, either stop here, or be prepared to recreate the settings if necessary. Do so only after verifying that those settings didn't cause the problem. If none of this is meaningful to you, you don't need to worry about it, but you do need to follow the instructions below.
    Back up all data before proceeding.
    Step 1
    If you have more than one user, and the one in question is not an administrator, then go to Step 2.
    Enter the following command in the Terminal window in the same way as before (triple-click, copy, and paste):
    sudo find ~ $TMPDIR.. -exec chflags -h nouchg,nouappnd,noschg,nosappnd {} + -exec chown -h $UID {} + -exec chmod +rw {} + -exec chmod -h -N {} + -type d -exec chmod -h +x {} + 2>&-
    You'll be prompted for your login password, which won't be displayed when you type it. Type carefully and then press return. You may get a one-time warning to be careful. If you don’t have a login password, you’ll need to set one before you can run the command. If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator.
    The command may take several minutes to run, depending on how many files you have. Wait for a new line ending in a dollar sign ($) to appear, then quit Terminal.
    Step 2 (optional)
    Take this step only if you have trouble with Step 1, if you prefer not to take it, or if it doesn't solve the problem.
    Start up in Recovery mode. When the OS X Utilities screen appears, select
              Utilities ▹ Terminal
    from the menu bar. A Terminal window will open. In that window, type this:
    resetp
    Press the tab key. The partial command you typed will automatically be completed to this:
    resetpassword
    Press return. A Reset Password window will open. You’re not going to reset a password.
    Select your startup volume ("Macintosh HD," unless you gave it a different name) if not already selected.
    Select your username from the menu labeled Select the user account if not already selected.
    Under Reset Home Directory Permissions and ACLs, click the Reset button.
    Select
               ▹ Restart
    from the menu bar.

  • Inheritance class in the system package

    Hi all, when I use a tool such as Java Decompiler to explore the classses in the system package(javax.microedition.lcdui provided with Nokia SDK_v1_1), I see that there are many non-documented methods in the class, e.g, getkeyPressedEvent() in the class TextBox. So I try to override these methods in the sub-classes that are declared in the same package. Compiling by J2SDK 1.4.1_03 is OK but running on the Nokia simulator 6310i, I take the error msg: "Cannot create class in the system package".
    What is wrong here? Does it means we can not modify the code of the super class in the system package?
    Please help me

    What is wrong here? Does it means we can not modify
    the code of the super class in the system package?Exactly.
    It would violate the license.

  • What is usage of package interface?

    Hi Experts:
                    Who knows what the usage of package interfce is&#65311; How to use it in development.

    Use
    From the outside, a package looks like a "black box." To make packages visible from the outside so that they can be used, you define package interfaces. Only those package elements that have been added to an interface can be used by other packages. Packages make their services available to other packages using interfaces.
    Prerequisites
    You have opened the relevant package in the Package Builder.
    Procedure
    To create a package interface:
    Make sure you are in Change mode.
    Choose the Package interfaces tab.
    Choose Add.
    The system displays the Create package interface dialog box.
    Enter a name and short description for the interface.
    Choose  to confirm your entries.
    Save your entries ().
    In the dialog box that appears, assign a transport request.
    Result
    You have created an interface for the package. Each interface you create is an independent transport object, separate from the package.
    You can also add package elements to the interface to make the elements in it visible to other packages.
    package inerfaces play a important role in advanced ABAP technogies
    such as
    ABAP OBJECTS
    DYNPRO
    for  detailed information packages interfaces
    follow thelink
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/6066fbe8-edc4-2910-9584-a9601649747d
    <REMOVED BY MODERATOR>
    Edited by: Alvaro Tejada Galindo on Feb 22, 2008 2:39 PM

  • Inconsistency in structure u0093KOMPu0094 - what caused this?

    Hi All,
    We had a problem where all users experienced an ABAP Dump 'DDIC_TYPE_INCONSISTENCY' when running transaction codes such as FB50.
    To solve the problem SAP sent the following instructions:
    “The problem is due to Inconsistency in the Dictionary for the structure
    KOMP. If you go to TCode SE11 : KOMP > Display : Utilities > Runtime
    Object > Check -> Active runtime object for KOMP is inconsistent.
    To solve this error, please activate the structure KOMP manually by
    going to tcode SE11 : enter KOMP > Display : Structure – Activate”
    I have asked SAP what exactly caused this problem and they mentioned that a user had changed underlying structure of KOMP named KOMPAKE.
    Tcode SE11 is locked in Production to prevent stuff like this from happening and the only tcode the users ran before we experienced the first dump is KE30.
    SAP insists that KE30 could not have changed structure.  And the only changes made in production were transports imported 5 days before we experienced this problem.
    Would anyone have ideas on how I can determine what caused this problem?
    I would appreciate any help.
    Thanks,
    Kevin

    I looked at the version management for this structure KOMPAKE and the only entry I see is from the same user ID with a data/time stamp right before we experienced the first ABAP Dump, and the entry in the version managements starts like this:
    Version(s) in the development database:
      activ          X  640               
    I also noticed the same structure KOMPAKE changed in our QA environment by a user that was testing KE30 a day after we had this problem in Production.
    So maybe KOMPAKE was auto-generated by KE30 and somehow failed before it could complete, leaving it in an inactive state?
    But if that is the case why were there no problems before, can a structure be auto-generated if its already active?
    I also found this System log in SM21 where it shows the first ABAP Dump and the errors before it:
                                                                                    Time     Ty. Nr  Cl. User         Tcod MNo Text                                               
    19:06:14 DP                            Q0I Operating system call recv failed (error no. 232 )           
    19:06:14 DP                            Q04 Connection to user 10524 (User1 ), terminal 68 (PCComputer ) lost
    19:06:24 DIA 000 100 User1        KE30 R2C Terminal 00068 in status DISC                                
    19:06:24 DIA 000 100 User1        KE30 R68 Perform rollback                                             
    19:06:24 DIA 000 100 User1        KE30 R47 Delete session 001 after error 004                           
    19:06:24 DP                            Q0G Request (type DIA) cannot be processed                       
    19:07:26 DIA 000 000 SAPSYS            R68 Perform rollback                                             
    19:07:27 DIA 000 000 SAPSYS            AB0 Run-time error "DDIC_TYPE_INCONSISTENCY" occurred            
    19:07:27 DIA 000 000 SAPSYS            AB1 > Short dump "070327 190727 hsapecp1 SAPSYS " generated
    Message was edited by:
            Kevin Elias
    Message was edited by:
            Kevin Elias

  • HT5012 What causes an IPAD 2 to orient to portrait instead of landscape inside apps?

    What causes an IPAD 2 to not change to landscape orientation in apps?  Is it broken or is there a setting not set correctly?

    As said before, some apps must be run in a specific orientation, however, there is a setting to lock it in one or the other orientation. Getting to this setting can be achieved by several different ways depending on system model. The new IOS 7 has a menu that can be dragged upward from the bottom of the screen. The icon with the lock is your target.

  • What version control system you use?

    We are 20 developer and we use bitkeeper as a version control system.
    But we have 4 envirronnement.
    dev/test/pre-prod/prod.
    Sometimes, 2-3 projects are affecting the same packages.
    And different packages version is all over the place since we have 4 envirronnements.
    What version control system you use for packages?
    Would be cool to have a version control system intergrated to our tools, like toad, pl/sql dev or sql developer, is there one for those tools?
    Is the tool you using it doing all you want it to do?
    Have any link for me to check out?

    Hi,
    I recommend SourceAnywhere Standalone to you. It is an SQL-based source control application that provides all of the key features of VSS, plus much more. It is well integrated with Microsoft Visual Studio 6/2003/2005/2008, Dreamweaver and Eclipse. Here is the home page of SourceAnywhere Standalone:
    http://www.dynamsoft.com/Products/SAWstandalone_Overview.aspx
    The Hosted edition, SourceAnywhere Hosted that is delivered as a SaaS application is also available.
    http://www.dynamsoft.com/Products/SAWhosted_Overview.aspx
    You can take a look.
    Thanks,
    Catherine Sea
    www.dynamsoft.com
    the leading developer of version control and issue tracking software
    Message was edited by:
    Catherine Sea

Maybe you are looking for

  • Where did my scanner go? It disappeared from Image Capture

    I've been using Image Capture for quite awhile (since HP didn't upgrade their drivers to Lion probably), and suddently, even though my MacBook Pro is on the same wireless network as the printer/scanner (as they have been) the scanner is not showing u

  • Having problem with siri on calling someone

    Hi.. i'm having a problem with siri when calling someone..it says " i can't call using that number " Im from Mauritius, our mobile number having been migrated into 8-digits since 1 month. I'd turn off siri, reset setting.. its the same! whats wrong w

  • EFS with key protected by TPM

    I would like to encrypt directory used for system backup and EFS private must be protected by TPM. I have a valid certificate (template derived from "EFS Basic" + "Microsoft Platform Crypto Provider" RSA/2048) D:\>whoami nt authority\system D:\>certu

  • Can't drag movie to my itouch

    HI, Firstly, I'd like to thank Stedman1 who respond my previous questions promptly and I've upgrated my itouch to version 3.1.3. However, there are movies which can be played in itunes but can't be draged in my itouch. It is said that because this mo

  • Adobe Premiere 6.5 crashing..

    iHad installed Adobe premiere 6.5 on my iMac g3 quite a while ago, and it worked perfectly fine, seamlessly. When it broke down, I had installed premiere on my Macbook pro. Even though the installer said the installation completed succesfully, and al