ERROR DURING TRIGGER EXECUTION

Hello
I need help on this issue.
I've a table with a INDEXTYPE (INDEXTYPE IS CTXSYS.CONTEXT;) on one Column
Every Time I Update,Insert,Delete one record I need to rebuild this Index or I can't access this modified Record
SO I Thought to built a Trigger that Calls a Procedure to Rebuild the Index AFTER UPDATE,INSERT or DELETE
Now when I Update or insert or Delete a record in the Table I get the Error Message :
SYS@cfmt > update IWS.ALUMNI_SEARCH set FIRST_NAME = 'TEST' where INTEGRATION_ID = 1000026;
update IWS.ALUMNI_SEARCH set FIRST_NAME = 'TEST' where INTEGRATION_ID = 1000026
ERROR at line 1:
ORA-00054: resource busy and acquire with NOWAIT specified
ORA-06512: at "IWS.REBUILD_ALUMDATA", line 15
ORA-06512: at "IWS.TRG_REB_ALUM", line 5
ORA-04088: error during execution of trigger 'IWS.TRG_REB_ALUM'
Any ideas
TRIGGER SCRIPT :
CREATE OR REPLACE TRIGGER IWS.TRG_REB_ALUM
AFTER
     INSERT OR
     UPDATE OR
     DELETE ON
IWS.ALUMNI_SEARCH
FOR EACH ROW
DECLARE
BEGIN
IWS.REBUILD_ALUMDATA;
COMMIT;
END;
INDEX
CREATE INDEX ALUMNI_DATA ON ALUMNI_SEARCH
(ALUMNI_DATA)
INDEXTYPE IS CTXSYS.CONTEXT;

Ah. Since you are using a desupported version, neither resync on commit nor transactional Text indexes. Any chance you could upgrade to a more recent version of the database?
If you are stuck on 9.2, are you really certain that you need the newly added rows available for searching immediately? That's a pretty unusual requirement for doing full-text searching. Any chance you could just schedule a periodic refresh every few minutes?
If you absolutely need immediate refreshes and you're stuck in a desupported database version, you could potentially have your trigger submit a job via the DBMS_JOB package that did your index rebuild asynchronously after your transaction committed (which would mimic the ON COMMIT attribute introduced in 10g). Since you are trying to do an ALTER INDEX, which is DDL, you won't be able to do that directly in a trigger. You might be able to call CTX_DDL.Sync_Index instead of issuing the ALTER INDEX, but I would wager that this has the same problem of doing implicit commits, and is thus ineligible to be called from a trigger.
Justin
Edited by: Justin Cave on Dec 12, 2008 1:04 PM
Generally, it's a bad idea to be using the SYS account for anything other than the small handful of administrative tasks that actually require logging in as SYS. You would generally want to use the appropriate object owner account, or at least a separate account that you created and granted appropriate privileges. SYS is special, and there are frequently behaviors that are different for SYS than other users that cause all sorts of confusion. Additionally, it's a bad idea from a security perspective to have people accessing the most powerful account in the database for routine operations.

