Join IIUG
 for   
 

Informix News
18 Nov 13 - ZDNet - Top 20 mobile skills in demand... Read
09 Sep 13 - telecompaper - Shaspa and Tatung have shown a new smart home platform at Ifa in Berlin. Powered by the IBM Informix software... Read
06 Sep 13 - IBM data magazine - Mission Accomplished - Miami, Florida will be the backdrop for the 2014 IIUG Informix Conference... Read
01 Feb 13 - IBM Data Magazine - Are your database backups safe? Lester Knutsen (IBM Champion) writes about database back up safety using "archecker"... Read
14 Nov 12 - IBM - IBM's Big Data For Smart Grid Goes Live In Texas... Read
3 Oct 12 - The Financial - IBM and TransWorks Collaborate to Help Louisiana-Pacific Corporation Achieve Supply Chain Efficiency... Read
28 Aug 12 - techCLOUD9 - Splunk kicks up a SaaS Storm... Read
10 Aug 12 - businessCLOUD9 - Is this the other half of Cloud monitoring?... Read
3 Aug 12 - IBM data management - Supercharging the data warehouse while keeping costs down IBM Informix Warehouse Accelerator (IWA) delivers superior performance for in-memory analytics processing... Read
2 Aug 12 - channelbiz - Oninit Group launches Pay Per Pulse cloud-based service... Read
28 May 12 - Bloor - David Norfolk on the recent Informix benchmark "pretty impressive results"... Read
23 May 12 - DBTA - Informix Genero: A Way to Modernize Informix 4GL Applications... Read
9 Apr 12 - Mastering Data Management - Upping the Informix Ante: Advanced Data Tools... Read
22 Mar 12 - developerWorks - Optimizing Informix database access... Read
14 Mar 12 - BernieSpang.com - International Informix User Group set to meet in San Diego... Read
1 Mar 12 - IBM Data Management - IIUG Heads West for 2012 - Get ready for sun and sand in San Diego... Read
1 Mar 12 - IBM Data Management - Running Informix on Solid-State Drives.Speed Up Database Access... Read
26 Feb 12 - BernieSpan.com - Better results, lower cost for a broad set of new IBM clients and partners... Read
24 Feb 12 - developerWorks - Informix Warehouse Accelerator: Continuous Acceleration during Data Refresh... Read
6 Feb 12 - PRLOG - Informix port delivers unlimited database scalability for popular SaaS application ... Read
2 Feb 12 - developerWorks - Loading data with the IBM Informix TimeSeries Plug-in for Data Studio... Read
1 Feb 12 - developerWorks - 100 Tech Tips, #47: Log-in to Fix Central... Read
13 Jan 12 - MC Press online - Informix Dynamic Server Entices New Users with Free Production Edition ... Read
11 Jan 12 - Computerworld - Ecologic Analytics and Landis+Gyr -- Suitors Decide to Tie the Knot... Read
9 Jan 12 - planetIDS.com - DNS impact on Informix / Impacto do DNS no Informix... Read
8 Sep 11 - TMCnet.com - IBM Offers Database Solution to Enable Smart Meter Data Capture... Read
1 Aug 11 - IBM Data Management Magazine - IIUG user view: Happy 10th anniversary to IBM and Informix... Read
8 Jul 11 - Database Trends and Applications - Managing Time Series Data with Informix... Read
31 May 11 - Smart Grid - The meter data management pitfall utilities are overlooking... Read
27 May 11 - IBM Data Management Magazine - IIUG user view: Big data, big time ( Series data, warehouse acceleration, and 4GLs )... Read
16 May 11 - Business Wire - HiT Software Announces DBMoto for Enterprise Integration, Adds Informix. Log-based Change Data Capture... Read
21 Mar 11 - Yahoo! Finance - IBM and Cable&Wireless Worldwide Announce UK Smart Energy Cloud... Read
14 Mar 11 - MarketWatch - Fuzzy Logix and IBM Unveil In-Database Analytics for IBM Informix... Read
11 Mar 11 - InvestorPlace - It's Time to Give IBM Props: How many tech stocks are up 53% since the dot-com boom?... Read
9 Mar 11 - DBTA - Database Administration and the Goal of Diminishing Downtime... Read
2 Feb 11 - DBTAs - Informix 11.7 Flexible Grid Provides a Different Way of Looking at Database Servers... Read
27 Jan 11 - exactsolutions - Exact to Add Informix Support to Database Replay, SQL Monitoring Solutions... Read
25 Jan 11 - PR Newswire - Bank of China in the UK Works With IBM to Become a Smarter, Greener Bank... Read
12 Oct 10 - Database Trends and Applications - Informix 11.7: The Beginning of the Next Decade of IBM Informix... Read
20 Sep 10 - planetIDS.com - ITG analyst paper: Cost/Benefit case for IBM Informix as compared to Microsoft SQL Server... Read
20 Jul 10 - IBM Announcements - IBM Informix Choice Edition V11.50 helps deploy low-cost scalable and reliable solutions for Apple Macintosh and Microsoft Windows... Read
20 Jul 10 - IBM Announcements - Software withdrawal: Elite Support for Informix Ultimate-C Edition... Read
24 May 10 - eWeek Europe - IBM Supplies Database Tech For EU Smart Grid... Read
23 May 10 - SiliconIndia - IBM's smart metering system allows wise use of energy... Read
21 May 10 - CNET - IBM to help people monitor energy use... Read
20 May 10 - ebiz - IBM Teams With Hildebrand To Bring Smart Metering To Homes Across Britain... Read
19 May 10 - The New Blog Times - Misurare il consumo energetico: DEHEMS è pronto... Read
19 May 10 - ZDNet - IBM software in your home? Pact enables five-city smart meter pilot in Europe... Read
17 March 10 - ZDNet (blog) David Morgenstern - TCO: New research finds Macs in the enterprise easier, cheaper to manage than... Read
17 March 2010 - Virtualization Review - ...key components of Big Blue's platform to the commercial cloud such as its WebSphere suite of application ser vers and its DB2 and Informix databases... Read
10 February 2010 - The Wall Street Journal - International Business Machines is expanding an initiative to win over students and professors on its products. How do they lure the college crowd?... Read


