Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 54197
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T17:10:56+00:00 2026-05-10T17:10:56+00:00

This is what I currently have: CREATE OR REPLACE TRIGGER MYTRIGGER AFTER INSERT ON

  • 0

This is what I currently have:

CREATE OR REPLACE TRIGGER MYTRIGGER AFTER INSERT ON SOMETABLE FOR EACH ROW      DECLARE  v_emplid varchar2(10);      BEGIN  SELECT   personnum into v_emplid  FROM PERSON  WHERE PERSONID = :new.EMPLOYEEID;  dbms_output.put(v_emplid);  /* INSERT INTO SOMEOTHERTABLE USING v_emplid and some of the other values from the trigger table*/  END MYTRIGGER;     

DBA_ERRORS has this error: PL/SQL: ORA-00923: FROM keyword not found where expected

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-10T17:10:57+00:00Added an answer on May 10, 2026 at 5:10 pm

    1) There must be something else to your example because that sure seems to work for me

    SQL> create table someTable( employeeid number );  Table created.  SQL> create table person( personid number, personnum varchar2(10) );  Table created.  SQL> ed Wrote file afiedt.buf    1  CREATE OR REPLACE TRIGGER MYTRIGGER   2    AFTER INSERT ON SOMETABLE   3    FOR EACH ROW   4  DECLARE   5   v_emplid varchar2(10);   6  BEGIN   7   SELECT personnum   8     into v_emplid   9     FROM PERSON  10    WHERE PERSONID = :new.EMPLOYEEID;  11    dbms_output.put(v_emplid);  12    /* INSERT INTO SOMEOTHERTABLE USING v_emplid and some of the other values  from the trigger table*/  13* END MYTRIGGER;  14  /  Trigger created.  SQL> insert into person values( 1, '123' );  1 row created.  SQL> insert into sometable values( 1 );  1 row created. 

    2) You probably want to declare V_EMPLID as being of type Person.PersonNum%TYPE so that you can be certain that the data type is correct and so that if the data type of the table changes you won’t need to change your code.

    3) I assume that you know that your trigger cannot query or update the table on which the trigger is defined (so no queries or inserts into someTable).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 57k
  • Answers 57k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • added an answer You never set @abc in your abc= method. It should… May 11, 2026 at 8:22 am
  • added an answer That's totally possible with the BETWEEN-statement (Since MySQL 4.0): mysql_query('SELECT… May 11, 2026 at 8:22 am
  • added an answer As far as I know there's no jQuery way to… May 11, 2026 at 8:22 am

Top Members

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.