NOT ALLOWING DELETION TRIGGER!!

Dear all, I am having a Master and a Detail table of Customers.. All I would like to do is to create a trigger that should not allow deletion of a Customer in the Master table while there is a record in the Detail table concerning this particular customer..
Any ideas?

Hi Kiriakos Kiriakatos
I would advice you to solve this matter with a foreign key, see example below:
[[email protected]] CREATE TABLE MASTER(K NUMBER PRIMARY KEY);
Table created.
[[email protected]] CREATE TABLE DETAIL(K NUMBER);
Table created.
[[email protected]] ALTER TABLE DETAIL ADD CONSTRAINT FK_MASTER FOREIGN KEY (K) REFERENCES MASTER(K);
Table altered.
[[email protected]] INSERT INTO MASTER VALUES (1);
1 row created.
[[email protected]] INSERT INTO DETAIL VALUES (1);
1 row created.
[[email protected]] DELETE FROM MASTER;
DELETE FROM MASTER
ERROR at line 1:
ORA-02292: integrity constraint (SCOTT.FK_MASTER) violated - child record found
Hope thsio helps!
Remi http://askremi.ora-0000.com

Similar Messages

  • Is it possible to not allow delete of activity depending on conditions ?

    Hi,
    I wonder to know if it is possible to cancel a delete event of activity record when some conditions are satisfied.
    What I want to do is :
    if the field "sub Type of activity" = "RT", then when clicking on delete button, an error message is displayed : You are not allowed to delete this activity. Otherwise, it is possible de delete all my activities.
    Best regards,

    Hi,
    This behavior is not available for delete trigger and object activity. What you can try is to override delete button with js but I don't think it is feasable because of the effort. If you try it be sure you do it for all pages where activities are used and deleteable via button or link.
    Best Regards
    SL

  • Commit not allowed in Trigger  then how to store the values in table

    Hi,
    Database trigger not allowed to COMMIT in it (directly) or in procedure which is calling from the Trigger. it gives error.
    so my question is:-
    1)How Database internally store the INSERT AND UPDATE value in table which is written in procedure without COMMIT?
    2) Is it necessary to write COMMIT in procedure using PRAGAMA AUTONOMOUS TRANSACTION to store inserted or updated value in table?
    Thanks in advance.

    Hi,
    A trigger is designed to be a part of a transaction, not it's end.
    It is like following these steps (not really accurate, but should give an idea):
    1. programA issues INSERT statement on tableA
    2. 'control' goes over to the database
    3. constraint checks happen
    4. the associated triggers on tableA do their work (e.g. fetching a sequence value for a primary key)
    5. 'control' goes back to programA
    6. programA decides if a commit (no error occurred) or a rollback (error case) has to be issued.
    Did this help? Probably not, I'm not happy with what I wrote, but anyway... :)

  • Entourage will not allow Delete file messages to be opened and deleted

    I have allowed my delete to get to large. Now Entourage won't allow Delete file to be opened; when attempted, it says, "file cannot be opened, not enough memory". How can I open to Delete file to delete messages?

    You should be able to check by opening the Attachments panel on the left (paperclip icon) and looking at the file extension.

  • T-Bird FREEZES sporadically and will not allow "Delete" to work.

    Approx. 4 days ago, something happened to T-Bird. I can only assume (I hate that word) that a newer version was uploaded to my computer. I lost over 1800 email addresses. BIG TIME BUMMER!!!
    I was able to recover most, but had to input manually, another BUMMER!
    Now, every so often, (three to five email deletes) I have to kill the program and restart it due to it freezing and will not allow me to delete or move on to the next email. Smaller bummer.
    Any ideas?

    What is your anti-virus software?

  • TB in Kubuntu will not allow deleting messages but it works fine Windows 7

    Dual boot Windows 7 Home Premium and Kubuntu 13.10 64 bit. Hdwe i7-3770k, Radon 7950, 16GB memory and Asus P8Z77-V Deluxe MB Hwde installed for about 1 year with no problems. Formatted HD and did clean install of 13.10 64 bit. Previous Ububtu 12.04 64 bit worked fine. Can not delete any messages in TB. Click Delete and the color of the message changes but does not delete in TB. Checked carrier email server and messages I tried to delete in TB were still there. Can delete messages on carrier server and in TB in windows.
    Any ideas on how to fix or reconfigure?

    Try to rebuild the index file of the troubled folder.
    Right-click the folder - Properties - Repair Folder

  • XmlIndex on table not allowing delete or update

    Hi
    Oracle and slqplus versions:
    Oracle Database 11g Release 11.2.0.2.0 - 64bit Production
    PL/SQL Release 11.2.0.2.0 - Production
    CORE 11.2.0.2.0 Production
    TNS for Solaris: Version 11.2.0.2.0 - Production
    NLSRTL Version 11.2.0.2.0 - Production
    I'm having a problem deleting and updating xml content in a table. The following code shows the problem I'm having.
    Create a new test table and add an index:
    create table test of XMLType xmltype store as binary XML;
    CREATE INDEX test_xmlindex_ix ON test (OBJECT_VALUE) INDEXTYPE IS XDB.XMLIndex;add some xml content:
    insert into test values (xmltype('<product_details id="10"></product_details>'));update the content:
    UPDATE test SET OBJECT_VALUE = appendChildXML(OBJECT_VALUE, '/product_details', '<product id="20"><type></type><code></code></product>') 
    WHERE XMLEXISTS('/product_details[@id=10]' PASSING OBJECT_VALUE);Select the content to check all is as should be:
    select * from test;
    <product_details id="10">
    <product id="20">
    <type/>
    <code/>
    </product>
    </product_details>Now delete the type node:
    UPDATE test SET OBJECT_VALUE = deleteXML(OBJECT_VALUE, '/product_details/product[@id=20]/type') 
    WHERE XMLEXISTS('/product_details[@id=10]' PASSING OBJECT_VALUE);
    1 row updated.Select the content to check all is as should be:
    select * from test;
    <product_details id="10">
    <product id="20">
    *<type/>*
    <code/>
    </product>
    </product_details>Type node is still in the xml.
    Now drop the XmlIndex that is on the table:
    drop index test_xmlindex_ix;
    Index dropped.Now try the delete again:
    UPDATE test SET OBJECT_VALUE = deleteXML(OBJECT_VALUE, '/product_details/product[@id=20]/type') 
    WHERE XMLEXISTS('/product_details[@id=10]' PASSING OBJECT_VALUE);
    1 row updated.
    select * from test;The type node has been deleted.
    <product_details id="10">
    <product id="20">
    <code/>
    </product>
    </product_details>Can anyone help with this problem as I need to have XmlIndexes on my tables and be able to update and delete content?
    Cheers
    Bruce.

    Hi,
    I don't reproduce the problem.
    I'm on XE, but 11.2.0.2 nonetheless :
    SQL*Plus: Release 11.2.0.2.0 Production on Mer. Nov. 2 11:31:58 2011
    Copyright (c) 1982, 2010, Oracle.  All rights reserved.
    Connected to:
    Oracle Database 11g Express Edition Release 11.2.0.2.0 - Production
    SQL> create table test of XMLType xmltype store as binary XML;
    Table created.
    SQL> CREATE INDEX test_xmlindex_ix ON test (OBJECT_VALUE) INDEXTYPE IS XDB.XMLIndex;
    Index created.
    SQL> insert into test values (xmltype('<product_details id="10"></product_details>'));
    1 row created.
    SQL> UPDATE test
      2  SET OBJECT_VALUE = appendChildXML(OBJECT_VALUE, '/product_details', '<product id="20"><type></type><code></code></product>')
      3  WHERE XMLEXISTS('/product_details[@id=10]' PASSING OBJECT_VALUE);
    1 row updated.
    SQL> select * from test;
    SYS_NC_ROWINFO$
    <product_details id="10">
      <product id="20">
        <type/>
        <code/>
      </product>
    </product_details>
    SQL> UPDATE test
      2  SET OBJECT_VALUE = deleteXML(OBJECT_VALUE, '/product_details/product[@id=20]/type')
      3  WHERE XMLEXISTS('/product_details[@id=10]' PASSING OBJECT_VALUE);
    1 row updated.
    SQL> select * from test;
    SYS_NC_ROWINFO$
    <product_details id="10">
      <product id="20">
        <code/>
      </product>
    </product_details>Maybe it'll make no difference but you should use an XMLType instance in appendChildXML :
    appendChildXML(
      OBJECT_VALUE
    , '/product_details'
    , xmltype('<product id="20"><type></type><code></code></product>')
    )Does the NO_XML_QUERY_REWRITE hint solve the problem?
    UPDATE /*+ NO_XML_QUERY_REWRITE */ test
    SET OBJECT_VALUE = ...

  • Windows 10 Does Not Allow Deletion Of PDF If Open In Preview Pane

    For the most part, the upgrade Win 7 Pro to Win 10 went smoothly. Aside from it nuking all my Chrome Extensions (good one M$), I cannot delete PDF files from Explore if I have the Preview Pane open.  Other file types don't seem to have the issue. I am running Adobe Reader XI ver 10.0.12.
    This topic first appeared in the Spiceworks Community

    For the most part, the upgrade Win 7 Pro to Win 10 went smoothly. Aside from it nuking all my Chrome Extensions (good one M$), I cannot delete PDF files from Explore if I have the Preview Pane open.  Other file types don't seem to have the issue. I am running Adobe Reader XI ver 10.0.12.
    This topic first appeared in the Spiceworks Community

  • Trigger call procedure - Commit not allow

    Hi all,</p>
    <p style="margin-top: 0; margin-bottom: 0">I need help.</p>
    <p style="margin-top: 0; margin-bottom: 0"> </p>
    <p style="margin-top: 0; margin-bottom: 0">I have One table name</font><font FACE="Courier" SIZE="2" COLOR="#0000ff">
    <font FACE="Courier" SIZE="2" COLOR="#808000">EVENTS. </font></font>
    <font FACE="Courier" SIZE="2">I have create two trigger on that table. </p>
    <p style="margin-top: 0; margin-bottom: 0">Trigger 1 is to add a running number
    to events table into "id" column.</p>
    <p style="margin-top: 0; margin-bottom: 0">Trigger 2 is to pass that running
    number in to other procedure after the new row in events complete fill in
    database.</p>
    <p style="margin-top: 0; margin-bottom: 0"> </p>
    <p style="margin-top: 0; margin-bottom: 0">The error is : Commit not allow in
    trigger.</p>
    <p style="margin-top: 0; margin-bottom: 0">The commit is only on my procedure.
    How i want to make it run? Help me.</p>
    </font><font FACE="Courier" SIZE="2" COLOR="#0000ff">
    <p style="margin-top: 0; margin-bottom: 0"> </p>
    <p style="margin-top: 0; margin-bottom: 0"> </p>
    <p style="margin-top: 0; margin-bottom: 0"> </p>
    </font><font FACE="Courier" SIZE="2" color="#FF0000">
    <p style="margin-top: 0; margin-bottom: 0"><b>TRIGGER 1</b></p>
    </font><font FACE="Courier" SIZE="2" COLOR="#0000ff">
    <p style="margin-top: 0; margin-bottom: 0">CREATE<font FACE="Courier" SIZE="2">
    </font>OR<font FACE="Courier" SIZE="2"> </font>REPLACE<font FACE="Courier" SIZE="2">
    </font>TRIGGER<font FACE="Courier" SIZE="2"> AUTONUM_EVENTS_ID1</p>
    </font>
    <p style="margin-top: 0; margin-bottom: 0">BEFORE<font FACE="Courier" SIZE="2">
    </font>INSERT</p>
    <p style="margin-top: 0; margin-bottom: 0">ON<font FACE="Courier" SIZE="2">
    </font><font FACE="Courier" SIZE="2" COLOR="#808000">EVENTS</font></p>
    <p style="margin-top: 0; margin-bottom: 0">REFERENCING<font FACE="Courier" SIZE="2">
    </font>NEW<font FACE="Courier" SIZE="2"> </font>AS<font FACE="Courier" SIZE="2">
    </font>NEW<font FACE="Courier" SIZE="2"> </font>OLD<font FACE="Courier" SIZE="2">
    </font>AS<font FACE="Courier" SIZE="2"> </font>OLD</p>
    <p style="margin-top: 0; margin-bottom: 0">FOR<font FACE="Courier" SIZE="2">
    </font>EACH<font FACE="Courier" SIZE="2"> </font>ROW</p>
    <p style="margin-top: 0; margin-bottom: 0">begin</p>
    <p style="margin-top: 0; margin-bottom: 0">    select<font FACE="Courier" SIZE="2">
    EVENTS_ID_SEQ</font>.nextval<font FACE="Courier" SIZE="2"> </font>into<font FACE="Courier" SIZE="2">
    </font>:new.ID<font FACE="Courier" SIZE="2"> </font>from<font FACE="Courier" SIZE="2">
    dual</font>;</p>
    <p style="margin-top: 0; margin-bottom: 0">end;</p>
    <p style="margin-top: 0; margin-bottom: 0">/</p>
    <p style="margin-top: 0; margin-bottom: 0"> </p>
    <p style="margin-top: 0; margin-bottom: 0">
    <font FACE="Courier" SIZE="2" color="#FF0000"><b>TRIGGER 2</b></font></p>
    <p style="margin-top: 0; margin-bottom: 0">CREATE</font><font FACE="Courier" SIZE="2">
    </font><font FACE="Courier" SIZE="2" COLOR="#0000ff">OR</font><font FACE="Courier" SIZE="2">
    </font><font FACE="Courier" SIZE="2" COLOR="#0000ff">REPLACE</font><font FACE="Courier" SIZE="2">
    </font><font FACE="Courier" SIZE="2" COLOR="#0000ff">TRIGGER</font><font FACE="Courier" SIZE="2">
    PROCESSINFO</p>
    </font><font FACE="Courier" SIZE="2" COLOR="#0000ff">
    <p style="margin-top: 0; margin-bottom: 0">AFTER</font><font FACE="Courier" SIZE="2">
    </font><font FACE="Courier" SIZE="2" COLOR="#0000ff">INSERT</p>
    <p style="margin-top: 0; margin-bottom: 0">ON</font><font FACE="Courier" SIZE="2">
    </font><font FACE="Courier" SIZE="2" COLOR="#808000">EVENTS</font></p>
    <font FACE="Courier" SIZE="2" COLOR="#0000ff">
    <p style="margin-top: 0; margin-bottom: 0">REFERENCING</font><font FACE="Courier" SIZE="2">
    </font><font FACE="Courier" SIZE="2" COLOR="#0000ff">NEW</font><font FACE="Courier" SIZE="2">
    </font><font FACE="Courier" SIZE="2" COLOR="#0000ff">AS</font><font FACE="Courier" SIZE="2">
    </font><font FACE="Courier" SIZE="2" COLOR="#0000ff">NEW</font><font FACE="Courier" SIZE="2">
    </font><font FACE="Courier" SIZE="2" COLOR="#0000ff">OLD</font><font FACE="Courier" SIZE="2">
    </font><font FACE="Courier" SIZE="2" COLOR="#0000ff">AS</font><font FACE="Courier" SIZE="2">
    </font><font FACE="Courier" SIZE="2" COLOR="#0000ff">OLD</p>
    <p style="margin-top: 0; margin-bottom: 0">FOR</font><font FACE="Courier" SIZE="2">
    </font><font FACE="Courier" SIZE="2" COLOR="#0000ff">EACH</font><font FACE="Courier" SIZE="2">
    </font><font FACE="Courier" SIZE="2" COLOR="#0000ff">ROW</p>
    <p style="margin-top: 0; margin-bottom: 0">DECLARE</p>
    </font><font FACE="Courier" SIZE="2" COLOR="#0000ff">
    <p style="margin-top: 0; margin-bottom: 0">BEGIN</p>
    </font><font FACE="Courier" SIZE="2">
    <p style="margin-top: 0; margin-bottom: 0"></font>
    <font FACE="Courier" SIZE="2" COLOR="#808000">    UpdateInfo</font><font FACE="Courier" SIZE="2" COLOR="#0000ff">(:new.ID);</p>
    </font><font FACE="Courier" SIZE="2">
    <p style="margin-top: 0; margin-bottom: 0"></font>
    <font FACE="Courier" SIZE="2" COLOR="#0000ff">EXCEPTION</p>
    </font><font FACE="Courier" SIZE="2">
    <p style="margin-top: 0; margin-bottom: 0"></font>
    <font FACE="Courier" SIZE="2" COLOR="#0000ff">WHEN</font><font FACE="Courier" SIZE="2">
    </font><font FACE="Courier" SIZE="2" COLOR="#ff0000">OTHERS</font><font FACE="Courier" SIZE="2">
    </font><font FACE="Courier" SIZE="2" COLOR="#0000ff">THEN</p>
    </font><font FACE="Courier" SIZE="2">
    <p style="margin-top: 0; margin-bottom: 0"></font>
    <font FACE="Courier" SIZE="2" COLOR="#008000"><i>-- Consider logging the error
    and then re-raise</p>
    </i></font><font FACE="Courier" SIZE="2">
    <p style="margin-top: 0; margin-bottom: 0"></font>
    <font FACE="Courier" SIZE="2" COLOR="#0000ff">RAISE;</p>
    <p style="margin-top: 0; margin-bottom: 0">END</font><font FACE="Courier" SIZE="2">
    PROCESSINFO</font><font FACE="Courier" SIZE="2" COLOR="#0000ff">;</p>
    <p style="margin-top: 0; margin-bottom: 0">/</p>
    </font>

    Because of the following :
    Restrictions on Trigger Implementation The implementation of a trigger is subject to the following restrictions:
          The PL/SQL block of a trigger cannot contain transaction control SQL statements (COMMIT, ROLLBACK, SAVEPOINT, and SET CONSTRAINT) if the block is executed within the same transaction.If you really want to do a commit then search for autonomous transaction.
    Hope that helps
    Regards
    Raj

  • Deletion without archiving is not allowed in the production client

    Hi Gurus!
    I have a new problem with regards deleting products in the Production system in CRM. I can't seem to delete the product in Production Box using this report(COM_PRODUCT_DELETE_SINGLE). It gives me this error: 'Deletion without archiving is not allowed in the production client' I'm doing this to solve my issue with regards some of the products not having any Sales and Distribution Data. The steps i did below worked in QA box.
    These are the steps i did in the QA box to delete the product:
    1) I've deleted the products that has no sales data using the report COM_PRODUCT_DELETE_SINGLE. I went to COMMPR01 to tag the said products with a status 'To Archive' then saved it before I triggered this report.
    2) I've registered it first in the table COMC_PR_TOOL_REG and filling up the necessary parameters
    3) After Deleting the said products in CRM, I logged into R/3 to access the material (MM02). I just changed the sales text and saved it to trigger the replication in CRM.
    When I checked the product in CRM, it worked. The Sales and Distribution Data is already shown.
    Now I have a new problem with regards this procedure. I can't seem to delete the product in Production Box using this report. It gives me this error: 'Deletion without archiving is not allowed in the production client'
    I have already followed the same procedure as to what I did in the QA box but for some reason it didn't work in the Production Box.
    Could anyone please help me with this. Thanks!
    Thanks & Regards
    Nathan

    I was able to solve the problem.
    In Report COM_PRODUCT_DELETE_SINGLE,there is a special check in order for the productive system detection.
    The logic in this program has a perform check_authority which will automatically produce the error and prevents you from deleting a product in the production system.
    Solution:
    I copied the program COM_PRODUCT_DELETE_SINGLE to new one ZCOM_PRODUCT_DELETE_SINGLE then I placed a comment on the PERFORM check_authority.

  • How do you delete songs from Itunes? I have many that show up as many as 7 times and itunes will not allow me to remove them.

    How do you delete songs from Itunes? I have many that show up as many as 7 times and itunes will not allow me to remove them.

    I have tried to Hilight them and hit Control Delete nothing happens. I tried to just Delete one, but when you hit delete nothing happens.

  • I received an Iphone 5 as a gift two days ago. The first thing I did was set up ICloud for photos. Itunes would not allow me to add songs to my new phone without restoring it, yet when I did this, it deleted all photos. And I cannot find them anywhere.

    I received an Iphone 5 as a gift two days ago. The first thing I did was set up ICloud for photos. Itunes would not allow me to add songs to my new phone without restoring it, yet when I did this, it deleted all 129 photos of my graduation and friends from the past two days. And I cannot find them anywhere, photo stream, ICloud, nothing. Where can I get back my memories?

    Were the photos taken by your new iPhone?  If so, did you not import them off your phone to your computer (as you would any other digital camera) before the restore?  If not, restoring wiped the data off the phone and your pictures are gone.
    Sounds like a good time to (re)read the User Guide.

  • System should not allow to delete PO line Item after GR/IR

    Hi,
    I am working on a SAP Retail Implementation project.
    Currently the system is allowing us to delete the PO line items after doing GR or IR against that PO line item. But the clients requirement is that the system should not allow to delete PO line item after doing GR/IR.
    We are using Account Assignment Category-N, Item Category-S.
    Please let me know if you have the solution for this requirement.
    Thanks in advance
    Thanks & Regards,
    Suresh

    Hi,
    Standard SAP will not allowed the PO to be deleted once it was GR done. The controlled is on the attributes of message to set as "E"
    Message no. 06115
    But if invoiced takes place, the is the point that PO can be deleted.
    You have to do have a Enhancement using MM06E005, insert you logic here to check PO history tables like EKBE, then check if invoice " Q" (BEWTP) exist, the PO cannot be deleted once the user delete the PO line and SAVE it. Ask you developer to help you on the following coding.
    Use MM06E005 and EXIT_SAPMM06E_012
    IF SY-TCODE = 'ME22N'.
    IF sy-ucomm = 'MESAVE' OR SY-UCOMM = 'YES'..
    LOOP AT TEKPO.
    IF TEKPO-LOEKZ = 'L'.
    SELECT SINGLE BELNR FROM EKBE INTO BELNR1 WHERE EBELN = TEKPO-EBELN AND EBELP = TEKPO-EBELP AND BEWTP = 'E'.
    IF SY-SUBRC = 0.
    SELECT SINGLE BELNR FROM EKBE INTO BELNR2 WHERE EBELN = TEKPO-EBELN AND EBELP = TEKPO-EBELP AND BEWTP = 'Q'.
    IF SY-SUBRC = 0.
    Regards,

  • My IPad 6.1.3 is not allowing me to upgrade to version 7.0.2 ( not that I want to after reading all the horror stories).  My memory is 23.3gb available and ap is 3.3gb and....twice I've deleted pics from album and they are still there !

    My IPad 6.1.3 is not allowing me to upgrade to 7.0.2 (not that I want to after the horror stories) but I would like your advice on what to do. It's not memory because I have 23.3gb available. Also, my delete button in photos does not appear to be working.  I've deleted several pics twice and lo and behold, still there. My question is should I even upgrade to 7.0.2, what happens if I do not ?  And how do I get that delete button to delete ?  When first purchased, worked fine. Now....problems. Also, don't like the idea of having to pay for their support such as one time support question for $19.99 ?  Really ? Don't they all make enough $$ off the users of their products ? Okay, that's me last question.  Hope you can help me !  Thank you !

    My IPad 6.1.3 is not allowing me to upgrade to 7.0.2 (not that I want to after the horror stories) but I would like your advice on what to do. It's not memory because I have 23.3gb available. Also, my delete button in photos does not appear to be working.  I've deleted several pics twice and lo and behold, still there. My question is should I even upgrade to 7.0.2, what happens if I do not ?  And how do I get that delete button to delete ?  When first purchased, worked fine. Now....problems. Also, don't like the idea of having to pay for their support such as one time support question for $19.99 ?  Really ? Don't they all make enough $$ off the users of their products ? Okay, that's me last question.  Hope you can help me !  Thank you !

  • When I am NOT private browsing Firefox will not allow me to delete or change the website address in the location bar. My only remedy is to open a new window and search in google then click the link to that site through google. How can I resolve this?

    Question
    When I am NOT private browsing Firefox will not allow me to delete or change the website address in the location bar. My only remedy is to open a new window and search in google then click the link to that site through google. When I swap to private browsing firefox allows me to anter the website address directly into the location bar - but this is a slow [prcess to swap back and forth - also by dint of using private browsing I loose my website information.

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

Maybe you are looking for

  • Error message when reinstall numbers '09 from apps store

    Asking for a client. I printed the error message which came from the system when trying to open. Client had deleted his previous version of numbers '09 from launchpad instead of his '08 version. Now reinstalled. upon opening numbers, the program just

  • Rank function in sql

    Hi All, May I know the options oracle provides to know the first non null value in a group Thanks in advance

  • Clean Reinstall then Quad won't complete its Boot-Up

    First I had problems with the Mac not recognising my Sony Video Camera. I'm familiar with the Quicktime 7 issue, so I did all the QuickTime receipts/QT Fresh Install stuff. Still recognition of the camera was erratic and then seemed to be getting wor

  • Snap-In failed to initialize error in SAP NW7 ABAP trail version.,

    i am getting the  "Snap-In failed to initialize "error in SAP NW7 ABAP trail version.. What could be the issue and the probable solution??

  • Lag time when I play guitar

    Last night GB11 worked fine when I plugged my guitar in. Tonight, there is a 1-5 second delay between the time I hit the note and when I hear it through the computer. Any ideas?