Error messages or information for the invalidation of those procedures

Hello expert:
I have a few procedure invalidated . in principle , those procedures should be validated automatically when they are called somewhere. but they don't, that means there are some error blocking them validated. please where I can find out corresponding error messages or information for the invalidation of those procedures.
Many Thanks.

CREATE TABLE t
AS
   SELECT 1 id FROM DUAL;
CREATE OR REPLACE PROCEDURE my_procedure
AS
   v_id   t.id%TYPE;
BEGIN
   SELECT id INTO v_id FROM t;
END;
CREATE OR REPLACE PROCEDURE my_proc2
AS
BEGIN
   my_procedure;
END;
exec my_proc2;
DROP TABLE t;
ALTER PROCEDURE   dsamstrc.my_proc2
   COMPILE;
SELECT *
  FROM SYS.USER_ERRORS
WHERE NAME = 'MY_PROC2'
       OR NAME IN (SELECT REFERENCED_NAME
                     FROM dba_dependencies
                    WHERE NAME = 'MY_PROC2');
NAME     TYPE     SEQUENCE     LINE     POSITION     TEXT     ATTRIBUTE     MESSAGE_NUMBER
MY_PROCEDURE     PROCEDURE     4     4     2     PL/SQL: SQL Statement ignored     ERROR     0
MY_PROCEDURE     PROCEDURE     3     4     27     PL/SQL: ORA-00942: table or view does not exist     ERROR     0
MY_PROCEDURE     PROCEDURE     2     2     10     PL/SQL: Item ignored     ERROR     0
MY_PROCEDURE     PROCEDURE     1     2     10     PLS-00201: identifier 'T.ID' must be declared     ERROR     201
MY_PROC2     PROCEDURE     2     3     5     PL/SQL: Statement ignored     ERROR     0
MY_PROC2     PROCEDURE     1     3     5     PLS-00905: object DSAMSTRC.MY_PROCEDURE is invalid     ERROR     905wonder if something like this would work if the dependencies were more than 2 deep.
SELECT distinct *
  FROM SYS.USER_ERRORS
WHERE NAME in
       (SELECT name
        FROM dba_dependencies
connect by nocycle  name =  prior  referenced_name
start with NAME = 'MY_PROC2')
order by name;Edited by: pollywog on Apr 4, 2011 2:49 PM

