SlideShare ist ein Scribd-Unternehmen logo
1 von 10
Downloaden Sie, um offline zu lesen
InBrief




Embarcdero DB Optimizer


 An InBrief paper by Bloor Research
 Author : Philip Howard
 Publish date : April 2009
Most database performance
tools focus on what is happening
in the database and fixing it,
rather than preventing problems
from occurring in the first place.
Conversely, this is DB Optimizer’s
strength.
Philip Howard
Embarcadero DB Optimizer                                                                                                                   page 1




Executive summary

In general it is a good idea to get the most out of your investments, regardless of whether these are IT-based or not. Within IT,
one area where it is commonplace to not get the most out of your investment is from your databases. This is primarily because
they do not perform with optimal efficiency, with the result that service levels are reduced and the business suffers. Historically,
the simple answer to such problems has been to increase the power of the hardware supporting the database but this is an
expensive solution at the best of times and, in the midst of a recession, is likely to be unappealing. A preferable, and more cost
effective, solution is to detect and cure performance problems through software and, better yet, prevent such problems from
occurring in the first place. This is what Embarcadero DB Optimizer is designed to do.

Fast facts                                                           •	 Tuning, which is available for all supported databases,
                                                                       includes support for hints, SQL rewrites and index
The biggest cause of database performance is poorly                    analysis and there are also batch capabilities for DML
written SQL and this is what DB Optimizer focuses on. It is            statements, stored procedures and so on.
not, however, a general-purpose 24/7 database
performance monitoring tool: Embarcadero’s Performance               •	 Ease of use makes DB Optimizer particularly suitable for
Center offers those sorts of capabilities. Instead, DB                 any user interested in the prevention of poor-performing
Optimizer is specifically focused on profiling, reporting and          SQL as a part of the development lifecycle.
tuning SQL so that it is optimised for database
performance. These capabilities come in handy when                   •	 A major concern within performance management
leveraged during performance fire drills in production and,            environments is to avoid finger pointing. Thus it is
when DB Optimizer is employed during the development                   important to be able to bridge the developer/DBA divide.
lifecycle, costly production issues can be prevented in a              We are therefore pleased that Embarcadero has
proactive manner.                                                      introduced the related product, J Optimizer, which
                                                                       provides Java optimisation that can be used in conjunction
Key findings                                                           with DB Optimizer.

In the opinion of Bloor Research, the following represent the        The bottom line
key facts of which prospective users should be aware:
                                                                     As the saying goes: “prevention is better than cure”. Most
•	 DB Optimizer is a cross-platform tool that supports               database performance tools focus on what is happening in
  Microsoft, Sybase ASE, Oracle and DB2 LUW                          the database and fixing it, rather than preventing problems
  environments. We would like to see the company extend              from occurring in the first place. Conversely, this is DB
  this capability to MySQL.                                          Optimizer’s strength. What may be an issue is that this is a
                                                                     tool for fixing the problems of the database administrator
•	 DB Optimizer supports continuous profiling (the discovery         that will actually be deployed, when used preemptively, by
  of bottlenecks) within a configurable span of time,                developers. In environments where these communities work
  together with reporting and snapshotting capabilities so           closely together that will not be a problem but there are
  that you can diagnose and prioritise remedial efforts and          companies where that is not the case. On the other hand, the
  SQL tuning.                                                        use of tools such as DB Optimizer (particularly when used in
                                                                     conjunction with J Optimizer) may help to draw these groups
•	 We are pleased to see that the product uses wait time             together to work in a more collaborative fashion. In either
  measurements as well as conventional CPU, I/O                      case DB Optimizer is certainly worth serious consideration.
  monitoring and so forth.




© 2009 Bloor Research                                                                                              A Bloor InBrief paper
Embarcadero DB Optimizer                                                                                                                           page 2




The product

DB Optimizer was released in July 2008 and is in its second
major release, version 1.5. It is a desktop tool that runs
under Windows (2003 and later) or Linux (Red Hat and SUSE)
and requires the relevant Sun Java 2 Standard Edition. DB
Optimizer includes Embarcadero PowerSQL Professional
Edition which, at the time of writing, is in version 1.1.

Databases supported include Oracle 8i to 11g, Sybase ASE
12.5 to 15.0 (note: there were no versions 13 or 14),
Microsoft SQL Server 2003, 2005 and 2008 and IBM DB2 for
LUW (that is, for distributed rather than mainframe
platforms) version 8.0 through 9.0. The company has not yet
introduced support for versions of DB2 later than 9.0. The
product is fully Unicode compliant.

In terms of functionality DB Optimizer essentially does three
things: profiling, reporting and tuning. We shall consider        Figure 1: Profiled performance data using DB Optimizer
each of these in turn.
                                                                  While you can visually inspect and compare the performance
Profiling                                                         of different SQL statements, and while you can easily change
                                                                  the time intervals you are inspecting, you can also see
Profiling is the process of discovering performance               aggregated results over a period of time. In particular, “top
bottlenecks caused by poor-performing SQL. There is a             ten” listings of the most onerous SQL statements are useful,
particular emphasis on discovering problems before they           especially when combined with frequency of use statistics.
arise, during the development phase, rather than leaving          DB Optimizer allows you to focus on the statements with the
them to production where they become significantly more           most activity and quickly diagnose them in order to ensure
costly to fix. Thus you can profile (and tune) a single stored    you are putting your efforts into the SQL statements that will
routine whenever required so that you can see how efficient       yield the greatest performance benefits for your database.
it is. This will particularly suit agile programming
environments but would also make sense more generally.            Finally under the heading of Reporting, the software
Alternatively, the product also supports continuous profiling.    provides facilities whereby the Explain Plan for each SQL
It is also worth noting that there is a command line API that     statement can be calculated. This is important because it
allows profiling to be initiated from a remote location.          allows you to optimise the execution of the SQL. Note that
                                                                  the Explain Plan is worked out without actually running the
Of course, in development profiling is not a panacea. Many        query and it is presented graphically as a tree diagram. If
applications will already be written or have been licensed        used in conjunction with the product’s tuning capabilities
from third parties, which may result in SQL-related               then you can also calculate the costs associated with each
performance problems. To support these environments DB            Explain Plan.
Optimizer provides the facility to profile an entire database
instance so that you can look at the relevant details (see next   Tuning
section). In order to ensure negligible overhead on the target
database, DB Optimizer utilises sampling, which captures          As with profiling, you can tune individual SQL statements or
long running or frequently executed queries by sampling           you can work in batch mode. You can tune one statement at a
database system tables and intelligently aggregating and          time (either as you write it or after you discover it while
analysing the data in real time.                                  profiling) and simply drop the SQL into the tuner as illustrated
                                                                  in Figure 2 or you can tune batches of DML statements, and
However you go about it, the resulting snapshots, with all        SQL files, which will be parsed and tuned in bulk.
their associated data and metadata, can be saved for
subsequent sharing and analysis, as appropriate.

Reporting

As you would expect from a tool of this sort, DB Optimizer
provides a range of graphical representations of the data it
has profiled, of which Figure 1 provides a typical example
that should be fairly self-explanatory.

Details are presented of CPU, I/O and other sorts of wait
activity and you can drill down into further detail either in
terms of the wait times being analysed or the SQL statement
that you are analysing; in the latter case so that you can see
the full SQL text together with the relevant details for each
line of that statement.
                                                                  Figure 2: SQL tuning using DB Optimizer




© 2009 Bloor Research                                                                                                      A Bloor InBrief paper
Embarcadero DB Optimizer                                                                                                                page 3




The product

The tuner suggests hints, SQL rewrites, and indexes in order      Third party applications
to help you speed up your SQL code, which is accomplished
via a single button click:                                        All the foregoing discussions have been around software
                                                                  that is developed in-house. However, it is commonly the
