-4

My oracle server has a huge queue and slowly executes user requests. I have increased ram and cpu but still same problem. I dont know anything to oracle, can you please give me commands to check if my server is configured properly to accept multithreads? Thanks

MeMow
  • 282
  • 1
  • 7

1 Answers1

0

Database don't run slowly.
The Queries inside them do.

Given that you have the same symptoms even after increasing RAM and CPU, that makes me think that you have poorly performing queries in need of tuning. No amount of mucking about with server level configuration is likely to help you [much].

I'm assuming, here, that because you tagged this as "Oracle" that you mean "Oracle Database", the DBMS sold (for money) by Oracle Corporation and not "MySQL", another DBMS entirely, acquired by Oracle Corporation in the "garage-sale" that was the collapse of Sun Microsystems.

Unfortunately, Oracle Database doesn't have anything as "simple" as a Slow Query log that lists all the misbehaving SQL. :-(
You need to use things like the Automated Workload Repository (AWR) to work out what's consuming all the resources. If you're using SQL Developer, see this forum posting for how to do that.

If you have Oracle Enterprise Manager (OEM) installed and running, this job is even easier.

Phill W.
  • 1,336
  • 7
  • 7