End of Support Dates

IIUG on Facebook IIUG on Twitter

[ View Thread ] [ Post Response ] [ Return to Index ] [ Read Prev Msg ] [ Read Next Msg ]

IDS Forum

Re: index updates

Posted By: Khaled Bentebal
Date: Thursday, 17 March 2005, at 4:55 a.m.

In Response To: RE: index updates (Chakravarthy Pathri )

Hi,

There is no way to estimate the response time since having the extra index
will push the engine to update it (update the btree) every time an
update/delete/insert is executed. At on point in time, adding a element
(item) to an index will be fast if the engine does not need to rebalance the
btree, but at certain time the engine will have to rebalance the btree and
will take longer. It also depends on the depth of the btree (number of
levels) and the type of the data that btree contains; the more rows you have
the longer it takes to update the btree.
So you cannot count on a linear extention of time if you add one index.

Remember, having an extra index might help a certain query or queries, but
might degrade the performance of some other parts of the applications that
contain a lot of insert/delete/update statements since the extra index will
have to be updated. Moreover, the extra index might also contaminate other
selects since the optimizer will have to consider this extra index if
present and the optimized will change not always for the best path (even
though in general we suppose that the optimizer will find the best possible
path).

A good advice is to start by looking at the SQL statement that causes
performance problems and try to analyse it and rewrite it if possible before
considering adding an extra index.

As I said in a previous mail, the indexes will get updated along the sql
statement (UPDATE/INSERT/DELETE) sequentially in the order of the indexes
for that tables. But as Keith said in one of the mails included, this does
not matter and in is not important since the sum of the index updates is an
integral part of the SQL statement itself, and if on fails, the whole thing
will fail.

Regards,

Khaled Bentebal
ConsultiX
Tél: 33 (0) 1 39 72 17 00
Fax: 33 (0) 1 39 72 17 01
Mobile: 33 (0) 6 07 78 41 97
Email: khaled.bentebal@consult-ix.fr
Site Web: http://www.consult-ix.fr

----- Original Message -----
From: "Chakravarth...." <pcdudyala@yahoo.com>
To: <ids@iiug.org>
Sent: Thursday, March 17, 2005 6:27 AM
Subject: RE: index updates [4529]


