Please be aware that the content in SAP SQL Anywhere Forum will be migrated to the SAP Community in June and this forum will be retired.

Our system is composed of two components and SQL Anywhere, a back-end that runs as a Windows service, the SQL Anywhere server, and a front end program.

We know from watching Task Manager that, at certain points in operation, the CPU usage of dbsrv12 skyrockets, but only when both the back-end and the front end program are running. If we stop the front end program, the back-end runs along & dbsrv12's CPU usage is low.

Thanks to the feedback of Jeff Albion & JBShuler, I've got the CPU usage of my database monitor code down to next to nothing, and the CPU usage is still spiking, so I've proven that wasn't the cause.

I've got the SQL Console running right now on a laptop machine. I emptied its database of all data and started the download process over again. When the front end program is running, I can see dbsrv12's CPU usage hit more than 80%. The console is logging requests, but nothing in there tells me anything about how much CPU or any other resource the query that's running is using.

I really need to figure out which query is causing dbsrv12's CPU usage to increase. How do I narrow it down to a particular query or group of queries?

asked 10 Jan '14, 11:31

TonyV's gravatar image

TonyV
1.2k333967
accept rate: 75%

edited 11 Jan '14, 08:00

Graeme%20Perrow's gravatar image

Graeme Perrow
9.6k379124

Does the CPU usage stay high for an unusually long time? Does the server response become noticeably slower? High CPU usage by itself just means the server is doing work, it's not necessarily indicative of a problem.

(10 Jan '14, 11:40) Graeme Perrow
Replies hidden

The CPU usage is generally higher with the front-end running than without it. On one machine in our offices, which has 8 cores, the CPU usage of dbsrv12 without the front end running is less than 5%, but with the front end running, it's as high as 18%. At the time, our download process from our server product was not downloading anything, so our system was idle. Upon stopping the front end, CPU usage went back down, but it went back up when it was restarted.

Other times, the CPU usage is fine with both programs running.

If the database server is just performing some maintenance tasks & it's not our code's fault, that's fine, but I need to prove it. I need to show that it can't be a query that's running from the front end that's causing the problem, or that its a specific one that is causing the problem.

It sure looks like it's the front end that's causing the high CPU usage.

(10 Jan '14, 11:55) TonyV

Hi Tony,

SQL Anywhere doesn't keep track of CPU usage per-query. It does however keep a cumulative time of CPU usage ('ApproximateCPUTime'), per-connection. To see a list of connections that have consumed the most CPU (example is taken from sa_conn_properties() and Breck Carter - thanks Breck!):

SELECT Number AS connection_number,
  CONNECTION_PROPERTY ( 'Name', Number ) AS connection_name,
  CONNECTION_PROPERTY ( 'Userid', Number ) AS user_id,
  CAST ( Value AS NUMERIC ( 30, 2 ) ) AS approx_cpu_time
FROM sa_conn_properties()
WHERE PropName = 'ApproximateCPUTime'
ORDER BY approx_cpu_time DESC;

You would then need to go back on each connection to see what was executed. If you first run the database server with request-level logging:

CALL sa_server_option('RequestLogFile', 'rll.txt');
CALL sa_server_option('RequestLogging', 'ALL');

You can then parse the results, by connection, with query timings to see the top queries for that connection (ordered by the total cursor open time):

CALL sa_get_request_times( 'rll.txt' , conn_id );
SELECT * FROM satmp_request_time ORDER BY millisecs DESC;

Otherwise, using diagnostic tracing is the best way to track down 'time' in the database (where if all data is in cache, should be an indication of 'CPU time'). You can use the following query against the diagnostic tracing tables to examine queries by both optimization time (duration_ms) and the total cursor open time (total_fetch_time_ms), for the top 10 queries:

SELECT TOP 10
      sdr.connection_number,
      sdr.request_id,
      sdc.cursor_id,
      sdq.query_id,
      sds.statement_id,
      sdc.total_fetch_time_ms,
      sdr.start_time,
      sdr.finish_time,
      sdr.duration_ms,
      sds.statement_text
 FROM sa_diagnostic_cursor sdc,
      sa_diagnostic_query sdq,
      sa_diagnostic_statement sds,
      sa_diagnostic_request sdr
WHERE sdr.statement_id = sds.statement_id
  AND sdr.query_id = sdq.query_id
  AND sdr.cursor_id = sdc.cursor_id
ORDER BY sdc.total_fetch_time_ms DESC;
permanent link

answered 10 Jan '14, 13:24

Jeff%20Albion's gravatar image

Jeff Albion
10.8k171175
accept rate: 25%

edited 10 Jan '14, 13:26

permanent link

answered 10 Jan '14, 13:01

Breck%20Carter's gravatar image

Breck Carter
32.5k5417261050
accept rate: 20%

edited 10 Jan '14, 13:01

Your answer
toggle preview

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Markdown Basics

  • *italic* or _italic_
  • **bold** or __bold__
  • link:[text](http://url.com/ "title")
  • image?![alt text](/path/img.jpg "title")
  • numbered list: 1. Foo 2. Bar
  • to add a line break simply add two spaces to where you would like the new line to be.
  • basic HTML tags are also supported

Question tags:

×275

question asked: 10 Jan '14, 11:31

question was seen: 4,807 times

last updated: 11 Jan '14, 08:00