Home Database Mysql Tutorial OFA计算折旧运行慢

OFA计算折旧运行慢

Jun 07, 2016 pm 03:54 PM
calculate run

OFA计算折旧运行慢R12.1 Depreciation Program (FADEPR) Running Slow Poor Performance (文档 ID 1361909.1) Applies to: Oracle Assets - Version 12.1.1 and later Information in this document applies to any platform. FADEPR - Depreciation Program

 OFA计算折旧运行慢 R12.1 Depreciation Program (FADEPR) Running Slow Poor Performance (文档 ID 1361909.1)

Applies to:
Oracle Assets - Version 12.1.1 and later
Information in this document applies to any platform.
FADEPR - Depreciation Program

***Checked for relevance on 30-Oct-2012***

Symptoms

Depreciation is not completing, running for 30 hours, expected it to complete within reasonable time.

Cause

select from fa_additions_b ad ,fa_asset_history ah ,fa_methods mt ,fa_deprn_summary ds , fa_books bk resulting in over 3 billion rows queried and 1200 rows returned.

Solution

To implement the solution, please execute the following steps:

1. For R12.1.x (R12.FA.B) Customers: Apply Patch 8706842:R12.FA.B

2. Have your DBA recreate the FA_BOOKS_N1 index as follows:

create index fa_books_n1 on fa_books(asset_id,book_type_code);

3. Then, have your DBA run "GATHER SCHEMA STATISTICS" program.


The following points provide some tips and suggestions which might help to reduce the overall runtime of the Depreciation Request Set.

1. Check the following profile options making sure they are NOT checked or enabled, as these can all affect performance:

FA: Deprn Single
FA: Print Debug
FA: Print Timing Diagnostics
FND: Debug Log Enabled

2. Check that you do not have the 'Trace' option checked on any of the concurrent programs in the Depreciation request set (Generate Accounts, Calculate Gains & Losses, Depreciation, Journal Entry Reserve Ledger Report).

You can check this in the Concurrent > Program > Define form, from the System Administrator responsibility.

3. Check the following profile options which can impact the performance:

FA: Security Profile
If this profile is set, it means that security is enabled for the responsibility and this should be expected to slow down the processing slightly.

FA: Number of Parallel Requests
You may wish to consider setting this profile to improve the performance. Please see the 'Oracle Assets Profile Options' Chapter in the Oracle Assets User Guide, for more information about this profile option.

4. Consider applying more recent code for any of the programs which seem to be taking the most time in the Depreciation Request Set. In particular, it is recommended to be on the latest FA rollup patch for your patchset level.
Refer to the following note for the latest rollup patch numbers:
Note 466607.1 : R12 / 11i FA.M-P RECOMMENDED PATCH LIST

5. Are all required init_SID.ora parameters set correctly according to the script in Note 174605.1?

在系统管理员职责下运行‘统计数据收集模式’请求后解决
6. Ensure you run 'Gather Statistics' for the FA Schema on a regular basis; particularly important after any big data load.
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to calculate addition, subtraction, multiplication and division in word document How to calculate addition, subtraction, multiplication and division in word document Mar 19, 2024 pm 08:13 PM

WORD is a powerful word processor. We can use word to edit various texts. In Excel tables, we have mastered the calculation methods of addition, subtraction and multipliers. So if we need to calculate the addition of numerical values ​​in Word tables, How to subtract the multiplier? Can I only use a calculator to calculate it? The answer is of course no, WORD can also do it. Today I will teach you how to use formulas to calculate basic operations such as addition, subtraction, multiplication and division in tables in Word documents. Let's learn together. So, today let me demonstrate in detail how to calculate addition, subtraction, multiplication and division in a WORD document? Step 1: Open a WORD, click [Table] under [Insert] on the toolbar, and insert a table in the drop-down menu.

CUDA's universal matrix multiplication: from entry to proficiency! CUDA's universal matrix multiplication: from entry to proficiency! Mar 25, 2024 pm 12:30 PM

General Matrix Multiplication (GEMM) is a vital part of many applications and algorithms, and is also one of the important indicators for evaluating computer hardware performance. In-depth research and optimization of the implementation of GEMM can help us better understand high-performance computing and the relationship between software and hardware systems. In computer science, effective optimization of GEMM can increase computing speed and save resources, which is crucial to improving the overall performance of a computer system. An in-depth understanding of the working principle and optimization method of GEMM will help us better utilize the potential of modern computing hardware and provide more efficient solutions for various complex computing tasks. By optimizing the performance of GEMM

How to execute .sh file in Linux system? How to execute .sh file in Linux system? Mar 14, 2024 pm 06:42 PM

How to execute .sh file in Linux system? In Linux systems, a .sh file is a file called a Shell script, which is used to execute a series of commands. Executing .sh files is a very common operation. This article will introduce how to execute .sh files in Linux systems and provide specific code examples. Method 1: Use an absolute path to execute a .sh file. To execute a .sh file in a Linux system, you can use an absolute path to specify the location of the file. The following are the specific steps: Open the terminal

PyCharm usage tutorial: guide you in detail to run the operation PyCharm usage tutorial: guide you in detail to run the operation Feb 26, 2024 pm 05:51 PM

PyCharm is a very popular Python integrated development environment (IDE). It provides a wealth of functions and tools to make Python development more efficient and convenient. This article will introduce you to the basic operation methods of PyCharm and provide specific code examples to help readers quickly get started and become proficient in operating the tool. 1. Download and install PyCharm First, we need to go to the PyCharm official website (https://www.jetbrains.com/pyc

How to count the number of elements in a list using Python's count() function How to count the number of elements in a list using Python's count() function Nov 18, 2023 pm 02:53 PM

How to use Python's count() function to calculate the number of an element in a list requires specific code examples. As a powerful and easy-to-learn programming language, Python provides many built-in functions to handle different data structures. One of them is the count() function, which can be used to count the number of elements in a list. In this article, we will explain how to use the count() function in detail and provide specific code examples. The count() function is a built-in function of Python, used to calculate a certain

Reasons why exe files cannot be run on Windows 7 Reasons why exe files cannot be run on Windows 7 Feb 18, 2024 pm 08:32 PM

Why can't win7 run exe files? When using the Windows7 operating system, many users may encounter a common problem, that is, they cannot run exe files. exe files are common executable files in Windows operating systems. They are usually used to install and run various applications. However, some users may find that when they try to run the exe file, the system does not respond or gives an error message. There are many reasons for this problem. Below are some common causes and corresponding solutions:

Why can't I execute bat file on Windows 7? Why can't I execute bat file on Windows 7? Feb 19, 2024 pm 03:19 PM

Why can't win7 run bat files? Recently, many users using the Windows7 operating system have reported that they cannot run .bat files. This sparked widespread discussion and confusion. Why can't a well-functioning operating system run a simple .bat file? First, we need to understand the background of the .bat file. A .bat file, also known as a batch file, is a plain text file that contains a series of commands that can be used by the Windows command interpreter (cmd.ex

How to run Javascript from Python? How to run Javascript from Python? Sep 07, 2023 pm 11:33 PM

In Python, we can use the PyExecJS library or Python’s js2py library to run Javascript code. The PyExecJs library provides a consistent API to run JavaScript code from Python using a variety of JavaScript engines, including Node.js, JavaScriptCore, and Google's V8 engine. The js2py library allows you to execute JavaScript code in Python by parsing the JavaScript code and interpreting it in Python. This article will teach us how to run javasc from Python using the PyExecJS library

See all articles