•	 Hints act as a direction finder for your code in terms of      case that companies use packaged applications in many
  telling the database which turns to take in order to stay on    instances and it is by no means unknown for these packages
  the quickest path.                                              to generate very poorly performing SQL. Of course, you can
                                                                  use DB Optimizer to profile the SQL so that you can
•	 SQL rewrites actually adjust your code to avoid common         demonstrate to your supplier how poor their SQL is but that
  mistakes such as cartesian products and suppressed              may not get you every far, or not very quickly, so
  indexes that can kill database performance.                     Embarcadero provides an additional facility known as a
                                                                  stored outline. The way that this works is that after running
•	 Index analysis dives into the database itself and looks for    a tuning job you can generate the DDL to create a stored
  performance opportunities that could speed up the               outline for the best execution plan. You then insert this into
  retrieval of result sets.                                       the database so that SQL statements from the application
                                                                  will follow this plan rather than the one it did originally.
In addition to tuning per se, DB Optimizer also provides what
might be described as pre-emptive tuning capabilities. For
example, as we have noted, DB Optimizer embeds
Embarcadero Rapid SQL Developer, which is a SQL IDE
(integrated development environment) that is illustrated in
Figure 3. In this example, the code assist features of the
product are illustrated, providing you with context-
appropriate object suggestions. This is generated as you
type and thus provides dynamic syntactic and semantic
error checking.

Code assist is available even when you are not connected to
the database.

Another major feature, apart from support for hints, is Quick
Fixes, as illustrated in Figure 4, whereby suggestions that
accord with best practice (as opposed to out and out errors)
are put before you, based on your own customisation of the        Figure 3: Embarcadero Rapid SQL Developer
tool: you decide, for example, the subset of hints to be
considered for use.

Other tuning features include support for resolving bind
variables, the ability to tune SQL extracted from a procedure,
and index analysis, though in the case of indexes there is no
facility to automate the creation of indexes. To be fair, while
this is a common in-database feature it is not usually
present in third party performance tools, though we see no
reason why a direct link to the database’s software should
not be implemented.

Beyond these features these is also a visual text
differencing tool that will allow you to compare different
SQL statements with automatic highlighting of any
differences between them.

                                                                  Figure 4: Quick Fix support in DB Optimizer




© 2009 Bloor Research                                                                                           A Bloor InBrief paper
Embarcadero DB Optimizer                                                                                                               page 4




The vendor

Embarcadero Technologies was founded in 1993 and its first       Embarcadero floated on NASDAQ in 2000 but went private
product, Embarcadero Rapid SQL, was a Sybase                     again in a $200m deal in 2007. The company has offices in
development product that quickly expanded to support             the United States, Canada, Brazil (CodeGear only), France,
Microsoft SQL Server. From there the company increasingly        Germany, Russia, the UK, Australia, Japan, Singapore and
specialised in the data management arena with products           China. In general, in North America the company’s primary
such as Embarcadero DBArtisan and, more recently, Power          approach is via direct sales (70%) whereas in the rest of the
SQL, J Optimizer and Change Manager as well as the ER/           world it is mostly via channel partners (70%). It has partners
Studio modeling product. In effect, the company markets all      across Europe, in the Far East, India, Asia–Pacific, and in
sorts of products for supporting database and application        both Mexico and South America.
environments, including the design, development and
management of databases, the movement of data to and             While we have yet to see much in terms of integration
from such databases, and the performance management              between the data and application areas (DB Optimizer and J
and testing of databases, applications, and overall systems.     Optimizer being an exception) in terms of products the
The one thing that Embarcadero has not done historically is      company has introduced a new approach to licensing that
to provide a database of its own.                                spans the product sets. This is called All-Access and
                                                                 effectively offers a toolbox style approach. Most