Similar Messages

  • SMQ2: SYSFAIL Comparison error during the execution of a simple

    Hi folks, I have an operation mapping interface determination with exactly 1 target message of occurence 0..1, that means the mapping output can be nothing for some input messages, that means a target message is not produced so that the output looks like this:
    <?xml version="1.0" encoding="UTF-8"?>
    <Messages><Message1/></Messages>
    In services builder the test finishes successfully when no output message is produced. Also in integration builder i can test the configuration and it works without errors.
    But in runtime the message status is set to "Recorded for Outbound Processing" in SXI_MONITOR and the queue status of the message to "Message has errors". The message stops in SMQ2 with "SYSFAIL" as status and statusText "Comparison error during the execution of a simple" (truncated).
    Anybody experienced the same? How has the output of an operation mapping to look like when no target message is produced?
    I also tested with an output like this when no target is produced, but this results in System error "Split mapping created no messages" in SXI_MONITOR:
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:Messages xmlns:ns0="http://sap.com/xi/XI/SplitAndMerge">
    <ns0:Message1></ns0:Message1></ns0:Messages>
    Thanks for your help, best regards, Martin

    You seem to be having a multi-mapping involved.
    The operation mapping has to produce at least the start and end tag.....even if the entire message is not present
    Ex:
    <SRC>
    <First>
    <Middle>
    <Last>
    </SRC>
    If above is the structure, then it should be ensured that at least <SRC></SRC> is created by your mapping program....however in your case this is not happening....the tags that you see Messages and Message1 are due to the multi-mapping program and your message should be more than this.
    if you say that occurence is 0..1 then what you can do is map this 0..1 node (root) with at least a blank Constant.
    Unless you create a message (even though empty) you will continue to receive the error message.
    Regards,
    Abhishek.

  • An unexpected error during Command execution

    Hi,
    I am using Project Server 2007 SP 2 at the moment. One of our user keeps encountering this error "An unexpected error during Command execution" for a project file.  We tried to restore the earlier version of the plan using Administrative restore.
    But it only works as a temporary fix as the problem keeps reapprearing. Kindly help.

    Only SP2 for Project 2007? Probably not worth trying to debug, with 2007 it is almost essential to have SP3 and the very last cumulative update for Project pro and Server. 2007 was a very buggy version (they were forced to release at same time as Office
    2007 and it was too soon).
    Rod Gill
    Author of the one and only Project VBA Book
    www.project-systems.co.nz

  • Error during SQL execution

    Hi Experts,
    We run a report which fails frequently with the below error. Could any one help me with the solution and reasons for this error.
    Error during SQL execution: (DA0003): [Exception: DBD, ORA-01722: invalid number State: N/A] The following data providers have not been successfully refreshed: His. (DMA0007): []
    Connection or SQL sentence error: (DA0005): [Exception: DBD, ORA-12535: TNS:operation timed out State: N/A] A connection required to refresh this document is unavailable. (DA0004): [] The following data providers have not been successfully refreshed: Reservations CW. (DMA0007): []
    Many Thanks
    Regards,
    Syed

    Hi,
    The report is running for long time and it's getting failed. could you please let me know what could be the reason for this?
    And could you please tell me the reason/Solution for the first error which i mentioned before.
    Many Thanks
    Regards,
    Syed

  • Unexpected error during mapping execution

    Hello,
    we are implementing business intelligence for Siebel 8.1. Having one strange issue and hoping anybody could help us out.
    We are using OWB 10.2.0.1. Certain error appears during mapping execution LOAD_SR which basically loads service requests from Siebel DB to data warehouse.
    The mapping is using two tables as input (S_SRV_REQ and S_SRV_REQ_X) which are joined by S_SRV_REQ.ROW_ID = S_SRV_REQ_X.PAR_ROW_ID (+) using Joiner operator, because I always need extension table (S_SRV_REQ_X) rows either filled either containing only nulls (when there is no corresponding extension row). Sadly, this does not work, during execution it generates:
    Error:
    ORA-00997: illegal use of LONG datatype
    ORA-06512: at "DWH_ADM.LOAD_SR", line 32
    ORA-06512: at "DWH_ADM.LOAD_SR", line 3507
    ORA-06512: at "DWH_ADM.LOAD_SR", line 4553
    ORA-06512: at "DWH_ADM.LOAD_SR", line 9984
    ORA-06512: at line 1
    Warning:
    ORA-00997: illegal use of LONG datatype
    In summary, these join conditions generate same error as above:
    S_SRV_REQ.ROW_ID = S_SRV_REQ_X.PAR_ROW_ID (+)
    S_SRV_REQ.ROW_ID (+) = S_SRV_REQ_X.PAR_ROW_ID (+)
    S_SRV_REQ.ROW_ID = S_SRV_REQ_X.PAR_ROW_ID
    Strangely, when I use join condition S_SRV_REQ.ROW_ID (+) = S_SRV_REQ_X.PAR_ROW_ID, it works. But then right join is used and some records get rejected by joiner operation (those who do not have corresponding rows in extension table).
    Could someone help me with this issue?
    Any feedback would be greatly appreciated. Thank you for your time reading this!
    Edited by: user8872556 on Sep 28, 2011 2:21 AM
    Edited by: user8872556 on Sep 28, 2011 2:23 AM
    Edited by: user8872556 on Sep 28, 2011 2:23 AM

    We still were not able to solve this issue, would greatly appreciate any effort to help us out.

  • TABLE_FREE_IN_LOOP Error during payroll execution

    hi grus,
                 i used a function module RP_FILL_WAGE_TYPE_TABLE in indirect valuation module for wage types in infotype 15 to read current data of infotype 8. it is working fine for infotype operations but during payroll execution i m getting an error of   TABLE_FREE_IN_LOOP. kindly suggest me how to solve this problem as soon as possible.
      161 * IF PP0015 IS REQUESTED.
      162   IF CALL_BY_EXT = FALSE AND PP0015 IS REQUESTED OR           "N0210677
      163      CALL_BY_EXT = TRUE  AND PP0015_REQUESTED = TRUE.         "N0210677
      164     P0015 = PP0015.
    >>>>>     P0015[] = PP0015[].
      166   ELSE.                                                             "N0210677
      167     CLEAR P0015.                                              "N0210677
      168     REFRESH P0015.                                            "N0210677
      169   ENDIF. "PP0015 IS REQUESTED.

    Hi Waheed,
    Did you check OSS?
    The following notes look promising to me in the sense that they are related to the HR module.  Since I do not have much experience in this module, it is hard for me to judge if they are relevant or not. However I can imagine that a payroll run will perform a lot checks and therefore invokes a lot of other objects.
    [Note 919345 - Function QUOTA: Program termination|https://websmp230.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=919345]
    [Note 962641 - QUOTA function: Program termination II|https://websmp230.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=962641]
    Kind regards,
    Robert

  • Error during report execution ( REP-271468672: )

    Hi,
    Following error is encountered during execution of report on Reports 9i...
    Terminated with error: <br>REP-271468672: Unable to create a temporary file.
    I have checked space and permissions of temporary folder.
    Please help on same
    Regards/-
    Neeraj

    I've got the same error with r12 (12.04) on windows 2003
    I set the environment variables reports_tmp & reports60_tmp (this one is according to book Oracle Applications System Administrator's Guide - Configuration )
    I set the path to d:\temp
    this folder has write permission, I also change the folder's owner to my ap user
    but It doesn't work
    Do you fix the problem yet ?

  • RFBIBL00 - Error during session execution

    Hi,
    My requirement is to do the clearing of documents through execution of RFBIBL00.
    I am doing this by passing transaction FB05 and corresponding field mapping to this standard Program.
    The session gets created successfully.
    However, when  I execute the session (in back ground), I am getting the following error message.
    "Field BSEG-DMBTR. does not exist in the screen SAPMF05A 0304"
    When I am executing the session in Foreground, I am getting the following error message.
    "No batch input data for screen SAPDF05X 3100"
    Please help.
    Swastik

    FORM f_fill_bbkpf .
      PERFORM init_bbkpf IN PROGRAM rfbibli0  USING      bbkpf           IF FOUND.
      MOVE: c_tcode             TO bbkpf-tcode,
            'UMBUCHNG'          TO bbkpf-auglv.
      WRITE:<fs_header>-bldat   TO bbkpf-bldat,
            p_budat             TO bbkpf-budat.
      MOVE: p_blart             TO bbkpf-blart,
            <fs_header>-waers   TO bbkpf-waers,
            <fs_header>-xblnr   TO bbkpf-xblnr,
            <fs_header>-bktxt   TO bbkpf-bktxt,
            <fs_header>-bukrs   TO bbkpf-bukrs.
      TRANSFER bbkpf TO c_filename.
      MOVE bbkpf-waers TO g_waers_d.
    ENDFORM.                    " F_FILL_BBKPF
    FORM f_fill_bbseg .
      PERFORM init_bbseg IN PROGRAM rfbibli0      USING      bbseg    IF FOUND.
      IF  <fs_item>-bschl GE 1
      AND <fs_item>-bschl LE 8.
        MOVE '11' TO bbseg-newbs.
      ELSEIF <fs_item>-bschl EQ 9.
        MOVE '19' TO bbseg-newbs.
      ENDIF.
      MOVE p_kunnd  TO bbseg-newko.
      IF p_option EQ c_opt_a.
        MOVE <fs_item>-umskz TO bbseg-newum.
      ELSE.
        MOVE p_umskz TO bbseg-newum.
      ENDIF.
      WRITE:<fs_item>-dmbtr TO bbseg-dmbtr CURRENCY g_waers_l,
            <fs_item>-wrbtr TO bbseg-wrbtr CURRENCY g_waers_d.
      MOVE: <fs_item>-prctr TO bbseg-prctr,
            <fs_item>-zterm TO bbseg-zterm.
      WRITE <fs_item>-zfbdt TO bbseg-zfbdt.
      MOVE: <fs_item>-valut TO bbseg-valut,
            <fs_item>-zlsch TO bbseg-zlsch,
            <fs_item>-fdtag TO bbseg-fdtag,
            <fs_item>-fdlev TO bbseg-fdlev,
            <fs_item>-zuonr TO bbseg-zuonr,
            <fs_item>-sgtxt TO bbseg-sgtxt.
      TRANSFER bbseg TO c_filename.
    ENDFORM.                    " F_FILL_BBSEG
    Moderator message - Please use code tags around your code
    Edited by: Rob Burbank on Oct 23, 2009 9:36 AM

  • The Manager Requests competitors encountered an error during the execution

    Hi
    Once i try to execute the conucrrent program i got this error , can u plz help what is this error in log file also i did not get any error message.
    How to check where is this error is occured in program.
    Thank's

    Hi
    Now also it is working to day 50 percent programs got errored and remaining 50 percents got completed normal and just now i checkcode also
    in the code it self they worte one insert program to insert the data from requisitin headers table with approved data.in this created by column is selected requisition created by column,my doubut in the error it is showing requisition header_id,i query based on this requisition header id i got created by as value.but it is showing error.
    Thank's

  • Error during the execution of a planning function in BI 7

    Dear All,
    I created an input ready query and took it into a workbook.
    I have to execute a planning function (by a button) which calculates some new data but I get the following error after I clicked on the button message:
        Error when inserting or changing in a sorted table
    And the BW server closes the connection.  
    Any help?
    Thanks in Advance,
    Dezso

    You seem to be having a multi-mapping involved.
    The operation mapping has to produce at least the start and end tag.....even if the entire message is not present
    Ex:
    <SRC>
    <First>
    <Middle>
    <Last>
    </SRC>
    If above is the structure, then it should be ensured that at least <SRC></SRC> is created by your mapping program....however in your case this is not happening....the tags that you see Messages and Message1 are due to the multi-mapping program and your message should be more than this.
    if you say that occurence is 0..1 then what you can do is map this 0..1 node (root) with at least a blank Constant.
    Unless you create a message (even though empty) you will continue to receive the error message.
    Regards,
    Abhishek.

  • Run time error during transcation execution in ECC 6.0

    Dear All,
    Working on ECC 6.0; Activated the Business Function, and  any transaction that is run, we face the Run time error as follows:
    Category : Internal Kernal Error
    Runtime Errors : DDIC_TYPE_INCONSISTENCY

    from OSS Note 1049251 - Activate Enterprise Extensions in the switch framework
    2. Prerequisite for activation
    Unable to deactivate
               Before you activate Enterprise Extensions, note it is not possible to deactivate these extensions. Furthermore, not every Enterprise Extension is compatible with every Industry Extension. If you have activated an industry solution (known as a "Business Function Set") in your system, refer to the notes on how to activate the industry to find out if there are any restrictions regarding specific Enterprise Extensions.

  • JSPM DIR_EPS_ROOT  error during the execution of the JSPM_PROCESS phase

    dear sap experts
    I tried to use JSPM in order to update kernel and support packages.
    unfortunately i got errors..
    "Cannot initialize application data. could not extract value with key DIR_EPS_ROOT from file
    c:/usr/sap/SM4/SYS/profile/SM4_DVEBMGS01_solman40. "
    I linked some screenshots document.
    <a href="http://itedu24.net/solman/5.8 Applying the Latest Kernel and Support Packages.doc">5.8 Applying the Latest Kernel and Support Packages.doc</a>
    as you can see, txn RZ11, i can see the value of DIR_EPS_ROOT.
    *. it's another question.
    I found j2ee/dbdriver value
    it looks like this.
    C:/usr/sap/SM4/SYS/exe/uc/NTI386/mssjdbc/base.jar;~~~bulabula..
    Is it okay if the format of path is "C:/usr/sap/" rather than "C:\usr\sap\"
    thanks.
    david
    Message was edited by: David Kang (.) SAP@Home

    Hi David,
    It seams that you have not run JPSM as <sid>adm.Please try to run it as <sid>adm
    Best Regards
    Nina Petrova
    NW LM SL SDT JS (BG)
    Sap Labs Bulgaria Ltd.
    Error reports: CSS component BC-UPG-OCS-SPJ

  • JVM error during OMBPlus execution

    Hi,
    Has anybody come across the following problem while executing OMBPlus.sh?
    OMBPlus crashes with a JVM error.
    JVMXM004: JVM is performing abort shutdown sequence
    JVMDG217: Dump Handler is Processing a Signal - Please Wait.
    JVMDG303: JVM Requesting Java core file
    JVMDG304: Java core file written to /app/oracle/owb92/owb/bin/admin/javacore1491138.1127942211.txt
    JVMDG215: Dump Handler has Processed Exception Signal 11.
    ./OMBPlus.sh[5]: 1491138 Segmentation fault(coredump)
    OMBPlus was exectuing a deploy script. The database is 9.2.0.5 on AIX 5L and OWB is 9.2.0.4. The script was run successfully in DEV and QA several times, but throws up this error in PRODUCTION.
    Is it something to do with memory allocation specified in OMBPlus.sh?
    We also tried increasing the settings from -> -Xms64M -Xmx256M -Dlimit=256M
    to -> -Xms128M –Xmx512M -Dlimit=450M. But that didn't help.
    Thanks,
    Chethan

    Hi,
    Has anybody come across the following problem while executing OMBPlus.sh?
    OMBPlus crashes with a JVM error.
    JVMXM004: JVM is performing abort shutdown sequence
    JVMDG217: Dump Handler is Processing a Signal - Please Wait.
    JVMDG303: JVM Requesting Java core file
    JVMDG304: Java core file written to /app/oracle/owb92/owb/bin/admin/javacore1491138.1127942211.txt
    JVMDG215: Dump Handler has Processed Exception Signal 11.
    ./OMBPlus.sh[5]: 1491138 Segmentation fault(coredump)
    OMBPlus was exectuing a deploy script. The database is 9.2.0.5 on AIX 5L and OWB is 9.2.0.4. The script was run successfully in DEV and QA several times, but throws up this error in PRODUCTION.
    Is it something to do with memory allocation specified in OMBPlus.sh?
    We also tried increasing the settings from -> -Xms64M -Xmx256M -Dlimit=256M
    to -> -Xms128M –Xmx512M -Dlimit=450M. But that didn't help.
    Thanks,
    Chethan

  • Conversion Error During the Execution of SQL Server Job

    Hello,
    I have a production SQL server and a test SQL server that mimics the production server. On the production server all the jobs which do a variety of things using Transact SQL and SSIS packages work flawlessly. However one of the jobs on the test server fails
    at a step and issues the following error:
    executed as user: DomainName\administrator. Conversion failed when converting datetime from character string. [SQLSTATE 22007] (Error 241). 
    The step failed.
    Here is the code contained in the steps Command window (same exact code that works fine on the production server):
    declare @Now datetime
    declare @DB_Date datetime
    declare @Trip_Err datetime
    select @Now = convert(varchar,getdate(),101)
    select @DB_Date = (select convert(varchar,max(ProcessDate),101) from I_Loans)
    if @now <> @DB_Date
    begin
    truncate table I_Loans
    end
    else
    select @Trip_err = 'error'
    I don’t see anything preventing this code from executing. However, I am not a programmer. My SQL Server version is below:
    Microsoft SQL Server 2005 - 9.00.5324.00 (Intel X86)  
    Aug 24 2012 14:24:46   Copyright (c) 1988-2005 Microsoft Corporation 
    Standard Edition on Windows NT 6.0 (Build 6002: Service Pack 2)
    Any advice or solutions will be greatly appreciated. Please let me know if I need to provide more information.
    Thank you,
    Dave
    David Young

    Could you run this query from management studio in test?
    select convert(varchar,max(ProcessDate),101) from I_Loans
    It could be something to do with the ProcessDate value which had issues to convert
    Regards, Ashwin Menon My Blog - http:\\sqllearnings.com

  • Error during Workflow execution

    Hi All,
    We have got new Sourcing Server7.0 and uploded Master Data. After that I have created one Project and attached workflow. I'm trying to achieve 1 step approval in the project(3 phase:- Draft,Approval,Approved).
    When I'm changing the phase from Draft to Approval, document got locked but not going to approver user for approval. In the XPDL prescript below logic is present:-
    import com.frictionless.api.common.exception.*;
    import com.frictionless.api.common.log.Logger;
    import com.frictionless.api.common.platform.*;
    import com.frictionless.api.common.types.*;
    import com.frictionless.api.doc.collaboration.*;
    import com.frictionless.api.doccommon.masterdata.*;
    import com.frictionless.api.ibean.*;
    import com.frictionless.api.util.*;
    import com.frictionless.api.workflow.*;
    import com.frictionless.api.projects.*;
    import com.frictionless.api.common.log.*;
    import com.frictionless.api.ibean.*;
    import com.frictionless.api.usermgmt.masterdata.*;
    import com.frictionless.api.doc.collaboration.*;
    import com.frictionless.api.doccommon.doc.contract.*;
    //  Add the project approver from the collaborator collection
    // Get the default collection "COLLABORATORS"
    collaboratorsCollection = doc.getCollectionMetadata("COLLABORATORS").get(doc);
    // Check if collaborators collection's size is greater than zero.
    if (collaboratorsCollection.size() > 0)
       // Iterate over the collection.
      for (int i = collaboratorsCollection.size() - 1; i >= 0; --i)
            // Get collection member
            collaboratorsCollection_member = collaboratorsCollection.get(i);
            // Check if member has value.
           if (hasValue(collaboratorsCollection_member))
                // Get the collaboration role of the collection member.
               collaboratorRole = collaboratorsCollection_member.getCollaboratorRole().getDisplayName();
                // Get approver of Role "Buyer contractor hiring".
               if(collaboratorRole.equals("Buyer contractor hiring"))
                    principal = collaboratorsCollection_member.getPrincipal();
    // Create a logger for messaging
    logMsg = Logger.createLogMessage(session);
    if (hasValue(principal))
    // Add the user account as the approver
        addApprover(principal);
        // log details
        logMsg.setLogMessage("Added user: " + principal.getDisplayName() + " as approver");
        Logger.info(logMsg);
    I'm getting below error:-
    Sourced file: inline evaluation of: ``import com.frictionless.api.common.exception.; import com.frictionless.api.com . . . '' : Attempt to resolve method: createLogMessage() on undefined variable or class name: Logger : at Line: 43 : in file: inline evaluation of: ``import com.frictionless.api.common.exception.; import com.frictionless.api.com . . . '' : Logger .createLogMessage ( session )
    at bsh.UtilEvalError.toEvalError(Unknown Source)
    at bsh.UtilEvalError.toEvalError(Unknown Source)
    at bsh.BSHMethodInvocation.eval(Unknown Source)
    at bsh.BSHPrimaryExpression.eval(Unknown Source)
    at bsh.BSHPrimaryExpression.eval(Unknown Source)
    at bsh.BSHAssignment.eval(Unknown Source)
    at bsh.Interpreter.eval(Unknown Source)
    at bsh.Interpreter.eval(Unknown Source)
    at bsh.Interpreter.eval(Unknown Source)
    at com.sap.odp.comp.scripting.ScriptEnvironment.execute(ScriptEnvironment.java:144)
    at com.sap.odp.workflow.engine.handlers.PhaseChangeInstantiationRequestHandler.
    Please let me know If i need to place any jar file in Server coz error is coming for few import files.
    Thanks!!!
    Edited by: Deepak Arora on Jul 21, 2011 11:27 AM

    Issue solved...i have replaced the import line with the api info of Sourcing version-7.

Maybe you are looking for

  • Tables of Vendor Balances

    Hi All, Please let me know the tables of vendor balances. I wanna know the tables from which i could know the balance payments of vendor against PO. Just i wanna know the vendor payment status. Regards Arun

  • HT3939 i am trying to find the make/manufacture number on my phone and model number.

    i am trying to find my device manufacture/make on the back of the box and model number, can someone please help

  • Re-Write the Node-DOM code with SQL-XML funtions

    Hi Friends, Could you please help in re-writing the below code using SQl-XML functions DECLARE l_domdoc dbms_xmldom.DOMDocument; l_xmltype XMLTYPE; l_root_node dbms_xmldom.DOMNode; l_departments_node dbms_xmldom.DOMNode; l_dept_element dbms_xmldom.DO

  • Is there a way to 'lock' a folder of apps?

    I have an autistic son and I would like to have a folder that would need a passcode to get into it.  Is there any way to do that or something like it??  Thanks!!

  • Using wrong email as your apple id

    i used wrong email as my apple id and game center acc i cant sign in to that email but i need my game center acc badly cuz im playing clash for a year is it possible to change apple id without accessing e mail and also keep Game Center information?