> Generally people percieve that by adding additional indexes, the response
times would go up. This is true but what would be the imapact on response
times.Is there any method of of calculating the response times by adding
additional indexes.
> Eg:
> Transaction T1(insert) using index I1 responds at r1. When the same
transaction with additional index I2, what would be the response time?. Is
there any method to estimate the
> T1 response time.
>
>
> Bye.
>
> "Simmons, Keith" <keith.simmons@office2office.biz> wrote:
> Of course the indexes will be updated automatically, immediately and with
> any insert, amend or delete. The DBS would be totally unusable otherwise
!!!
> Update Statistics only allows the engine to determine the number of
records
> in a table, or the distribution of values within a column. These values
are
> used to determine the best index to use to fulfil a query.
> Not sure whether the index updates happen serially or in parallel, could
> depend on the fragmentation of the table and whether the indexes are
> detached or not. Not sure it really matters, if any part of the update
fails
> the whole update will fail and all changes will rollout.
> Why do you ask?
>
> Keith
>
> -> -----Original Message-----
> -> From: Mohan, Krishna [mailto:krishna.mohan@fmr.com]
> -> Sent: Monday, March 14, 2005 8:32 AM
> -> To: ids@iiug.org
> -> Subject: RE: index updates [4490]
> ->
> ->
> -> When you run update/delete/inserts on your table indexes will not be
> -> updated automatically in Informix.
> -> You will have to run update statistics command (for command usage see
> -> SQL reference guide) on the target table or Database.
> ->
> -> Normally DBA's run update statistics on database/Table
> -> periodically(weekly/monthly..etc).
> ->
> -> Thanks,
> ->
> -> Krishna Mohan
> -> Fidelity India.
> ->
> ->
> -> Any comments or statements made in this email are not
> -> necessarily those
> -> of Fidelity Business Services India Pvt. Ltd. or any of the Fidelity
> -> Investments group companies. The information transmitted is intended
> -> only for the person or entity to which it is addressed and
> -> may contain
> -> confidential and/or privileged material. If you have received this in
> -> error, please contact the sender and delete the material from any
> -> computer. All e-mails sent from or to Fidelity Business
> -> Services India
> -> Pvt. Ltd. may be subject to our monitoring procedures.
> ->
> ->
> ->
> -> -----Original Message-----
> -> From: PARAMESHWAR.... [mailto:pcdudyala@yahoo.com]
> -> Sent: Monday, March 14, 2005 11:45 AM
> -> To: ids@iiug.org
> -> Subject: index updates [4489]
> ->
> ->
> -> Hi,
> -> If i have several indexes on a table and i perform a update on the
> -> table, does
> -> all the indexes get updated parallely or they get updated
> -> one after the
> -> other(
> -> sequentially).
> ->
> ->
> ->
> -> Bye,
> ->
> ->
>
>
****************************************************************************
******
> This message is sent in strict confidence for the addressee only. It may
> contain legally privileged information. The contents are not to be
disclosed
> to anyone other than the addressee. Unauthorised recipients are requested
> to preserve this confidentiality and to advise the sender immediately of
any
> error in transmission.
> This footnote also confirms that this email message has been swept for the
> presence of computer viruses, however we cannot guarantee that this
message
> is free from such problems.
>
****************************************************************************
******
>
>
>
>
> __________________________________________________
> Do You Yahoo!?
> Tired of spam? Yahoo! Mail has the best spam protection around
> http://mail.yahoo.com
>
>

Messages In This Thread

  • index updates
    PARAMESHWAR PATHRI -- Monday, 14 March 2005, at 1:15 a.m.
    • RE: index updates
      Mohan, Krishna -- Monday, 14 March 2005, at 3:32 a.m.
      • RE: index updates
        Simmons, Keith -- Monday, 14 March 2005, at 5:50 a.m.
        • RE: index updates
          Chakravarthy Pathri -- Thursday, 17 March 2005, at 12:27 a.m.
          • Re: index updates
            Khaled Bentebal -- Thursday, 17 March 2005, at 4:55 a.m.
          • RE: index updates
            ART KAGEL, BLOOMBERG/ 731 LEXIN -- Thursday, 17 March 2005, at 9:00 a.m.
      • Re: index updates
        Jack Parker -- Monday, 14 March 2005, at 6:14 a.m.

[ View Thread ] [ Post Response ] [ Return to Index ] [ Read Prev Msg ] [ Read Next Msg ]

IDS Forum is maintained by Administrator with WebBBS 5.12.