In June 2008 Embarcadero acquired CodeGear, which was            Embarcadero users probably focus on using just one or two
itself split out from Borland in 2006, containing all that       of its products. Although they might look to use some of the
company’s tools that were not related to application lifecycle   company’s other tools once in a while that does not merit
management, upon which Borland is now focused. As a part         taking out a full license. What All-Access offers is a range of
of that acquisition, Embarcadero gained the Delphi, JBuilder     tools for not much more than the cost of the licenses of the
(and variants such as C#Builder) and RAD Studio                  couple of tools you are already using, but providing much
development environments and associated products. During         more flexibility when you, from time to time, want access to
the course of 2009 we are likely to see the first instances of   other technologies.
integration between the CodeGear and Embarcadero product
sets, such as the embedding of ER/Studio within relevant         Embarcadero web addresses:
development environments.
                                                                 www.embarcadero.com
One additional product that Embarcadero has acquired with        www.codegear.com
this purchase is the InterBase database management
system. It remains to be seen what Embarcadero, which has
traditionally been agnostic about the databases products it
supports, does with respect to InterBase.




© 2009 Bloor Research                                                                                          A Bloor InBrief paper
Embarcadero DB Optimizer                                                                                                             page 5




Summary

Embarcadero is established as perhaps the leading               Further Information
independent tools vendor for database management. Viewed
within this context DB Optimizer is a significant addition to   Further information about this subject is available from
the company’s portfolio of solutions and we expect to see       http://www.BloorResearch.com/update/1027
significant uptake of the product. However, DB Optimizer is
perhaps best suited for use by developers rather than in the
database environment per se. We therefore expect that
Embarcadero will also be promoting this product to its
recently acquired CodeGear customers, particularly in
conjunction with J Optimizer. This should make a compelling
combination.




© 2009 Bloor Research                                                                                        A Bloor InBrief paper
Bloor Research overview                          About the author




Bloor Research has spent the last decade         Philip Howard
developing what is recognised as Europe’s        Research Director - Data Management
leading independent IT research organisation.
With its core research activities underpinning   Philip started in the computer industry
a range of services, from research and           way back in 1973 and has variously worked
consulting to events and publishing, Bloor       as a systems analyst, programmer and
Research is committed to turning knowledge       salesperson, as well as in marketing and
into client value across all of its products     product management, for a variety of
and engagements. Our objectives are:             companies including GEC Marconi, GPT,
                                                 Philips Data Systems, Raytheon and NCR.
•	 Save clients’ time by providing comparison
   and analysis that is clear and succinct.      After a quarter of a century of not being
                                                 his own boss Philip set up his own
•	 Update clients’ expertise, enabling           company in 1992 and his first client was
   them to have a clear understanding            Bloor Research (then ButlerBloor), with
   of IT issues and facts and validate           Philip working for the company as an
   existing technology strategies.               associate analyst. His relationship with
                                                 Bloor Research has continued since that
•	 Bring an independent perspective,             time and he is now Research Director
   minimising the inherent risks of product      focussed on Data Management. Data
   selection and decision-making.                Management refers to the management,
                                                 movement, governance and storage of
•	 Communicate our visionary                     data and involves diverse technologies that
   perspective of the future of IT.              include (but are not limited to) databases
                                                 and data warehousing, data integration
Founded in 1989, Bloor Research is one of        (including ETL, data migration and data
the world’s leading IT research, analysis        federation), data quality, master data
and consultancy organisations—distributing       management, metadata management,
research and analysis to IT user and vendor      and log and event management. Philip
organisations throughout the world via           also tracks spreadsheet management
online subscriptions, tailored research          and complex event processing.
services and consultancy projects.
                                                 In addition to the numerous reports Philip
                                                 has written on behalf of Bloor Research,
                                                 Philip also contributes regularly to www.
                                                 IT-Director.com and www.IT-Analysis.
                                                 com and was previously the editor of both
                                                 “Application Development News” and
                                                 “Operating System News” on behalf of
                                                 Cambridge Market Intelligence (CMI). He
                                                 has also contributed to various magazines
                                                 and published a number of reports
                                                 published by companies such as CMI
                                                 and The Financial Times. Philip speaks
                                                 regularly at conferences and other events
                                                 throughout Europe and North America.

                                                 Away from work, Philip’s primary leisure
                                                 activities are canal boats, skiing, playing
                                                 Bridge (at which he is a Life Master),
                                                 dining out and walking Benji the dog.
Copyright & disclaimer




This document is copyright © 2009 Bloor
Research. No part of this publication may
be reproduced by any method whatsoever
without the prior consent of Bloor Research.

Due to the nature of this material, numerous
hardware and software products have been
mentioned by name. In the majority, if not
all, of the cases, these product names are
claimed as trademarks by the companies
that manufacture the products. It is not Bloor
Research’s intent to claim these names or
trademarks as our own. Likewise, company
logos, graphics or screen shots have been
reproduced with the consent of the owner
and are subject to that owner’s copyright.

Whilst every care has been taken in the
preparation of this document to ensure
that the information is correct, the
publishers cannot accept responsibility
for any errors or omissions.
2nd Floor,
        145–157 St John Street
                     LONDON,
     EC1V 4PY, United Kingdom

         Tel: +44 (0)207 043 9750
        Fax: +44 (0)207 043 9748
 Web: www.BloorResearch.com
email: info@BloorResearch.com

Weitere ähnliche Inhalte

Was ist angesagt?

Increased database performance and reduced costs with Dell PowerEdge FX2 & VM...
Increased database performance and reduced costs with Dell PowerEdge FX2 & VM...Increased database performance and reduced costs with Dell PowerEdge FX2 & VM...
Increased database performance and reduced costs with Dell PowerEdge FX2 & VM...Principled Technologies
 
Scalable scheduling of updates in streaming data warehouses
Scalable scheduling of updates in streaming data warehousesScalable scheduling of updates in streaming data warehouses
Scalable scheduling of updates in streaming data warehousesFinalyear Projects
 
DB PowerStudio XE DataSheet
DB PowerStudio XE DataSheetDB PowerStudio XE DataSheet
DB PowerStudio XE DataSheetANIL MAHADEV
 
Improve datacenter energy efficiency with Intel Node Manager
Improve datacenter energy efficiency with Intel Node ManagerImprove datacenter energy efficiency with Intel Node Manager
Improve datacenter energy efficiency with Intel Node ManagerPrincipled Technologies
 
About DesignMerge
About DesignMergeAbout DesignMerge
About DesignMergegbane
 
DBM 380 EDU Redefined Education--dbm380edu.com
DBM 380 EDU Redefined Education--dbm380edu.comDBM 380 EDU Redefined Education--dbm380edu.com
DBM 380 EDU Redefined Education--dbm380edu.comclaric202
 
Virtualization-management comparison: Dell Foglight for Virtualization vs. So...
Virtualization-management comparison: Dell Foglight for Virtualization vs. So...Virtualization-management comparison: Dell Foglight for Virtualization vs. So...
Virtualization-management comparison: Dell Foglight for Virtualization vs. So...Principled Technologies
 
DBM 380 EDU Become Exceptional--dbm380edu.com
DBM 380 EDU Become Exceptional--dbm380edu.comDBM 380 EDU Become Exceptional--dbm380edu.com
DBM 380 EDU Become Exceptional--dbm380edu.comclaric113
 
DBM 380 EDU Achievement Education--dbm380edu.com
DBM 380 EDU Achievement Education--dbm380edu.comDBM 380 EDU Achievement Education--dbm380edu.com
DBM 380 EDU Achievement Education--dbm380edu.comclaric163
 
DBM 380 EDU Education Counseling--dbm380edu.com
DBM 380 EDU Education Counseling--dbm380edu.comDBM 380 EDU Education Counseling--dbm380edu.com
DBM 380 EDU Education Counseling--dbm380edu.comclaric63
 
DBM 380 HELP Redefined Education--dbm380help.com
DBM 380 HELP Redefined Education--dbm380help.comDBM 380 HELP Redefined Education--dbm380help.com
DBM 380 HELP Redefined Education--dbm380help.comGVlaxmi7
 
Database Comparison & Synch | Change Manager Success Story
Database Comparison & Synch | Change Manager Success StoryDatabase Comparison & Synch | Change Manager Success Story
Database Comparison & Synch | Change Manager Success StoryEmbarcadero Technologies
 
Customer relationship management performance: Microsoft Dynamics on the Dell ...
Customer relationship management performance: Microsoft Dynamics on the Dell ...Customer relationship management performance: Microsoft Dynamics on the Dell ...
Customer relationship management performance: Microsoft Dynamics on the Dell ...Principled Technologies
 
What can power designer do for me
What can power designer do for meWhat can power designer do for me
What can power designer do for meGeorge McGeachie
 
DBM 380 HELP Education Counseling--dbm380help.com
DBM 380 HELP Education Counseling--dbm380help.comDBM 380 HELP Education Counseling--dbm380help.com
DBM 380 HELP Education Counseling--dbm380help.comclaric63
 
Sybase PowerDesigner Vs Erwin
Sybase PowerDesigner Vs ErwinSybase PowerDesigner Vs Erwin
Sybase PowerDesigner Vs ErwinSybase Türkiye
 
LeverX SAP 7.02 Navigation Essentials
LeverX SAP 7.02 Navigation EssentialsLeverX SAP 7.02 Navigation Essentials
LeverX SAP 7.02 Navigation EssentialsLeverX
 
Introduction to change data capture in sql server 2008 tech republic
Introduction to change data capture in sql server 2008   tech republicIntroduction to change data capture in sql server 2008   tech republic
Introduction to change data capture in sql server 2008 tech republicKaing Menglieng
 
Database Change Management | Change Manager from Embarcadero Technologies
Database Change Management  | Change Manager from Embarcadero TechnologiesDatabase Change Management  | Change Manager from Embarcadero Technologies
Database Change Management | Change Manager from Embarcadero TechnologiesMichael Findling
 

Was ist angesagt? (20)

Increased database performance and reduced costs with Dell PowerEdge FX2 & VM...
Increased database performance and reduced costs with Dell PowerEdge FX2 & VM...Increased database performance and reduced costs with Dell PowerEdge FX2 & VM...
Increased database performance and reduced costs with Dell PowerEdge FX2 & VM...
 
Scalable scheduling of updates in streaming data warehouses
Scalable scheduling of updates in streaming data warehousesScalable scheduling of updates in streaming data warehouses
Scalable scheduling of updates in streaming data warehouses
 
DB PowerStudio XE DataSheet
DB PowerStudio XE DataSheetDB PowerStudio XE DataSheet
DB PowerStudio XE DataSheet
 
Improve datacenter energy efficiency with Intel Node Manager
Improve datacenter energy efficiency with Intel Node ManagerImprove datacenter energy efficiency with Intel Node Manager
Improve datacenter energy efficiency with Intel Node Manager
 
About DesignMerge
About DesignMergeAbout DesignMerge
About DesignMerge
 
DBM 380 EDU Redefined Education--dbm380edu.com
DBM 380 EDU Redefined Education--dbm380edu.comDBM 380 EDU Redefined Education--dbm380edu.com
DBM 380 EDU Redefined Education--dbm380edu.com
 
Virtualization-management comparison: Dell Foglight for Virtualization vs. So...
Virtualization-management comparison: Dell Foglight for Virtualization vs. So...Virtualization-management comparison: Dell Foglight for Virtualization vs. So...
Virtualization-management comparison: Dell Foglight for Virtualization vs. So...
 
DBM 380 EDU Become Exceptional--dbm380edu.com
DBM 380 EDU Become Exceptional--dbm380edu.comDBM 380 EDU Become Exceptional--dbm380edu.com
DBM 380 EDU Become Exceptional--dbm380edu.com
 
DBM 380 EDU Achievement Education--dbm380edu.com
DBM 380 EDU Achievement Education--dbm380edu.comDBM 380 EDU Achievement Education--dbm380edu.com
DBM 380 EDU Achievement Education--dbm380edu.com
 
DBM 380 EDU Education Counseling--dbm380edu.com
DBM 380 EDU Education Counseling--dbm380edu.comDBM 380 EDU Education Counseling--dbm380edu.com
DBM 380 EDU Education Counseling--dbm380edu.com
 
DBM 380 HELP Redefined Education--dbm380help.com
DBM 380 HELP Redefined Education--dbm380help.comDBM 380 HELP Redefined Education--dbm380help.com
DBM 380 HELP Redefined Education--dbm380help.com
 
Database Comparison & Synch | Change Manager Success Story
Database Comparison & Synch | Change Manager Success StoryDatabase Comparison & Synch | Change Manager Success Story
Database Comparison & Synch | Change Manager Success Story
 
Customer relationship management performance: Microsoft Dynamics on the Dell ...
Customer relationship management performance: Microsoft Dynamics on the Dell ...Customer relationship management performance: Microsoft Dynamics on the Dell ...
Customer relationship management performance: Microsoft Dynamics on the Dell ...
 
What can power designer do for me
What can power designer do for meWhat can power designer do for me
What can power designer do for me
 
DBM 380 HELP Education Counseling--dbm380help.com
DBM 380 HELP Education Counseling--dbm380help.comDBM 380 HELP Education Counseling--dbm380help.com
DBM 380 HELP Education Counseling--dbm380help.com
 
Struct frameproject
Struct frameprojectStruct frameproject
Struct frameproject
 
Sybase PowerDesigner Vs Erwin
Sybase PowerDesigner Vs ErwinSybase PowerDesigner Vs Erwin
Sybase PowerDesigner Vs Erwin
 
LeverX SAP 7.02 Navigation Essentials
LeverX SAP 7.02 Navigation EssentialsLeverX SAP 7.02 Navigation Essentials
LeverX SAP 7.02 Navigation Essentials
 
Introduction to change data capture in sql server 2008 tech republic
Introduction to change data capture in sql server 2008   tech republicIntroduction to change data capture in sql server 2008   tech republic
Introduction to change data capture in sql server 2008 tech republic
 
Database Change Management | Change Manager from Embarcadero Technologies
Database Change Management  | Change Manager from Embarcadero TechnologiesDatabase Change Management  | Change Manager from Embarcadero Technologies
Database Change Management | Change Manager from Embarcadero Technologies
 

Andere mochten auch

Performance testing basics
Performance testing basicsPerformance testing basics
Performance testing basicsCharu Anand
 
Performance testing interview questions and answers
Performance testing interview questions and answersPerformance testing interview questions and answers
Performance testing interview questions and answersGaruda Trainings
 
Performance testing jmeter
Performance testing jmeterPerformance testing jmeter
Performance testing jmeterBhojan Rajan
 
An Introduction to Software Performance Engineering
An Introduction to Software Performance EngineeringAn Introduction to Software Performance Engineering
An Introduction to Software Performance EngineeringCorrelsense
 
SAP Performance Testing Best Practice Guide v1.0
SAP Performance Testing Best Practice Guide v1.0SAP Performance Testing Best Practice Guide v1.0
SAP Performance Testing Best Practice Guide v1.0Argos
 

Andere mochten auch (8)

Performance testing
Performance testingPerformance testing
Performance testing
 
Performance testing basics
Performance testing basicsPerformance testing basics
Performance testing basics
 
Performance testing interview questions and answers
Performance testing interview questions and answersPerformance testing interview questions and answers
Performance testing interview questions and answers
 
Performance Engineering Basics
Performance Engineering BasicsPerformance Engineering Basics
Performance Engineering Basics
 
How to start performance testing project
How to start performance testing projectHow to start performance testing project
How to start performance testing project
 
Performance testing jmeter
Performance testing jmeterPerformance testing jmeter
Performance testing jmeter
 
An Introduction to Software Performance Engineering
An Introduction to Software Performance EngineeringAn Introduction to Software Performance Engineering
An Introduction to Software Performance Engineering
 
SAP Performance Testing Best Practice Guide v1.0
SAP Performance Testing Best Practice Guide v1.0SAP Performance Testing Best Practice Guide v1.0
SAP Performance Testing Best Practice Guide v1.0
 

Ähnlich wie Preventing Database Perfomance Issues | DB Optimizer

Sql server 2008 r2 analysis services overview whitepaper
Sql server 2008 r2 analysis services overview whitepaperSql server 2008 r2 analysis services overview whitepaper
Sql server 2008 r2 analysis services overview whitepaperKlaudiia Jacome
 
Identify SQL Tuning Opportunities
Identify SQL Tuning OpportunitiesIdentify SQL Tuning Opportunities
Identify SQL Tuning OpportunitiesCuneyt Goksu
 
openGauss - The evolution route of openGauss' AIcapabilities
openGauss - The evolution route of openGauss' AIcapabilitiesopenGauss - The evolution route of openGauss' AIcapabilities
openGauss - The evolution route of openGauss' AIcapabilitieswot chin
 
What Every Client Should Do On Their Oracle SOA Projects (article)
What Every Client Should Do On Their Oracle SOA Projects (article)What Every Client Should Do On Their Oracle SOA Projects (article)
What Every Client Should Do On Their Oracle SOA Projects (article)Revelation Technologies
 
DBA, LEVEL III TTLM Monitoring and Administering Database.docx
DBA, LEVEL III TTLM Monitoring and Administering Database.docxDBA, LEVEL III TTLM Monitoring and Administering Database.docx
DBA, LEVEL III TTLM Monitoring and Administering Database.docxseifusisay06
 
DB2 Real-Time Analytics Meeting Wayne, PA 2015 - IDAA & DB2 Tools Update
DB2 Real-Time Analytics Meeting Wayne, PA 2015 - IDAA & DB2 Tools UpdateDB2 Real-Time Analytics Meeting Wayne, PA 2015 - IDAA & DB2 Tools Update
DB2 Real-Time Analytics Meeting Wayne, PA 2015 - IDAA & DB2 Tools UpdateBaha Majid
 
Microsoft sql server analysis services multidimensional performance and opera...
Microsoft sql server analysis services multidimensional performance and opera...Microsoft sql server analysis services multidimensional performance and opera...
Microsoft sql server analysis services multidimensional performance and opera...Компания Робот Икс
 
KoprowskiT_SQLSat409_MaintenancePlansForBeginners
KoprowskiT_SQLSat409_MaintenancePlansForBeginnersKoprowskiT_SQLSat409_MaintenancePlansForBeginners
KoprowskiT_SQLSat409_MaintenancePlansForBeginnersTobias Koprowski
 
KoprowskiT_SQLSaturday409_MaintenancePlansForBeginners
KoprowskiT_SQLSaturday409_MaintenancePlansForBeginnersKoprowskiT_SQLSaturday409_MaintenancePlansForBeginners
KoprowskiT_SQLSaturday409_MaintenancePlansForBeginnersTobias Koprowski
 
What is SQL Server 2019 Standard Edition
What is SQL Server 2019 Standard EditionWhat is SQL Server 2019 Standard Edition
What is SQL Server 2019 Standard EditionSoftwareDeals
 
miniprojectreport
miniprojectreportminiprojectreport
miniprojectreportsilpa mohan
 
Bpm10gperformancetuning 476208
Bpm10gperformancetuning 476208Bpm10gperformancetuning 476208
Bpm10gperformancetuning 476208Vibhor Rastogi
 
Geek Sync | Planning a SQL Server to Azure Migration in 2021 - Brent Ozar
Geek Sync | Planning a SQL Server to Azure Migration in 2021 - Brent OzarGeek Sync | Planning a SQL Server to Azure Migration in 2021 - Brent Ozar
Geek Sync | Planning a SQL Server to Azure Migration in 2021 - Brent OzarIDERA Software
 
Remote DBA Experts 11g Features
Remote DBA Experts 11g FeaturesRemote DBA Experts 11g Features
Remote DBA Experts 11g FeaturesRemote DBA Experts
 
Product Analysis Oracle BI Applications Introduction
Product Analysis Oracle BI Applications IntroductionProduct Analysis Oracle BI Applications Introduction
Product Analysis Oracle BI Applications IntroductionAcevedoApps
 
Tips_Tricks_for_Oracle_E-Business Suite_Database_Upgrade.pdf
Tips_Tricks_for_Oracle_E-Business Suite_Database_Upgrade.pdfTips_Tricks_for_Oracle_E-Business Suite_Database_Upgrade.pdf
Tips_Tricks_for_Oracle_E-Business Suite_Database_Upgrade.pdfAkhashRamnath
 
What Every Client Should Do On Their Oracle SOA Projects (whitepaper)
What Every Client Should Do On Their Oracle SOA Projects (whitepaper)What Every Client Should Do On Their Oracle SOA Projects (whitepaper)
What Every Client Should Do On Their Oracle SOA Projects (whitepaper)Revelation Technologies
 
Exploring Oracle Database Performance Tuning Best Practices for DBAs and Deve...
Exploring Oracle Database Performance Tuning Best Practices for DBAs and Deve...Exploring Oracle Database Performance Tuning Best Practices for DBAs and Deve...
Exploring Oracle Database Performance Tuning Best Practices for DBAs and Deve...Aaron Shilo
 
Database Lifecycle Management and Cloud Management - Hands on Lab (OOW2014)
Database Lifecycle Management and Cloud Management - Hands on Lab (OOW2014)Database Lifecycle Management and Cloud Management - Hands on Lab (OOW2014)
Database Lifecycle Management and Cloud Management - Hands on Lab (OOW2014)Hari Srinivasan
 

Ähnlich wie Preventing Database Perfomance Issues | DB Optimizer (20)

Sql server 2008 r2 analysis services overview whitepaper
Sql server 2008 r2 analysis services overview whitepaperSql server 2008 r2 analysis services overview whitepaper
Sql server 2008 r2 analysis services overview whitepaper
 
Identify SQL Tuning Opportunities
Identify SQL Tuning OpportunitiesIdentify SQL Tuning Opportunities
Identify SQL Tuning Opportunities
 
openGauss - The evolution route of openGauss' AIcapabilities
openGauss - The evolution route of openGauss' AIcapabilitiesopenGauss - The evolution route of openGauss' AIcapabilities
openGauss - The evolution route of openGauss' AIcapabilities
 
What Every Client Should Do On Their Oracle SOA Projects (article)
What Every Client Should Do On Their Oracle SOA Projects (article)What Every Client Should Do On Their Oracle SOA Projects (article)
What Every Client Should Do On Their Oracle SOA Projects (article)
 
DBA, LEVEL III TTLM Monitoring and Administering Database.docx
DBA, LEVEL III TTLM Monitoring and Administering Database.docxDBA, LEVEL III TTLM Monitoring and Administering Database.docx
DBA, LEVEL III TTLM Monitoring and Administering Database.docx
 
DB2 Real-Time Analytics Meeting Wayne, PA 2015 - IDAA & DB2 Tools Update
DB2 Real-Time Analytics Meeting Wayne, PA 2015 - IDAA & DB2 Tools UpdateDB2 Real-Time Analytics Meeting Wayne, PA 2015 - IDAA & DB2 Tools Update
DB2 Real-Time Analytics Meeting Wayne, PA 2015 - IDAA & DB2 Tools Update
 
Microsoft sql server analysis services multidimensional performance and opera...
Microsoft sql server analysis services multidimensional performance and opera...Microsoft sql server analysis services multidimensional performance and opera...
Microsoft sql server analysis services multidimensional performance and opera...
 
KoprowskiT_SQLSat409_MaintenancePlansForBeginners
KoprowskiT_SQLSat409_MaintenancePlansForBeginnersKoprowskiT_SQLSat409_MaintenancePlansForBeginners
KoprowskiT_SQLSat409_MaintenancePlansForBeginners
 
KoprowskiT_SQLSaturday409_MaintenancePlansForBeginners
KoprowskiT_SQLSaturday409_MaintenancePlansForBeginnersKoprowskiT_SQLSaturday409_MaintenancePlansForBeginners
KoprowskiT_SQLSaturday409_MaintenancePlansForBeginners
 
What is SQL Server 2019 Standard Edition
What is SQL Server 2019 Standard EditionWhat is SQL Server 2019 Standard Edition
What is SQL Server 2019 Standard Edition
 
miniprojectreport
miniprojectreportminiprojectreport
miniprojectreport
 
Bpm10gperformancetuning 476208
Bpm10gperformancetuning 476208Bpm10gperformancetuning 476208
Bpm10gperformancetuning 476208
 
Geek Sync | Planning a SQL Server to Azure Migration in 2021 - Brent Ozar
Geek Sync | Planning a SQL Server to Azure Migration in 2021 - Brent OzarGeek Sync | Planning a SQL Server to Azure Migration in 2021 - Brent Ozar
Geek Sync | Planning a SQL Server to Azure Migration in 2021 - Brent Ozar
 
Remote DBA Experts 11g Features
Remote DBA Experts 11g FeaturesRemote DBA Experts 11g Features
Remote DBA Experts 11g Features
 
Product Analysis Oracle BI Applications Introduction
Product Analysis Oracle BI Applications IntroductionProduct Analysis Oracle BI Applications Introduction
Product Analysis Oracle BI Applications Introduction
 
Tips_Tricks_for_Oracle_E-Business Suite_Database_Upgrade.pdf
Tips_Tricks_for_Oracle_E-Business Suite_Database_Upgrade.pdfTips_Tricks_for_Oracle_E-Business Suite_Database_Upgrade.pdf
Tips_Tricks_for_Oracle_E-Business Suite_Database_Upgrade.pdf
 
12363 database certification
12363 database certification12363 database certification
12363 database certification
 
What Every Client Should Do On Their Oracle SOA Projects (whitepaper)
What Every Client Should Do On Their Oracle SOA Projects (whitepaper)What Every Client Should Do On Their Oracle SOA Projects (whitepaper)
What Every Client Should Do On Their Oracle SOA Projects (whitepaper)
 
Exploring Oracle Database Performance Tuning Best Practices for DBAs and Deve...
Exploring Oracle Database Performance Tuning Best Practices for DBAs and Deve...Exploring Oracle Database Performance Tuning Best Practices for DBAs and Deve...
Exploring Oracle Database Performance Tuning Best Practices for DBAs and Deve...
 
Database Lifecycle Management and Cloud Management - Hands on Lab (OOW2014)
Database Lifecycle Management and Cloud Management - Hands on Lab (OOW2014)Database Lifecycle Management and Cloud Management - Hands on Lab (OOW2014)
Database Lifecycle Management and Cloud Management - Hands on Lab (OOW2014)
 

Mehr von Michael Findling

Senior Marketing Manager: Channels & Strategic accounts
Senior Marketing Manager:  Channels & Strategic accountsSenior Marketing Manager:  Channels & Strategic accounts
Senior Marketing Manager: Channels & Strategic accountsMichael Findling
 
Spark Job Description: Development Director
Spark Job Description: Development DirectorSpark Job Description: Development Director
Spark Job Description: Development DirectorMichael Findling
 
100 Things to Watch in 2011 from JWT
100 Things to Watch in 2011 from JWT100 Things to Watch in 2011 from JWT
100 Things to Watch in 2011 from JWTMichael Findling
 
Social Media Marketing Metrics That Matter
Social Media Marketing Metrics That MatterSocial Media Marketing Metrics That Matter
Social Media Marketing Metrics That MatterMichael Findling
 
Tutorpedia Foundation Silent Auction Item List – February 23, 2011
Tutorpedia Foundation Silent Auction Item List – February 23, 2011Tutorpedia Foundation Silent Auction Item List – February 23, 2011
Tutorpedia Foundation Silent Auction Item List – February 23, 2011Michael Findling
 
Website Marketing Seminar 2009
Website Marketing Seminar 2009Website Marketing Seminar 2009
Website Marketing Seminar 2009Michael Findling
 
Reducing Total Cost of Ownership for Database and Developer Software
Reducing Total Cost of Ownership for Database and Developer SoftwareReducing Total Cost of Ownership for Database and Developer Software
Reducing Total Cost of Ownership for Database and Developer SoftwareMichael Findling
 
Performance Optimization: Incorporating Database and Code Optimzitation Into ...
Performance Optimization: Incorporating Database and Code Optimzitation Into ...Performance Optimization: Incorporating Database and Code Optimzitation Into ...
Performance Optimization: Incorporating Database and Code Optimzitation Into ...Michael Findling
 
Reasons to migrate from Delphi 7 to Delphi 2009
Reasons to migrate from Delphi 7  to Delphi 2009Reasons to migrate from Delphi 7  to Delphi 2009
Reasons to migrate from Delphi 7 to Delphi 2009Michael Findling
 
Migrating from CA AllFusionTM ERwin® Data Modeler to ER/Studio
Migrating from CA AllFusionTM ERwin® Data Modeler to ER/StudioMigrating from CA AllFusionTM ERwin® Data Modeler to ER/Studio
Migrating from CA AllFusionTM ERwin® Data Modeler to ER/StudioMichael Findling
 
Java Optimization For Faster Code & Better Results | J Optimizer
Java Optimization For Faster Code & Better Results | J OptimizerJava Optimization For Faster Code & Better Results | J Optimizer
Java Optimization For Faster Code & Better Results | J OptimizerMichael Findling
 
Migrating from CA AllFusionTM ERwin® Data Modeler to ER/Studio®
Migrating from CA AllFusionTM ERwin® Data Modeler to ER/Studio®Migrating from CA AllFusionTM ERwin® Data Modeler to ER/Studio®
Migrating from CA AllFusionTM ERwin® Data Modeler to ER/Studio®Michael Findling
 
Top Ten Reasons to Upgrade from Delphi 7
Top Ten Reasons to Upgrade from Delphi 7Top Ten Reasons to Upgrade from Delphi 7
Top Ten Reasons to Upgrade from Delphi 7Michael Findling
 
Database Tools and Developer Software Licence Management
Database Tools and Developer Software Licence ManagementDatabase Tools and Developer Software Licence Management
Database Tools and Developer Software Licence ManagementMichael Findling
 
Database Design and Data Modeling | PowerDesigner to All Access
Database Design and Data Modeling | PowerDesigner to All AccessDatabase Design and Data Modeling | PowerDesigner to All Access
Database Design and Data Modeling | PowerDesigner to All AccessMichael Findling
 
Build Windows Applications Fast | Delphi Prism
Build Windows Applications Fast | Delphi PrismBuild Windows Applications Fast | Delphi Prism
Build Windows Applications Fast | Delphi PrismMichael Findling
 
Develop Enterprise Java Applications | JBuilder
Develop Enterprise Java Applications | JBuilderDevelop Enterprise Java Applications | JBuilder
Develop Enterprise Java Applications | JBuilderMichael Findling
 
Develop Ruby Applications Fast | TubroRuby
Develop Ruby Applications Fast | TubroRubyDevelop Ruby Applications Fast | TubroRuby
Develop Ruby Applications Fast | TubroRubyMichael Findling
 
Develop Ruby Applications Fast | TubroRuby
Develop Ruby Applications Fast | TubroRubyDevelop Ruby Applications Fast | TubroRuby
Develop Ruby Applications Fast | TubroRubyMichael Findling
 
Business Process Modeling | Embarcadero Technologies EA/Studio
Business Process Modeling | Embarcadero Technologies EA/StudioBusiness Process Modeling | Embarcadero Technologies EA/Studio
Business Process Modeling | Embarcadero Technologies EA/StudioMichael Findling
 

Mehr von Michael Findling (20)

Senior Marketing Manager: Channels & Strategic accounts
Senior Marketing Manager:  Channels & Strategic accountsSenior Marketing Manager:  Channels & Strategic accounts
Senior Marketing Manager: Channels & Strategic accounts
 
Spark Job Description: Development Director
Spark Job Description: Development DirectorSpark Job Description: Development Director
Spark Job Description: Development Director
 
100 Things to Watch in 2011 from JWT
100 Things to Watch in 2011 from JWT100 Things to Watch in 2011 from JWT
100 Things to Watch in 2011 from JWT
 
Social Media Marketing Metrics That Matter
Social Media Marketing Metrics That MatterSocial Media Marketing Metrics That Matter
Social Media Marketing Metrics That Matter
 
Tutorpedia Foundation Silent Auction Item List – February 23, 2011
Tutorpedia Foundation Silent Auction Item List – February 23, 2011Tutorpedia Foundation Silent Auction Item List – February 23, 2011
Tutorpedia Foundation Silent Auction Item List – February 23, 2011
 
Website Marketing Seminar 2009
Website Marketing Seminar 2009Website Marketing Seminar 2009
Website Marketing Seminar 2009
 
Reducing Total Cost of Ownership for Database and Developer Software
Reducing Total Cost of Ownership for Database and Developer SoftwareReducing Total Cost of Ownership for Database and Developer Software
Reducing Total Cost of Ownership for Database and Developer Software
 
Performance Optimization: Incorporating Database and Code Optimzitation Into ...
Performance Optimization: Incorporating Database and Code Optimzitation Into ...Performance Optimization: Incorporating Database and Code Optimzitation Into ...
Performance Optimization: Incorporating Database and Code Optimzitation Into ...
 
Reasons to migrate from Delphi 7 to Delphi 2009
Reasons to migrate from Delphi 7  to Delphi 2009Reasons to migrate from Delphi 7  to Delphi 2009
Reasons to migrate from Delphi 7 to Delphi 2009
 
Migrating from CA AllFusionTM ERwin® Data Modeler to ER/Studio
Migrating from CA AllFusionTM ERwin® Data Modeler to ER/StudioMigrating from CA AllFusionTM ERwin® Data Modeler to ER/Studio
Migrating from CA AllFusionTM ERwin® Data Modeler to ER/Studio
 
Java Optimization For Faster Code & Better Results | J Optimizer
Java Optimization For Faster Code & Better Results | J OptimizerJava Optimization For Faster Code & Better Results | J Optimizer
Java Optimization For Faster Code & Better Results | J Optimizer
 
Migrating from CA AllFusionTM ERwin® Data Modeler to ER/Studio®
Migrating from CA AllFusionTM ERwin® Data Modeler to ER/Studio®Migrating from CA AllFusionTM ERwin® Data Modeler to ER/Studio®
Migrating from CA AllFusionTM ERwin® Data Modeler to ER/Studio®
 
Top Ten Reasons to Upgrade from Delphi 7
Top Ten Reasons to Upgrade from Delphi 7Top Ten Reasons to Upgrade from Delphi 7
Top Ten Reasons to Upgrade from Delphi 7
 
Database Tools and Developer Software Licence Management
Database Tools and Developer Software Licence ManagementDatabase Tools and Developer Software Licence Management
Database Tools and Developer Software Licence Management
 
Database Design and Data Modeling | PowerDesigner to All Access
Database Design and Data Modeling | PowerDesigner to All AccessDatabase Design and Data Modeling | PowerDesigner to All Access
Database Design and Data Modeling | PowerDesigner to All Access
 
Build Windows Applications Fast | Delphi Prism
Build Windows Applications Fast | Delphi PrismBuild Windows Applications Fast | Delphi Prism
Build Windows Applications Fast | Delphi Prism
 
Develop Enterprise Java Applications | JBuilder
Develop Enterprise Java Applications | JBuilderDevelop Enterprise Java Applications | JBuilder
Develop Enterprise Java Applications | JBuilder
 
Develop Ruby Applications Fast | TubroRuby
Develop Ruby Applications Fast | TubroRubyDevelop Ruby Applications Fast | TubroRuby
Develop Ruby Applications Fast | TubroRuby
 
Develop Ruby Applications Fast | TubroRuby
Develop Ruby Applications Fast | TubroRubyDevelop Ruby Applications Fast | TubroRuby
Develop Ruby Applications Fast | TubroRuby
 
Business Process Modeling | Embarcadero Technologies EA/Studio
Business Process Modeling | Embarcadero Technologies EA/StudioBusiness Process Modeling | Embarcadero Technologies EA/Studio
Business Process Modeling | Embarcadero Technologies EA/Studio
 

Kürzlich hochgeladen

Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?Antenna Manufacturer Coco
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsJoaquim Jorge
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Enterprise Knowledge
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CVKhem
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 

Kürzlich hochgeladen (20)

Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 

Preventing Database Perfomance Issues | DB Optimizer

  • 1. InBrief Embarcdero DB Optimizer An InBrief paper by Bloor Research Author : Philip Howard Publish date : April 2009
  • 2. Most database performance tools focus on what is happening in the database and fixing it, rather than preventing problems from occurring in the first place. Conversely, this is DB Optimizer’s strength. Philip Howard
  • 3. Embarcadero DB Optimizer page 1 Executive summary In general it is a good idea to get the most out of your investments, regardless of whether these are IT-based or not. Within IT, one area where it is commonplace to not get the most out of your investment is from your databases. This is primarily because they do not perform with optimal efficiency, with the result that service levels are reduced and the business suffers. Historically, the simple answer to such problems has been to increase the power of the hardware supporting the database but this is an expensive solution at the best of times and, in the midst of a recession, is likely to be unappealing. A preferable, and more cost effective, solution is to detect and cure performance problems through software and, better yet, prevent such problems from occurring in the first place. This is what Embarcadero DB Optimizer is designed to do. Fast facts • Tuning, which is available for all supported databases, includes support for hints, SQL rewrites and index The biggest cause of database performance is poorly analysis and there are also batch capabilities for DML written SQL and this is what DB Optimizer focuses on. It is statements, stored procedures and so on. not, however, a general-purpose 24/7 database performance monitoring tool: Embarcadero’s Performance • Ease of use makes DB Optimizer particularly suitable for Center offers those sorts of capabilities. Instead, DB any user interested in the prevention of poor-performing Optimizer is specifically focused on profiling, reporting and SQL as a part of the development lifecycle. tuning SQL so that it is optimised for database performance. These capabilities come in handy when • A major concern within performance management leveraged during performance fire drills in production and, environments is to avoid finger pointing. Thus it is when DB Optimizer is employed during the development important to be able to bridge the developer/DBA divide. lifecycle, costly production issues can be prevented in a We are therefore pleased that Embarcadero has proactive manner. introduced the related product, J Optimizer, which provides Java optimisation that can be used in conjunction Key findings with DB Optimizer. In the opinion of Bloor Research, the following represent the The bottom line key facts of which prospective users should be aware: As the saying goes: “prevention is better than cure”. Most • DB Optimizer is a cross-platform tool that supports database performance tools focus on what is happening in Microsoft, Sybase ASE, Oracle and DB2 LUW the database and fixing it, rather than preventing problems environments. We would like to see the company extend from occurring in the first place. Conversely, this is DB this capability to MySQL. Optimizer’s strength. What may be an issue is that this is a tool for fixing the problems of the database administrator • DB Optimizer supports continuous profiling (the discovery that will actually be deployed, when used preemptively, by of bottlenecks) within a configurable span of time, developers. In environments where these communities work together with reporting and snapshotting capabilities so closely together that will not be a problem but there are that you can diagnose and prioritise remedial efforts and companies where that is not the case. On the other hand, the SQL tuning. use of tools such as DB Optimizer (particularly when used in conjunction with J Optimizer) may help to draw these groups • We are pleased to see that the product uses wait time together to work in a more collaborative fashion. In either measurements as well as conventional CPU, I/O case DB Optimizer is certainly worth serious consideration. monitoring and so forth. © 2009 Bloor Research A Bloor InBrief paper
  • 4. Embarcadero DB Optimizer page 2 The product DB Optimizer was released in July 2008 and is in its second major release, version 1.5. It is a desktop tool that runs under Windows (2003 and later) or Linux (Red Hat and SUSE) and requires the relevant Sun Java 2 Standard Edition. DB Optimizer includes Embarcadero PowerSQL Professional Edition which, at the time of writing, is in version 1.1. Databases supported include Oracle 8i to 11g, Sybase ASE 12.5 to 15.0 (note: there were no versions 13 or 14), Microsoft SQL Server 2003, 2005 and 2008 and IBM DB2 for LUW (that is, for distributed rather than mainframe platforms) version 8.0 through 9.0. The company has not yet introduced support for versions of DB2 later than 9.0. The product is fully Unicode compliant. In terms of functionality DB Optimizer essentially does three things: profiling, reporting and tuning. We shall consider Figure 1: Profiled performance data using DB Optimizer each of these in turn. While you can visually inspect and compare the performance Profiling of different SQL statements, and while you can easily change the time intervals you are inspecting, you can also see Profiling is the process of discovering performance aggregated results over a period of time. In particular, “top bottlenecks caused by poor-performing SQL. There is a ten” listings of the most onerous SQL statements are useful, particular emphasis on discovering problems before they especially when combined with frequency of use statistics. arise, during the development phase, rather than leaving DB Optimizer allows you to focus on the statements with the them to production where they become significantly more most activity and quickly diagnose them in order to ensure costly to fix. Thus you can profile (and tune) a single stored you are putting your efforts into the SQL statements that will routine whenever required so that you can see how efficient yield the greatest performance benefits for your database. it is. This will particularly suit agile programming environments but would also make sense more generally. Finally under the heading of Reporting, the software Alternatively, the product also supports continuous profiling. provides facilities whereby the Explain Plan for each SQL It is also worth noting that there is a command line API that statement can be calculated. This is important because it allows profiling to be initiated from a remote location. allows you to optimise the execution of the SQL. Note that the Explain Plan is worked out without actually running the Of course, in development profiling is not a panacea. Many query and it is presented graphically as a tree diagram. If applications will already be written or have been licensed used in conjunction with the product’s tuning capabilities from third parties, which may result in SQL-related then you can also calculate the costs associated with each performance problems. To support these environments DB Explain Plan. Optimizer provides the facility to profile an entire database instance so that you can look at the relevant details (see next Tuning section). In order to ensure negligible overhead on the target database, DB Optimizer utilises sampling, which captures As with profiling, you can tune individual SQL statements or long running or frequently executed queries by sampling you can work in batch mode. You can tune one statement at a database system tables and intelligently aggregating and time (either as you write it or after you discover it while analysing the data in real time. profiling) and simply drop the SQL into the tuner as illustrated in Figure 2 or you can tune batches of DML statements, and However you go about it, the resulting snapshots, with all SQL files, which will be parsed and tuned in bulk. their associated data and metadata, can be saved for subsequent sharing and analysis, as appropriate. Reporting As you would expect from a tool of this sort, DB Optimizer provides a range of graphical representations of the data it has profiled, of which Figure 1 provides a typical example that should be fairly self-explanatory. Details are presented of CPU, I/O and other sorts of wait activity and you can drill down into further detail either in terms of the wait times being analysed or the SQL statement that you are analysing; in the latter case so that you can see the full SQL text together with the relevant details for each line of that statement. Figure 2: SQL tuning using DB Optimizer © 2009 Bloor Research A Bloor InBrief paper
  • 5. Embarcadero DB Optimizer page 3 The product The tuner suggests hints, SQL rewrites, and indexes in order Third party applications to help you speed up your SQL code, which is accomplished via a single button click: All the foregoing discussions have been around software that is developed in-house. However, it is commonly the • Hints act as a direction finder for your code in terms of case that companies use packaged applications in many telling the database which turns to take in order to stay on instances and it is by no means unknown for these packages the quickest path. to generate very poorly performing SQL. Of course, you can use DB Optimizer to profile the SQL so that you can • SQL rewrites actually adjust your code to avoid common demonstrate to your supplier how poor their SQL is but that mistakes such as cartesian products and suppressed may not get you every far, or not very quickly, so indexes that can kill database performance. Embarcadero provides an additional facility known as a stored outline. The way that this works is that after running • Index analysis dives into the database itself and looks for a tuning job you can generate the DDL to create a stored performance opportunities that could speed up the outline for the best execution plan. You then insert this into retrieval of result sets. the database so that SQL statements from the application will follow this plan rather than the one it did originally. In addition to tuning per se, DB Optimizer also provides what might be described as pre-emptive tuning capabilities. For example, as we have noted, DB Optimizer embeds Embarcadero Rapid SQL Developer, which is a SQL IDE (integrated development environment) that is illustrated in Figure 3. In this example, the code assist features of the product are illustrated, providing you with context- appropriate object suggestions. This is generated as you type and thus provides dynamic syntactic and semantic error checking. Code assist is available even when you are not connected to the database. Another major feature, apart from support for hints, is Quick Fixes, as illustrated in Figure 4, whereby suggestions that accord with best practice (as opposed to out and out errors) are put before you, based on your own customisation of the Figure 3: Embarcadero Rapid SQL Developer tool: you decide, for example, the subset of hints to be considered for use. Other tuning features include support for resolving bind variables, the ability to tune SQL extracted from a procedure, and index analysis, though in the case of indexes there is no facility to automate the creation of indexes. To be fair, while this is a common in-database feature it is not usually present in third party performance tools, though we see no reason why a direct link to the database’s software should not be implemented. Beyond these features these is also a visual text differencing tool that will allow you to compare different SQL statements with automatic highlighting of any differences between them. Figure 4: Quick Fix support in DB Optimizer © 2009 Bloor Research A Bloor InBrief paper
  • 6. Embarcadero DB Optimizer page 4 The vendor Embarcadero Technologies was founded in 1993 and its first Embarcadero floated on NASDAQ in 2000 but went private product, Embarcadero Rapid SQL, was a Sybase again in a $200m deal in 2007. The company has offices in development product that quickly expanded to support the United States, Canada, Brazil (CodeGear only), France, Microsoft SQL Server. From there the company increasingly Germany, Russia, the UK, Australia, Japan, Singapore and specialised in the data management arena with products China. In general, in North America the company’s primary such as Embarcadero DBArtisan and, more recently, Power approach is via direct sales (70%) whereas in the rest of the SQL, J Optimizer and Change Manager as well as the ER/ world it is mostly via channel partners (70%). It has partners Studio modeling product. In effect, the company markets all across Europe, in the Far East, India, Asia–Pacific, and in sorts of products for supporting database and application both Mexico and South America. environments, including the design, development and management of databases, the movement of data to and While we have yet to see much in terms of integration from such databases, and the performance management between the data and application areas (DB Optimizer and J and testing of databases, applications, and overall systems. Optimizer being an exception) in terms of products the The one thing that Embarcadero has not done historically is company has introduced a new approach to licensing that to provide a database of its own. spans the product sets. This is called All-Access and effectively offers a toolbox style approach. Most In June 2008 Embarcadero acquired CodeGear, which was Embarcadero users probably focus on using just one or two itself split out from Borland in 2006, containing all that of its products. Although they might look to use some of the company’s tools that were not related to application lifecycle company’s other tools once in a while that does not merit management, upon which Borland is now focused. As a part taking out a full license. What All-Access offers is a range of of that acquisition, Embarcadero gained the Delphi, JBuilder tools for not much more than the cost of the licenses of the (and variants such as C#Builder) and RAD Studio couple of tools you are already using, but providing much development environments and associated products. During more flexibility when you, from time to time, want access to the course of 2009 we are likely to see the first instances of other technologies. integration between the CodeGear and Embarcadero product sets, such as the embedding of ER/Studio within relevant Embarcadero web addresses: development environments. www.embarcadero.com One additional product that Embarcadero has acquired with www.codegear.com this purchase is the InterBase database management system. It remains to be seen what Embarcadero, which has traditionally been agnostic about the databases products it supports, does with respect to InterBase. © 2009 Bloor Research A Bloor InBrief paper
  • 7. Embarcadero DB Optimizer page 5 Summary Embarcadero is established as perhaps the leading Further Information independent tools vendor for database management. Viewed within this context DB Optimizer is a significant addition to Further information about this subject is available from the company’s portfolio of solutions and we expect to see http://www.BloorResearch.com/update/1027 significant uptake of the product. However, DB Optimizer is perhaps best suited for use by developers rather than in the database environment per se. We therefore expect that Embarcadero will also be promoting this product to its recently acquired CodeGear customers, particularly in conjunction with J Optimizer. This should make a compelling combination. © 2009 Bloor Research A Bloor InBrief paper
  • 8. Bloor Research overview About the author Bloor Research has spent the last decade Philip Howard developing what is recognised as Europe’s Research Director - Data Management leading independent IT research organisation. With its core research activities underpinning Philip started in the computer industry a range of services, from research and way back in 1973 and has variously worked consulting to events and publishing, Bloor as a systems analyst, programmer and Research is committed to turning knowledge salesperson, as well as in marketing and into client value across all of its products product management, for a variety of and engagements. Our objectives are: companies including GEC Marconi, GPT, Philips Data Systems, Raytheon and NCR. • Save clients’ time by providing comparison and analysis that is clear and succinct. After a quarter of a century of not being his own boss Philip set up his own • Update clients’ expertise, enabling company in 1992 and his first client was them to have a clear understanding Bloor Research (then ButlerBloor), with of IT issues and facts and validate Philip working for the company as an existing technology strategies. associate analyst. His relationship with Bloor Research has continued since that • Bring an independent perspective, time and he is now Research Director minimising the inherent risks of product focussed on Data Management. Data selection and decision-making. Management refers to the management, movement, governance and storage of • Communicate our visionary data and involves diverse technologies that perspective of the future of IT. include (but are not limited to) databases and data warehousing, data integration Founded in 1989, Bloor Research is one of (including ETL, data migration and data the world’s leading IT research, analysis federation), data quality, master data and consultancy organisations—distributing management, metadata management, research and analysis to IT user and vendor and log and event management. Philip organisations throughout the world via also tracks spreadsheet management online subscriptions, tailored research and complex event processing. services and consultancy projects. In addition to the numerous reports Philip has written on behalf of Bloor Research, Philip also contributes regularly to www. IT-Director.com and www.IT-Analysis. com and was previously the editor of both “Application Development News” and “Operating System News” on behalf of Cambridge Market Intelligence (CMI). He has also contributed to various magazines and published a number of reports published by companies such as CMI and The Financial Times. Philip speaks regularly at conferences and other events throughout Europe and North America. Away from work, Philip’s primary leisure activities are canal boats, skiing, playing Bridge (at which he is a Life Master), dining out and walking Benji the dog.
  • 9. Copyright & disclaimer This document is copyright © 2009 Bloor Research. No part of this publication may be reproduced by any method whatsoever without the prior consent of Bloor Research. Due to the nature of this material, numerous hardware and software products have been mentioned by name. In the majority, if not all, of the cases, these product names are claimed as trademarks by the companies that manufacture the products. It is not Bloor Research’s intent to claim these names or trademarks as our own. Likewise, company logos, graphics or screen shots have been reproduced with the consent of the owner and are subject to that owner’s copyright. Whilst every care has been taken in the preparation of this document to ensure that the information is correct, the publishers cannot accept responsibility for any errors or omissions.
  • 10. 2nd Floor, 145–157 St John Street LONDON, EC1V 4PY, United Kingdom Tel: +44 (0)207 043 9750 Fax: +44 (0)207 043 9748 Web: www.BloorResearch.com email: info@BloorResearch.com