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.

Hi Our application has a function where it will calculate various totals on employee schedules. One very large group's schedule was taking about 40 seconds to process before a defrag, dump, load, defrag was performed. After the rebuild/defrag process the user reported that the process was taking about 35 seconds. Besides making sure that there is enough memory to cache the entire database, and the rebuild/defrag process described above, what are some of the other ways to speed up sqla database processing? I realize that we may have to look at redesigning the schedule totaling function, but I want to make sure that sqla is setup for its fastest possible performance.

Thanks, Doug.

asked 06 Jul '13, 18:24

dejstone's gravatar image

dejstone
959405069
accept rate: 0%

IMVHO, the re-design of complex and "slow" queries is usually much more efficient than methods to speed up the "whole database" - unless one is faced with obvious bottlenecks like way too less RAM and the like.

Besides that, in order to avoid the common answer "It depends...", I guess you will have to ask more specific questions and tell more on your options of choice. I don't think there is one and only setup for "the fastest possible performance" in general...

(07 Jul '13, 16:06) Volker Barth

Hi Doug

We are using SQLA for intensive calculations (less data retrieval). Some pointers:

  1. Use the profiler in Sybase Central to find your bottle-necks (Only profile procedures and functions)

  2. There is an overhead in calling functions that one tends to ignore. If you have loads of functions that each performs a small task, consider moving them back into the main procedure. There are strict guidelines as to when SQLA will translate your function to an inline set of calls within the calling routine. But generally speaking, you should do well flattening your depth of functions calling functions, calling... you get the idea.

  3. Consider materialized views. Following your performance profiling (1), see if you can replace some data retrieval from views (if any) with materialized views. It can make a huge difference in calculation performance if you reduce the fetch-time of single-row selections.

  4. FASTFIRSTROW. If your calculation typically requires one record from a data set, consider using the FastFirstRow table hint in a query's FROM clause to set the optimization goal for a specific query without having so set the global optimisation goal settings of your database.

As Volker stated, every use-case is different, but you cannot go wrong with these steps (especially the first one). Good luck!

permanent link

answered 08 Jul '13, 01:59

Liam's gravatar image

Liam
36191118
accept rate: 0%

edited 08 Jul '13, 12:33

Breck%20Carter's gravatar image

Breck Carter
32.5k5417261050

FWIW, I'm quite sure for his second point, Liam is relating to the following FAQ:

Deep level calling of Stored Procedures - Expensive

(08 Jul '13, 16:11) Volker Barth

Impressive memory Volker :-)

(09 Jul '13, 00:52) Liam
Replies hidden

...nah, just the linked pages of this forum:)

(09 Jul '13, 01:50) Volker Barth

...or should I have said: "Virtual memory!"?

(09 Jul '13, 06:18) Volker Barth

Hi Doug,

I would first make sure your database server and client run on the latest EBF patch and if possible the last release of SQL Anywhere (16). We've encountered several major performance increases when installing the latest patch (on version 11.0.1).

Indexes can really speed up things. I would check which queries are executed during your 35/40s period and try to optimize them by adding specific indexes. Remember that adding indexes also has drawbacks !

permanent link

answered 08 Jul '13, 09:58

MichaelMangelschots's gravatar image

MichaelMange...
1255615
accept rate: 0%

When you follow Liam's advice to use the procedure profiler, you may discover one or more slow SQL queries.

If you obtain representative and meaningful plans (Graphical Plan With Statistics) for those queries, maybe you can see where to apply Michael's advice to create an index.

You could also save and post the saplan files here.

...and/or run the Index Consultant.

...and/or run Database Tracing In 50 Easy Steps ( that's a last resort :)

permanent link

answered 09 Jul '13, 12:44

Breck%20Carter's gravatar image

Breck Carter
32.5k5417261050
accept rate: 20%

edited 09 Jul '13, 12:54

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: 06 Jul '13, 18:24

question was seen: 2,098 times

last updated: 09 Jul '13, 12:54