Unable to find schema where procedure is created.

I have created a trigger :
create or replace trigger atp_bookstest_trigger
before insert on atp_bookstest
for each row
DECLARE
cnt number;
BEGIN
select count(*) into cnt
from atp_bookstest
where title = :new.title;
IF(cnt > 0) THEN
call MY_PROC(:new.title, :new.author,:new.publisher,
:new.rating);
ELSE
insert into atp_bookstest
values(:new.title, :new.publisher, :new.author,
:new.rating);
END IF;
EXCEPTION
WHEN NO_DATA_FOUND THEN
RAISE_APPLICATION_ERROR(-20100, 'NO RECORDS FOUND');
END;
and a procedure:
create or replace procedure my_proc
(new_title IN varchar ,new_author IN varchar,
new_publisher IN varchar,new_rating IN number)
IS
ttl varchar(100);
auth varchar(100);
pblshr varchar(100);
rat number(2);
begin
select title,author,publisher,rating into
ttl,auth,pblshr,rat from atp_bookstest
where title = new_title;
insert into atp_bookstest_history
values (ttl, auth, pblshr,rat,'chintan');
UPDATE atp_bookstest set
author = new_author,
publisher = new_publisher,
rating = new_rating
where title = new_title;
EXCEPTION
WHEN NO_DATA_FOUND THEN
RAISE_APPLICATION_ERROR(-20100, 'NO RECORDS FOUND');
END my_proc;
my trigger is not able to find the procedure, that is created successfully.....even i can execute the procedure from sql prompt...
execute my_proc('c','c','c',2); updates my existing table and history table.
i m using default scott tiger uname and password...
but i get compilation errors for the trigger as procedure is getting created somewhere else...that i dont know....
if i give select object_name,procedure_name from user_procedures, my procedure is coming under object_name.
if i select trigger_name from user_triggers i get the trigger name ...
is it because, they are getting created under different schema names??
i m not sure how to resolve this thing..
can some1 help me...
appreciate your efforts for reading this thread..!!!
Thank you,
Chintan