Similar Messages

  • IPhoto 6.0.6 throws up Error Message when used for the first time

    After 7 months since having purchased my iMac I am using iPhoto for the first time. However, as soon as the iPhoto Library is created in the Pictures folder, about 30 seconds later, I get an Error Message stating "An error occurred while trying to save your photo library. Some recent changes may be lost. Make sure your hard disk has enough space and that iPhoto is able to access the iPhoto Library folder."
    I have over 165GB on my hard disk. I have tried re-installing iLife 06 from the system disks that came in the box with my iMac. I have tried re-building the library by holding down the Option and Command keys when launching iPhoto. Nothing has helped so far.
    I have tried calling the Apple support line, but after over an hour on the phone even he didnt know what the problem was.
    Someone please help!
    Gratefully yours,
    DMEN

    Dmen
    The plist files simply record your user preferences for an application - your choice of default font, say, or the colour of the background, that sort of stuff. If this files is damaged or corrupted it can affect the app in all sorts of ways. When you trash it the app will create a new one when you next start it, and that will be the "factory defaults", but at least it will work.
    To trash the fie:
    Go to HD / Users / Your Name / Library / Preferences and find the com.apple.iphoto.plist fie, and put it in the trash.
    Then start iPhoto.
    Regards
    TD

  • Access Denied Error Message in KM for the report published from BI

    Hi,
    Whenever we publish a Report from Bex Report Designer using Bex Broadcaster the report is getting published in the right KM Folder we choose, but when we click that link with in KM and choose Details we get a message saying "Access Denied". Due to this error that link is invisible in the actual iview where my KM folder is displayed.
    This Problem occurs only with Reports from Report Designer and not with Query from Query Designer and Web Templates from Web Application Designer.
    The user I use in BI and EP is the same. I am the owner of the KM folder and so I have full access to the folder.
    Is there any particular authorization required from BI side?
    Thanks
    Sathish

    This forum supports setup of the .NET Framework itself.
    For best suggestions on your web project configuration issue, I suggest you ask in a topical ASP.NET forum, here:
    http://forums.asp.net/
    This forum may be best:
    http://forums.asp.net/26.aspx/1?Configuration+and+Deployment
    Thank you for your understanding.

  • Error message when syncing for the first time

    Sorry if this has already been brought up...
    When I first sync my iPhone 3G with my MacBook Pro I get the following message:
    "Attempting to copy to the disk "Bob's iPhone" failed. This disk could not be read from or written to."
    I have tried completely restoring my iPhone 3G and then re-syncing... still not working.
    Anybody else getting this message?

    Dmen
    The plist files simply record your user preferences for an application - your choice of default font, say, or the colour of the background, that sort of stuff. If this files is damaged or corrupted it can affect the app in all sorts of ways. When you trash it the app will create a new one when you next start it, and that will be the "factory defaults", but at least it will work.
    To trash the fie:
    Go to HD / Users / Your Name / Library / Preferences and find the com.apple.iphoto.plist fie, and put it in the trash.
    Then start iPhoto.
    Regards
    TD

  • Error message IPC 6023 for the Bt sport channels 5...

    Had this problem for a week now and although help desk has been helpful the problem is still not resolved.
    One chap says its the broadband another says its the youview box.  I have a technical back ground and i think the broadband is working fine Hub 5 download speed 37 is fine.  Youview box does everything else except for these three channels.
    My BT fault tracking just says ongoing will call when we have news, but have not had a call for four days now?   any ideas anyone ? 

    Can you get the test channel on 900?
    Is the youview connection to  the homehub wired or via powerlines etc?
    Steve
    BT TV Expert
    I am a BT Employee and an expert on TV queries. I am here volunteering my own time to give advice, primarily on the BT Vision+ and YouView boxes. Go here for more info.
    If my post has been helpful, please click on the Ratings star on the left-hand side of the post.

  • Every time I try to access any website, I keep getting this message: Revocation information for the security certificate for this site is not available. Do you want to proceed? How do I fix this?

    This is driving me nuts !! I keep getting that message every time I try to access a website. It asks me to download the certificate, which I do, but the message still pops up. Any suggestions?

    no, I will be using wi-fi to connect. This usually happens whenever I try to back up

  • Using Project Settings creates an app.config and dozens of errors about "Could not find schema information for the element...

    I am trying to work with Application settings.  I would just like to put together a very simple example of using these, but I can't get the most basic example to work.  Virtually every tag regarding the new Settings produces an Error "Could not find the schema information for the element "applicationSettings". or the element "Settings" etc. etc.  I am not using IIS, this is not a Web Project, and I am not working with User Settings.  Just simple read-only Application Settings.  I've read every MSDN page regarding this subject, I don't see that I am missing a reference - HELP !!!
    REPRODUCING THE PROBLEM:
    Step 1. Create a new C# solution and Windows Forms project. 
    Step 2. Add a reference to System.configuration
    Step 3. Right click the project, choose Properties, then Settings.
    Step 4. Using the Settings Designer, create ONE setting called "MySetting" as a String with the value "MyValue".
    RESULT: Observe the Errors like these, complaining about all of the Settings tags and elements.
    Message 1 Could not find schema information for the element 'applicationSettings'. 
    Message 2 Could not find schema information for the element 'LoadOriginalLists.Properties.Settings'. 
    Message 3 Could not find schema information for the element 'setting'. 
     HERE IS MY APP.CONFIG, AS GENERATED BY THE SETTING DESIGNER TOOL:
    <?xml version="1.0" encoding="utf-8" ?>
    <configuration>
    <configSections>
    <sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
    <section name="LoadOriginalLists.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
    </sectionGroup>
    </configSections>
    <applicationSettings>
    <LoadOriginalLists.Properties.Settings>
    <setting name="MySetting" serializeAs="String">
    <value>MyValue</value>
    </setting>
    </LoadOriginalLists.Properties.Settings>
    </applicationSettings>
    </configuration>

    Ummmm... okay so these are Messages that are in the Error List.  Whether or not they are actually Errors is debatable.  They are in the Error List, so they are errors. 
    The application runs, so my question is slightly changed to the following.
    I would like to use Application Settings.  However, having settings in my app.config pollutes my Error List with a bunch of meaningless messages like "Could not find the schema information for...".  These messages then hide real errors. 
    Am I missing some setting or is there something I can do to make Visual Studio not show me these messages? 

  • Error Message F6804 Value Blank/Space invalid for account assignment elemen

    Dear Experts,
    We have a problem in Travel Management,
    I have created a trip for paid by company expenses only and entered cost distribution (fund, funds center and WBS) in the trip.
    When I transfer a trip to FI through transaction PRRW throughing error message "F6804 Value Blank/Space invalid for account assignment element for fund and FI313 No funds center entered/ derived in Item".
    The paid by com. expenses receipts of wage types credited with - positive amount in 2nd symbolic account offsetting entry and flagged W/CO also the symbolic code linked to linked  to Temprary clearing GL it is BS GL .
    I checked all the existing threads messages but I did not get solution.
    the problem comes up from our upgradation, 6 months back we upgraded to ECC 6.
    We don't have any problems in our old 4.7 system still it is working fine.
    I created OSS but still they did not solved and they are refering all passed notes.
    could any one give the solution to come out from this problem?
    Thanks and Regards,
    Satya

    Hi Satya,
    Basically the error is because of Funds Management which you have activated. Please check the note 1268001, 701291, 558295 & 936658 but i dont know will this be helpful or not.
    Regards,
    S.Srikanth
    Edited by: SrikanthS on Oct 26, 2010 11:17 AM

  • I purchased an album and all of it downloaded except for one song.  after a few auto attempts an error message comes up saying the file is corrupted. how do i get the song i paid for?

    i purchased an album and all of it downloaded except for one song.  after a few auto attempts an error message comes up saying the file is corrupted.  how do i get the song i paid for?
    oh the error msg    error= -100000

    I'd report the problem to the iTunes Store.
    Log in to the Store. Click on "Account" in your Quick Links. When you're in your Account information screen, go down to Purchase History and click "See all".
    Find the item that is not downloading properly. If you can't see "Report a Problem" next to the entry, click the "Report a problem" button. Now click the "Report a Problem" link next to the item.
    (Not entirely sure what happens after you click that link, but fingers crossed it should be relatively straightforward.)

  • I am trying to install MasterCollection_CS6_LS16. When I click the install file I get this error message: We've encountered the following issues. Installation on case-sensitive volumes is not supported. Please choose a different volume for installation.

    I am trying to install MasterCollection_CS6_LS16. When I double click the install file I get this error message: We've encountered the following issues. Installation on case-sensitive volumes is not supported. Please choose a different volume for installation. What does that mean? How should I proceed?

    Hey iraravitz,
    Could you please let me know what version of OS are working on.
    You might receive this error when you attempt to install on a drive with the HFS+ Case Sensitive file system, which is not supported for installation of Adobe Creative Suite 6.
    So, please try installing on a drive that has been formatted with a supported file system.
    You might refer the KB doc link mentioned below for the same:
    Error "Case-sensitive drives not supported" or similar install error | Mac OS
    Let me know if this helps.
    Regards,
    Anubha

  • Within redbox I can not click on a movie and get information about it, instead I get an error message that says that the situation may be temporary. yet i keep having the same problem. Do you have any idea how to fix the problem?

    Within redbox I can not click on a movie and get information about it, instead I get an error message that says that the situation may be temporary. yet i keep having the same problem. Do you have any idea how to fix the problem?

    Did you delete all receipts with iDVD in the file name  with either a .PKG or .BOM extension that reside in the HD/Library/Receipts folder and from the /var/db/receipts/  folder before installing the new copy?  If not then do so and delete the new application also.
    Click to view full size
    Then install iPhoto from the disk it came on originally and apply all necessary updaters: Apple - Support - Downloads
    OT

  • TS1292 I bought a 4 pack of $25 Itunes gift cards and only 2 will activate.  For the second two it just keeps asking for my login. No error message just keeps repeating the login

    I bought a 4 pack of $25 Itunes gift cards and only 2 will activate.  For the second two it just keeps asking for my login. No error message just keeps repeating the login.  Is there any way to fix this or did I just lose $50

    Report this here:
    iTunes Store Support
    http://www.apple.com/emea/support/itunes/contact.html

  • [svn:bz-trunk] 15217: Bug: BLZ-508 - If server receives message for an unknown destination it shouldn ' t include the destination name in the error message sent back to the client .

    Revision: 15217
    Revision: 15217
    Author:   [email protected]
    Date:     2010-04-05 03:43:36 -0700 (Mon, 05 Apr 2010)
    Log Message:
    Bug: BLZ-508 - If server receives message for an unknown destination it shouldn't include the destination name in the error message sent back to the client.
    QA: Yes
    Doc: No
    Checkintests: Pass
    Details: Changed the error message to not include destination id. I'm also checking in a few minor fixes I had locally.
    Ticket Links:
        http://bugs.adobe.com/jira/browse/BLZ-508
    Modified Paths:
        blazeds/trunk/modules/common/src/flex/messaging/errors.properties
        blazeds/trunk/modules/core/src/flex/messaging/MessageBroker.java
        blazeds/trunk/modules/core/src/flex/messaging/cluster/JGroupsCluster.java

    Thanx Mete, yeah i did...
    but i solved it some other way... not entirely sure this was
    it though as i was doing a lot of things at once...
    it was fds.swc... possibly it was out of date or missing.

  • Warning Messages - Could not find schema information for the element applicationSettings - App.Config of a console app

    This is my app.config file
    <?xml version="1.0" encoding="utf-8" ?>
    <configuration>
        <configSections>
            <sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
                <section name="IntelBrandFX.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
            </sectionGroup>
        </configSections>
      <appSettings>
        <add key="connStr" value="Data Source=tmvnasql1.tmvn.com;Initial Catalog=brandplan;Integrated Security=True"/>
      </appSettings>
      <applicationSettings>
        <IntelBrandFX.Properties.Settings>
          <setting name="IntelBrandFX_rollupViewerService_extract" serializeAs="String">
            <value>https://viewer.rollup.com/omdsp2008/extract.asmx</value>
          </setting>
        </IntelBrandFX.Properties.Settings>
      </applicationSettings>
    </configuration>
    And the Warning messages  are
    Message 1 Could not find schema information for the element 'applicationSettings'.
    Message 2 Could not find schema information for the element 'IntelBrandFX.Properties.Settings'.
    Message 3 Could not find schema information for the element 'setting'.
    Message 4 Could not find schema information for the attribute 'name'.
    Message 5 Could not find schema information for the attribute 'serializeAs'.
    Message 6 Could not find schema information for the element 'value'.
    Althought they do no hinder me from successfully running the project. these messages are annoying. I have seen many articles on the web but could nowhere find the exact schemas for that the above elements that I could add to the  DotNetConfig.xsd file.
    Could somebody give me an idea how to create xsds for the elements above and include in the dotnetConfig.xsd.
    I understand what needs to be done but not sure of the exact way to do it.
    Thanks,

    You don't need to modify the dotnetconfig.xsd.  All you need to do is generate an XSD for your section and let VS know where it is at.
    1) Create your XSD using any of the various tools available or by hand.
    2) Copy your XSD into the <VSDir>\Xml\Schemas directory.
    3) Create a catalog file for your schema.
    4) Restart VS and it'll load the XSD and give you Intellisense.
    Here's the MSDN documentation for it: http://msdn.microsoft.com/en-us/library/ms255821.aspx
    Michael Taylor - 8/18/09
    http://p3net.mvps.org

  • PDF SCANS ERROR MESSAGE: CAN'T "OPEN THE DEFAULT APP FOR THIS FILE TYPE" EG. PDF

    OFFICEJET PRO 8600 PLUS , WIN 7, SCAN TO COMPUTER AS A PDF FILE.  ERROR MESSAGE: "
     CAN'T "OPEN THE DEFAULT APP FOR THIS FILE TYPE" EG. PDF

    Hi @reddog2,
    I would contact HP Cloud Services for assistance. Call 1-855-785-2777.
    Have a nice day!
    Thank You.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

Maybe you are looking for