Sign Up

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

Have an account? Sign In
Continue with Google
or use


Have an account? Sign In Now

Sign In

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

Sign Up Here
Continue with Google
or use

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.

Continue with Google
or use

Forgot Password?

Need An Account, Sign Up Here

You must login to ask a question.

Continue with Google
or use

Forgot Password?

Need An Account, Sign Up Here

Sorry, you do not have permission to add post.

Continue with Google
or use

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.

Oraask Logo Oraask Logo
Sign InSign Up

Oraask

  • Write
    • Add A New Post
    • Ask A Question

Oraask Navigation

Search
Ask A Question

Mobile menu

Close
Ask A Question
  • Categories
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Dev Tools
    • Online Compiler
    • Base64 Converter
    • Oraask XML Formatter
    • Oraask JSON Formatter
  • Wiki
    • SQL Tutorials
    • Java Tutorials
    • Python Tutorials
    • JavaScript Tutorials

Gomaa Elmokhtar

Explorer
Ask Gomaa Elmokhtar
112 Visits
0 Followers
0 Questions
Home/ Gomaa Elmokhtar/Followers Answers
  • About
  • Questions
  • Answers
  • Best Answers
  • Posts
  • Polls
  • Asked Questions
  • Followed
  • Favorites
  • Comments
  • Followers Questions
  • Followers Answers
  • Followers Posts
  • Followers Comments
  1. Asked: July 30, 2017In: Oracle Applications DBA

    How to query Gather schema statistic For Last week NonApps schemas in EBS R12?

    Mmorsy
    Mmorsy Junior mahmoudmorsymm1985@gmail.com
    Added an answer on July 31, 2017 at 1:36 pm

    Hello , Check the below Query: [code] SELECT * FROM apps.fnd_concurrent_programs_vl p, apps.fnd_concurrent_requests r WHERE r.concurrent_program_id = p.concurrent_program_id AND r.program_application_id = p.application_id AND p.user_concurrent_program_name IN ('Gather Statistics for NonApps Schema')Read more

    Hello ,

    Check the below Query:

    [code]
    SELECT *
    FROM apps.fnd_concurrent_programs_vl p, apps.fnd_concurrent_requests r
    WHERE r.concurrent_program_id = p.concurrent_program_id
    AND r.program_application_id = p.application_id
    AND p.user_concurrent_program_name IN (‘Gather Statistics for NonApps
    Schema’)
    AND ( r.phase_code = ‘C’
    AND r.status_code = ‘C’
    AND r.actual_start_date >= SYSDATE)
    [/code]

    Regards

    Mahmoud Morsy

    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  2. Asked: July 30, 2017In: Oracle Applications DBA

    How to query Gather schema statistic For Last week For Apps schema in EBS R12?

    Mmorsy
    Mmorsy Junior mahmoudmorsymm1985@gmail.com
    Added an answer on July 31, 2017 at 1:34 pm

    Hi, Try the below Query: [code] SELECT * FROM apps.fnd_concurrent_programs_vl p, apps.fnd_concurrent_requests r WHERE r.concurrent_program_id = p.concurrent_program_id AND r.program_application_id = p.application_id AND p.user_concurrent_program_name IN ('OnDemand Gather Schema Statistics', 'GatherRead more

    Hi,

    Try the below Query:

    [code]
    SELECT *
    FROM apps.fnd_concurrent_programs_vl p, apps.fnd_concurrent_requests r
    WHERE r.concurrent_program_id = p.concurrent_program_id
    AND r.program_application_id = p.application_id
    AND p.user_concurrent_program_name IN (‘OnDemand Gather Schema Statistics’,
    ‘Gather Schema Statistics’,
    ‘Gather Schema Statistics (IT_ANALYZE)’)
    AND ( r.phase_code = ‘C’
    AND r.status_code = ‘C’
    AND r.actual_start_date >= sysdate)
    [/code]

     

    Regards,

    Mahmoud Morsy.

    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  3. Asked: July 27, 2017In: Oracle Database

    How to kill current session in Oracle (ORA-00027 ) ?

    Mmorsy
    Mmorsy Junior mahmoudmorsymm1985@gmail.com
    Added an answer on July 31, 2017 at 1:40 pm
    This answer was edited.

    You can use this SQL statement to get the SID, SERIAL# of the current session: SELECT s.sid,s.serial#,spid,TRIM (s.machine) machine,TRIM (s.module) module,statusFROM v$session s, v$process pWHERE paddr = addr AND module IS NOT NULLORDER BY 1, 2 Then with sqlplus Run ALTER SYSTEM KILL SESSION 'sid,seRead more

    You can use this SQL statement to get the SID, SERIAL# of the current session:


    SELECT s.sid,
    s.serial#,
    spid,
    TRIM (s.machine) machine,
    TRIM (s.module) module,
    status
    FROM v$session s, v$process p
    WHERE paddr = addr AND module IS NOT NULL
    ORDER BY 1, 2

    Then with sqlplus Run

    ALTER SYSTEM KILL SESSION 'sid,serial#';

    Or by shell commnad:

    kill -9 spid.

    Regards,

    Mahmoud Morsy.

    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  4. Asked: July 27, 2017In: Oracle E-Business Suite

    Issue : R12 apps – Application font, colour, feel and looks different .

    Mmorsy
    Mmorsy Junior mahmoudmorsymm1985@gmail.com
    Added an answer on July 30, 2017 at 11:27 am

    Hi Vipul ,   The solution : Remove the files from the following directories $ rm -rf $OA_HTML/cabo/images/cache/* $ rm -rf  $OA_HTML/cabo/styles/cache/* Run  :  perl $FND_TOP/patch/115/bin/ojspCompile.pl --compile -p6 -log /tmp/ojspCompile.log --flush Remove the cache from browser and retry theRead more

    Hi Vipul ,

     

    The solution :

    • Remove the files from the following directories
      $ rm -rf $OA_HTML/cabo/images/cache/*
      $ rm -rf  $OA_HTML/cabo/styles/cache/*
    • Run  :  perl $FND_TOP/patch/115/bin/ojspCompile.pl –compile -p6 -log /tmp/ojspCompile.log –flush
    • Remove the cache from browser and retry the Application URL.

    Regards,

    Mahmoud Morsy.

    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  5. Asked: July 19, 2017In: Oracle E-Business Suite

    how to change all users password in EBS R12?

    Mmorsy
    Mmorsy Junior mahmoudmorsymm1985@gmail.com
    Added an answer on July 25, 2017 at 11:49 am

    Hi Jihad, Stop Application services then * Connect as APPS user and run the SQL commands: $ sqlplus apps/apps [code] SQL>set head off SQL> set newpage none SQL> set pagesize 9999 SQL> spool changepassword.sh SQL> select 'FNDCPASS apps/apps 0 Y system/manager USER '||user_name||' '||'tRead more

    Hi Jihad,

    • Stop Application services then * Connect as APPS user and run the SQL commands:
    • $ sqlplus apps/apps

    [code]
    SQL>set head off
    SQL> set newpage none
    SQL> set pagesize 9999
    SQL> spool changepassword.sh
    SQL> select ‘FNDCPASS apps/apps 0 Y system/manager USER ‘||user_name||’ ‘||’tech@321’ from fnd_user ;
    SQL> spool off

    [/code]

    • Then run script changepassword.sh
    • Start Application services.

    Regards,

    Mahmoud Morsy.

    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  6. Asked: July 19, 2017In: PL/SQL

    “What is the difference between Views and Materialized Views in Oracle? “

    Mmorsy
    Mmorsy Junior mahmoudmorsymm1985@gmail.com
    Added an answer on July 25, 2017 at 11:44 am

    Hello Nall, The Materialized views are disk based and are updated periodically based upon the query definition. The Views are virtual only and run the query definition each time they are accessed. Regards, Mahmoud Morsy.

    Hello Nall,

    The Materialized views are disk based and are updated periodically based upon the query definition.
    The Views are virtual only and run the query definition each time they are accessed.

    Regards,

    Mahmoud Morsy.

    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  7. Asked: July 19, 2017In: Oracle E-Business Suite

    How to enable Forms Runtime Diagnostic Trace?

    Mmorsy
    Mmorsy Junior mahmoudmorsymm1985@gmail.com
    Added an answer on July 20, 2017 at 11:53 am

    Hello Arika, Solution: 1. Go to SYSADMIN > System Administrator > Profile > System check profile option for "ICX Forms Launcher" and Make sure Site and User leave has been checked. 2. Set the value following values at user level only according to the version 3. For R12, http://url:/OA_HTML/Read more

    Hello Arika,

    Solution:
    1. Go to SYSADMIN >
    System Administrator >
    Profile >
    System
    check profile option for “ICX Forms Launcher” and Make sure Site and User leave has been
    checked.
    2. Set the value following values at user level only according to the version
    3. For R12, http://url:/OA_HTML/frmservlet?record=collect
    For 11i, http://url:/dev60cgi/f60cgi?&record=collect&log=<&gt;
    4. Get the FRD trace from $FORMS_TRACE_DIR path at OS Level

    Regards,

    Mahmoud Morsy,

    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  8. Asked: July 19, 2017In: Oracle Applications DBA

    Error rman 06026 some targets not found aborting restore

    Mmorsy
    Mmorsy Junior mahmoudmorsymm1985@gmail.com
    Added an answer on July 20, 2017 at 11:49 am

    Hi,   Solution : try with the below command in RMAN Prompt catalog start with '/u03/oracle/hotbackup/DATE/' ; restore database ;   Regards, Mahmoud Morsy.

    Hi,

     

    Solution :
    try with the below command in RMAN Prompt

    catalog start with ‘/u03/oracle/hotbackup/DATE/’ ;

    restore database ;

     

    Regards,

    Mahmoud Morsy.

    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  9. Asked: July 19, 2017In: Oracle Applications DBA

    How to know Version Database $ Application?

    Mmorsy
    Mmorsy Junior mahmoudmorsymm1985@gmail.com
    Added an answer on July 20, 2017 at 11:43 am

    Hi , The below query will help you. FOR DB: [code] SELECT * FROM PRODUCT_COMPONENT_VERSION; [/code] FOR Apps: [code] SELECT release_name FROM apps.fnd_product_groups; [/code] Regards, Mahmoud Morsy

    Hi ,

    The below query will help you.

    FOR DB:

    [code]

    SELECT * FROM PRODUCT_COMPONENT_VERSION;

    [/code]

    FOR Apps:

    [code]
    SELECT release_name FROM apps.fnd_product_groups;
    [/code]

    Regards,

    Mahmoud Morsy

    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  10. Asked: July 19, 2017In: Oracle Applications DBA

    How to get process ID By Concurrent request ID in EBS R12?

    Mmorsy
    Mmorsy Junior mahmoudmorsymm1985@gmail.com
    Added an answer on July 20, 2017 at 11:39 am

    Hi Check this query. [code] SELECT request_id, TO_CHAR (ACTUAL_START_DATE, 'DDMMYYYY HH24:MI:SS'), TO_CHAR (ACTUAL_COMPLETION_DATE, 'DDMMYYYY HH24:MI:SS'), phase_code, status_code, os_process_id, oracle_process_id FROM apps.fnd_concurrent_requests WHERE request_id = &req_id [/code] Regards, MahmRead more

    Hi

    Check this query.

    [code]
    SELECT request_id,
    TO_CHAR (ACTUAL_START_DATE, ‘DDMMYYYY
    HH24:MI:SS’),
    TO_CHAR (ACTUAL_COMPLETION_DATE, ‘DDMMYYYY
    HH24:MI:SS’),
    phase_code,
    status_code,
    os_process_id,
    oracle_process_id
    FROM apps.fnd_concurrent_requests
    WHERE request_id = &req_id
    [/code]

    Regards,

    Mahmoud Morsy.

    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
1 … 12 13 14 15 16 … 20

Sidebar

Adv 250x250

Explore

  • Categories
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Dev Tools
    • Online Compiler
    • Base64 Converter
    • Oraask XML Formatter
    • Oraask JSON Formatter
  • Wiki
    • SQL Tutorials
    • Java Tutorials
    • Python Tutorials
    • JavaScript Tutorials

Footer

Oraask

About

Oraask is a website for developers and software engineers who want to learn new skills, share their knowledge, and solve their coding problems. Oraask provides free content on various programming languages and topics, such as Oracle, Python, Java, etc. Oraask also allows users to ask questions and get answers from other members of the community.

About Us

  • About Us
  • Contact Us

Legal Stuff

  • Privacy Policy
  • Terms & Conditions

Follow

Oraask is licensed under CC BY-NC-SA 4.0Oraask CopyrightOraask CopyrightOraask CopyrightOraask Copyright

© 2019 Oraask. All Rights Reserved
With Love by Oraask.