hey thank you jameel, it worked and my trigger got created...
thank yo peter you also..
jameel,
when i try to upload csv values using sqlldr, it throws errors....from the procedure..
actually i have before insert trigger on atp_bookstest table, and that trigger invokes the procedure my_proc,
erros i m getting while uploading the data using sqlldr is listed below...
please look into it, as i m totally unaware about this things...
seek ur help ..
Record 1: Rejected - Error on table ATP_BOOKSTEST.
ORA-00036: maximum number of recursive SQL levels (50) exceeded
ORA-00036: maximum number of recursive SQL levels (50) exceeded
ORA-00036: maximum number of recursive SQL levels (50) exceeded
ORA-00600: internal error code, arguments: [17281], [36], [0x6622D95C], [], [], [], [], []
ORA-00036: maximum number of recursive SQL levels (50) exceeded
ORA-06512: at "SCOTT.ATP_BOOKSTEST_TRIGGER", line 4
ORA-04088: error during execution of trigger 'SCOTT.ATP_BOOKSTEST_TRIGGER'
ORA-06512: at "SCOTT.ATP_BOOKSTEST_TRIGGER", line 11
ORA-04088: error during execution of trigger 'SCOTT.ATP_BOOKSTEST_TRIGGER'
ORA-06512: at "SCOTT.ATP_BOOKSTEST_TRIGGER", line 11
ORA-04088: error during execution of trigger 'SCOTT.ATP_BOOKSTEST_TRIGGER'
ORA-06512: at "SCOTT.ATP_BOOKSTEST_TRIGGER", line 11
ORA-04088: error during execution of trigger 'SCOTT.ATP_BOOKSTEST_TRIGGER'
ORA-06512: at "SCOTT.ATP_BOOKSTEST_TRIGGER", line 11
ORA-04088: error during execution of trigger 'SCOTT.ATP_BOOKSTEST_TRIGGER'
ORA-06512: at "SCOTT.ATP_BOOKSTEST_TR
Record 2: Rejected - Error on table ATP_BOOKSTEST.
ORA-00036: maximum number of recursive SQL levels (50) exceeded
ORA-00036: maximum number of recursive SQL levels (50) exceeded
ORA-00036: maximum number of recursive SQL levels (50) exceeded
ORA-00600: internal error code, arguments: [17281], [36], [0x6622D95C], [], [], [], [], []
ORA-00036: maximum number of recursive SQL levels (50) exceeded
ORA-06512: at "SCOTT.ATP_BOOKSTEST_TRIGGER", line 4
ORA-04088: error during execution of trigger 'SCOTT.ATP_BOOKSTEST_TRIGGER'
ORA-06512: at "SCOTT.ATP_BOOKSTEST_TRIGGER", line 11
ORA-04088: error during execution of trigger 'SCOTT.ATP_BOOKSTEST_TRIGGER'
ORA-06512: at "SCOTT.ATP_BOOKSTEST_TRIGGER", line 11
ORA-04088: error during execution of trigger 'SCOTT.ATP_BOOKSTEST_TRIGGER'
ORA-06512: at "SCOTT.ATP_BOOKSTEST_TRIGGER", line 11
ORA-04088: error during execution of trigger 'SCOTT.ATP_BOOKSTEST_TRIGGER'
ORA-06512: at "SCOTT.ATP_BOOKSTEST_TRIGGER", line 11
ORA-04088: error during execution of trigger 'SCOTT.ATP_BOOKSTEST_TRIGGER'
ORA-06512: at "SCOTT.ATP_BOOKSTEST_TR
Record 3: Rejected - Error on table ATP_BOOKSTEST.
ORA-00036: maximum number of recursive SQL levels (50) exceeded
ORA-00036: maximum number of recursive SQL levels (50) exceeded
ORA-00036: maximum number of recursive SQL levels (50) exceeded
ORA-00600: internal error code, arguments: [17281], [36], [0x6622D95C], [], [], [], [], []
ORA-00036: maximum number of recursive SQL levels (50) exceeded
ORA-06512: at "SCOTT.ATP_BOOKSTEST_TRIGGER", line 4
ORA-04088: error during execution of trigger 'SCOTT.ATP_BOOKSTEST_TRIGGER'
ORA-06512: at "SCOTT.ATP_BOOKSTEST_TRIGGER", line 11
ORA-04088: error during execution of trigger 'SCOTT.ATP_BOOKSTEST_TRIGGER'
ORA-06512: at "SCOTT.ATP_BOOKSTEST_TRIGGER", line 11
ORA-04088: error during execution of trigger 'SCOTT.ATP_BOOKSTEST_TRIGGER'
ORA-06512: at "SCOTT.ATP_BOOKSTEST_TRIGGER", line 11
ORA-04088: error during execution of trigger 'SCOTT.ATP_BOOKSTEST_TRIGGER'
ORA-06512: at "SCOTT.ATP_BOOKSTEST_TRIGGER", line 11
ORA-04088: error during execution of trigger 'SCOTT.ATP_BOOKSTEST_TRIGGER'
ORA-06512: at "SCOTT.ATP_BOOKSTEST_TR
Record 4: Rejected - Error on table ATP_BOOKSTEST.
ORA-00036: maximum number of recursive SQL levels (50) exceeded
ORA-00036: maximum number of recursive SQL levels (50) exceeded
ORA-00036: maximum number of recursive SQL levels (50) exceeded
ORA-00600: internal error code, arguments: [17281], [36], [0x6622D95C], [], [], [], [], []
ORA-00036: maximum number of recursive SQL levels (50) exceeded
ORA-06512: at "SCOTT.ATP_BOOKSTEST_TRIGGER", line 4
ORA-04088: error during execution of trigger 'SCOTT.ATP_BOOKSTEST_TRIGGER'
ORA-06512: at "SCOTT.ATP_BOOKSTEST_TRIGGER", line 11
ORA-04088: error during execution of trigger 'SCOTT.ATP_BOOKSTEST_TRIGGER'
ORA-06512: at "SCOTT.ATP_BOOKSTEST_TRIGGER", line 11
ORA-04088: error during execution of trigger 'SCOTT.ATP_BOOKSTEST_TRIGGER'
ORA-06512: at "SCOTT.ATP_BOOKSTEST_TRIGGER", line 11
ORA-04088: error during execution of trigger 'SCOTT.ATP_BOOKSTEST_TRIGGER'
ORA-06512: at "SCOTT.ATP_BOOKSTEST_TRIGGER", line 11
ORA-04088: error during execution of trigger 'SCOTT.ATP_BOOKSTEST_TRIGGER'
ORA-06512: at "SCOTT.ATP_BOOKSTEST_TR

Similar Messages

  • ONCE I CHAT WITH APPLE EXPERT TO RESOLVE MY PROBLEM BUT NOW I WAS UNABLE TO FIND FROM WHERE TO START CHAT. KINDLY TELL ME HOW I CAN CHAT WITH APPLE EXPERT

    once i chat an apple expert to resolve my issue. but now i am unable to find the place on apple website from where i start chat.kindle tell me from where i can find that chat section..

    This is one route.   Apple - Support - Contact Apple Support    But I am wondering if your previous chat was within the 90 days allowed in the guarantee period ... a different situation entirely to what you now want.   Why not Google Kindle to see if your interests appear there.

  • Unable to find the ODS object while creating Multiprovider, Help

    Hello Experts,
    Iam facing problems while creating the MULTIPROVIDER.
    I am unable to find the ODS in the list during initial selection of creation of Multiprovider. There are some ODS's which appear, while others don't.
    Is there any selection on ODS that is preventing it from appearing in the list of ODS's.
    Please help....Very Urgent

    In ODS-change screen tick checkbox for 'BEx reporting' that appears under 'settings'.
    then save and activate ODS..
    after this the ODS will appear in the list while creating multiprovider.
    cheers,
    Vishvesh
    Message was edited by: Vishvesh

  • Unable to find the sended message from create support message in solman.

    Hello everybody,
    I had installed the Solution manager and IDES server.
    I have configure the Maintenance Optimizer, Now I am able to send the
    support message from the IDES.
    But Now where to find or serach the message in solution manager ?
    or need to be configure service desk?
    Please suggest me step by step  configuration to check the sended message.
    Thanks

    hi
    >
    ganesh borase wrote:
    > I have configure the Maintenance Optimizer, Now I am able to send the
    > support message from the IDES.
    > Thanks
    sorry nt clear from your above statement, you configured maintenance optimzer for download supprot packages. do you want to configure support messages functiionality?
    Can you please clarify your requirement?
    Thanks,
    Jansi

  • I am attempting to upgrade from Adobe Premier Elements 9 to Adobe Premier Elements 13 after using 13's trial version for a few weeks.  I am unable to find where and how to do this without losing the project I have been working on.  Please help?

    I am attempting to upgrade from Adobe Premier Elements 9 to Adobe Premier Elements 13 after using 13's trial version for a few weeks.  I am unable to find where and how to do this without losing the project I have been working on.  Please help?

    Vere Clarke
    Premiere Elements 9.0/9.0.1 and Premiere Elements 13 are standalone products.
    So, you can have both on the same computer, but only open one for your work.
    The classical recommendation is to finish a project in the version in which it was created since there
    is no guarantee that a project from an earlier version will open in the later version. Probably will, but
    no guarantees. And, when you do explore this, do it from a copy of the earlier version project. Once you
    take the earlier version project into a later version one, you cannot go back to edit the later version edited
    project in the earlier version program.
    If you have both versions (9 and 13) on the same computer and you have not moved, deleted, renamed any of the version 9's files/folders,
    right click the saved closed Premiere Elements 9.0/9.0.1 project file, select Open With, and then Adobe Premiere Elements 13.
    (Your 9.0/9.0.1 saved closed project file should be found in Libraries/Documents/Adobe/Premiere Elements/9.0.)
    Please review and consider. If any questions or need clarification, please do not hesitate to let me know.
    Thank you.
    ATR

  • Where did my pics go ??? Transferred pics from memory card to Mac Pro and lost pics on memory card and unable to find on Mac

    where did my pics go. Transferred 40-50- pic from camera memory card to Mac via  slot; lost pics on memory card and unable to find anywhere in Mac. May have gone to Open Office as Data . Is that possible and if so can I get pics back or if not so ,where could they be????

    First place to check is in the iPhoto library. If the images were imported there then they will be visible in the previews created.
    The physical location of image files in iPhoto is quite buried in folders within folders. So, if you want to copy them then select all of the ones needed from the previews and copy from iPhoto to a new location, preferably a new folder in the Pictures folder.
    The other app that might have transferred the files is Image Capture. It would download files from cards or cameras. Launch this app and look in the preferences to see the default location of transferred files.

  • SCOM 2012 SP1 - Created a new group and unable to "find" newly created group to create custom report

    Hello,
    I just created a new custom dynamic group based on database instances using a wildcard.  The group "DBgroup" populates just fine, I can see the members when choosing to view them via the group properties.  My issue is that when I'm going
    into the reporting pane, choosing the MS generic report library, and then choosing custom configuration...I am unable to "FIND" my group that i just created?   My questions are is there a length of time in which this group will get populated
    to the report server or do I have an issue?  I see no errors in the logs on the report server or management server.   I have not seen this before and I'm unsure where to go from here.  Any help is appreciated, thanks.

    Hello,
    Does the group pop-up in the list now? It may take hours for the new Computer Group could be used in the reports.
    Besides, did you define a Group Scope for your user role? 
    Thanks,
    Yog Li
    TechNet Community Support
    It's been over 48 hours now and still do not see the new groups.   I have no group scopes defined

  • I received a psd file created in CS6 for MAC, I am unable to find the layers when I open it in photoshop in Windows. What can i do to edit the files?

    I received a psd file created in CS6 for MAC, I am unable to find the layers when I open it in photoshop in Windows. What can i do to edit the files? What can be done so that I can either open and see the layers or how can the sender save it in a way that it doesn't "merge" the layers in some way to just one?

    Could try saving as tiff provided layers and transparency are chosen at the time of saving. But it's hard to give a definitive answer as it depends on the final usage. For example PSD's tend to work better in applications like In Design in comparison with tiff.

  • TS4002 I'm trying to create a new apple-id but when typing the email adress I want to use I'm told that the particular email adress is not allowed but when searching I can't find same being used. How do I find out where that particular email adress is use

    I'm trying to create a new apple-id but when typing the email adress I want to use I'm told that the particular email adress is not allowed When searching I can't find same being used anywhere. How do I find out where that particular email adress is used so I can delete it there and use it for my new apple-id?

    Place the iOS device in Recovery Mode and then connect to your computer and restore via iTunes. The iPod will be erased.
    iOS: Wrong passcode results in red disabled screen                         
    If recovery mode does not work try DFU mode.                        
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings        
    For how to restore:
    iTunes: Restoring iOS software
    To restore from backup see:
    iOS: How to back up     
    If you restore from iCloud backup the apps will be automatically downloaded. If you restore from iTunes backup the apps and music have to be in the iTunes library since synced media like apps and music are not included in the backup of the iOS device that iTunes makes.
    You can redownload most iTunes purchases by:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store        
    Also
    If you have Find My iPhone enabled, you can use Remote Wipe to erase the contents of your device. If you have been using iCloud to back up, you may be able to restore the most recent backup to reset the passcode after the device has been erased.

  • When i create a pdf in adobe standard get a unable to find adobe pdf resource file

    when i create a pdf in adobe standard get a unable to find adobe pdf resource file

    Hi! I believe you are trying to ask a question about Adobe Acrobat Standard. If that is the case, asking in the Acrobat forums would get it a quicker response. This forum is for Adobe Connect.
    Otherwise if I mis-assumed, please rephrase to help us better understand the issue at hand.

  • GRC 10 Upgrade: Unable to find a system while creating a request in AC

    Hi All,
    I am unable to find a system while creating a new request in Access Management. I have created a connector to the backend system  and I tested that by logging into the system remotely. However, the same system is not available for selection for which the request needs to be created.
    Please suggest.
    Regards,
    Faisal

    Hi Faisal,
    Please re-visit the following config:
    SPRO>GRC>AC-->Maintain Connector Settings
    SPRO>GRC>AC-->Maintain Mapping for Actions and Connector Groups
    SPRO>GRC>AC-->Maintain Plugin Settings (Make sure you have not checked the checkbox)
    Still not solved - please follow this document and make sure you have completed all the steps:
    http://www.sdn.sap.com/irj/bpx/go/portal/prtroot/docs/library/uuid/5067e447-5c64-2e10-7d9c-8f7e5953aadb
    Regards,
    Ajesh.

  • Hi all, Please suggest a case where there is a requirement for new SOAP sender adapter module. I wanted to develop a module but in my current project i am unable to find any such requirement.

    Hi all, Please suggest a case where there is a requirement for new SOAP sender adapter module. I wanted to develop a module but in my current project i am unable to find any such requirement. So please give me inputs for the same..
    Thank you,
    Vinay Kumar A

    You can try converting a synchrnous soap call to asynchronous using a custom module
    Here your module will send a response back to the sender system and make an asynchronous call forward

  • Unable to find Business Rules in the JDeveloper while creating new project

    Hi All,
    I am going through the chapter 9 Creating a Rule-enabled Non-SOA Java EE Application for JDevloper 11g. I am following the instruction given in the chapter.
    However I am unable to find a Business Rules category for creating a Business rules directory.
    Probably it has to be activated from somewhere.
    I tried searching its significance with JDev installation but haven't got anything.
    It seems very basic level problem, however...Please let me know if anybody knows how to solve it
    Thanks,
    Makarand.
    Edited by: user11223806 on Aug 12, 2009 7:48 AM

    Did you install the SOA extension for JDeveloper from the help->check for updates?

  • Where did strikethrough go? unable to find strikethrough button on Pages for ipad in version1.5, HELP!

    unable to find strikethrough button S on Pages for ipad in version1.5, HELP!
    look! and what's that dot thing?

    The following query runs for 10 mins on tbl with 1 mill records on sql server 2012 RTM, and for 1.5 min on sql server 2012 build 3128.
    Significant differences in duration are usually due to different plans.  As Olaf suggested, comparing the plans is a good first step.  Assuming the plans are different, I wouldn't be too quick to assume the difference is related to the software
    build.  Different plans are often due to differences in the row count estimates used to generate the plan so make sure the same indexes and statistics exist in the databases and that stats are fully up-to-date.
    What is the purpose of the WHERE clause? It seems to me it will return all rows anyway.
    Dan Guzman, SQL Server MVP, http://www.dbdelta.com

  • I am unable to install itunes onto my pc. I am unable to find where it saves it or even if it has saved it. Can anyone help?

    I am unable to install itunes onto my pc. I am unable to find where it saves it or even if it has saved it. Can anyone help?

    itunes 11 has a specific spec that needs to be met before you can install it. Please verify from this if your pc pass the requirement from this link
    iTunes 11 for Windows - Technical Specifications
    Unless otherwise specified, in C:\Documents and Settings\User\Local Settings\Temp. However, if you want to know for sure for your system, download something (if you haven't already) and do a search for that specific dwnld. Then, drill down to the containing folder.

Maybe you are looking for

  • EMTEC Flash Drive

    I'm trying to get data off a 16gb EMTEC flash drive. The red light is on, but after going into "About This Mac" it is saying the S.M.A.R.T status is not supported. Never have had an issue with flash drives before. What can I do?

  • Powerbook alternates between battery and adapter when plugged in

    The other day my PB started alternating between battery and adapter when plugged in: the symbol changes from batt to charging every few seconds, brightness goes up and down. I've managed to find a position where it will actually charge. I even tried

  • Disk space running low

    Hello all; I have disk 0 of 136GB and it is partioned to 'C' 60 GB and 'D' 76GB. However the disk space on 'D' is running low everyday. There is apache webserver running however it is only 45gb and rest of the files are around 10gb. I was wondering w

  • Older version of InDesign

    My client is waiting for her company to upgrade to CS4 in the meantime we need to work on a project in her CS. An old school version 3. I've looked through the forum for solutions on back saving files etc, but nothing seems to be working. Where can I

  • Need help with APEX Collection - C

    Hi I have values in 2 fields on my page that I use to build a collection - "On Submit - After Computations and Validations" I want to delete collection using HTMLDB_COLLECTION.DELETE_COLLECTION ; and recreate if user changes a value in any of the abo