Save 
Join IIUG
 for   
 

Informix News
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


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

SAP Mix

RE: 32 GB per dbspace limitation

Posted By:
Date:

You are absolutely right!

-----Original Message-----
From: ERNST,CHRIS.... [mailto:christoph_ernst@hp.com]
Sent: dinsdag 8 april 2003 8:57
To: sapmix@iiug.org
Subject: RE: 32 GB per dbspace limitation [98]


Hi,

if you create a copy table, you don't need to drop the indexes in your
original ( especially if they are attached ). That's a waste of time as you
drop the table eventually anyway.
I usually use sapdba to have the scripts for the reorg generated ( not
executed ). I than change the fragmented clause manually and execute the
scripts. This way, you easily have the views script ready as well.

Christoph



-----Original Message-----
From: Tseng, Luke [mailto:Luke.Tseng@BancTec.com]
Sent: Monday, April 07, 2003 6:32 PM
To: sapmix@iiug.org
Subject: RE: 32 GB per dbspace limitation [95]


Marco,

I did use method 1 & 2 to fragment large tables, size >24GB, and it took 3+
hours
to finish on our production system. I would like to learn more about your
quick way, using "ipload and piping the data", please advise me where I can
find more information about it and why it limited to tables without BLOBS
fields? I'm having trouble to fragment CDCLS table which have byte field
(it'll take > 12 hours to fragment 24GB size). Your help will be my highly
appreciation.

Luke

-----Original Message-----
From: Krijt, Marco [mailto:Marco.Krijt@VendexKBB-ITS.nl]
Sent: Monday, April 07, 2003 1:22 AM
To: sapmix@iiug.org
Subject: RE: 32 GB per dbspace limitation [94]


You can use more options:

Not quick:

run dbschema;
drop index <tableindexes>;
alter table * fragment by round robin in <dbspace1>, <dbspace2>......;
create indexes in <indexdbspace>; (you have to use a detached index) use
pdq.

Not quick:

run dbschema;
drop index tableindexes;
create a copytable (by example table_x), use dbschema for that and don't use
the indexrows yet.
select * from <org. table> insert into <copy-table>;
check rows in both tables;
drop table <org. table>;
rename table <copy-table> to <org. table>;
create indexes;

QUICK
run dbschema (dbschema -d <db> -t <table> -ss <table.schema>)
drop indexes from the table (if it are attached indexes it can run for a
long time)
create a copytable (by example table_x)
Use ipload and pipes to copy the data from the source tabel to the target
table,
the table may not have blobs.
(This manner is very quick, but I can't explain all of it here I had by one
table 90GB/hr)
create indexes (from the dbschema with PDQ), that very quick, mostly minutes
instead of hours). You can use onmode -Q, onmode -M, onmode -S to chnega the
PDQ-values, which you can see with onstat -g mgm.

export PSORT_NPROCS=4
export DELIMIDENT=1
export PDQPRIORITY=100

dbaccess <db> create_indexes

Marco Krijt
Medewerker Operationeel Beheer SAP
Vendex KBB IT Services b.v.
Frankemaheerd 6
1102 AN Amsterdam Z.O.
Postbus 12644
1100 AP Amsterdam Z.O.
> Locatie: 6.1.13
Tel Spaklerweg: 020-5959672
> Tel: +3120-3129254
> Tel afdeling: +3120-3129291
> E-mail: marco.krijt@vendexkbb-its.nl
> E-mail afdeling: sapbeheer@vendexkbb-its.nl
>






-----Original Message-----
From: rarmour@superioruniformgroup.com
[mailto:rarmour@superioruniformgroup.com]
Sent: vrijdag 4 april 2003 18:54
To: Krijt, Marco; sapmix@iiug.org
Subject: RE: 32 GB per dbspace limitation [91]


How long does it take to fragment a 27GB table?

> -----Original Message-----
> From: Krijt, Marco [SMTP:Marco.Krijt@VendexKBB-ITS.nl]
> Sent: Friday, April 04, 2003 2:10 AM
> To: sapmix@iiug.org
> Subject: RE: 32 GB per dbspace limitation [91]
>
> All 731 Versions (or older):
>
> There is a limitation of 32GB, but this is not a dbspace limitation,
> but a TABLE or INDEX limitation.
>
> If you have a table which will be bigger then 32GB,
> you have to fragment it by round robin, or expression based,
> among more dbspaces. If an index will be bigger then 32GB you have to
> fragment it expression based (round robin is not possible for an index).
>
> We have dbspaces which are about 90 GB.
> So don't look at your dbspace size but at your table size.
>
> Some limitations:
> Index 32 GB
> Table 32 GB
> chunks 633 active, 2047 maximum (onstat -d|tail)
> Memory 32-bits informix (about 3,75 GB) SHMVIRTSIZE+BUFFERS
>
> Marco Krijt
> Medewerker Operationeel Beheer SAP
> Vendex KBB IT Services b.v.
> Frankemaheerd 6
> 1102 AN Amsterdam Z.O.
> Postbus 12644
> 1100 AP Amsterdam Z.O.
> > Locatie: 6.1.13
> Tel Spaklerweg: 020-5959672
> > Tel: +3120-3129254
> > Tel afdeling: +3120-3129291
> > E-mail: marco.krijt@vendexkbb-its.nl
> > E-mail afdeling: sapbeheer@vendexkbb-its.nl
> >
>
>
> -----Original Message-----
> From: Tseng, Luke [mailto:Luke.Tseng@BancTec.com]
> Sent: vrijdag 4 april 2003 0:42
> To: sapmix@iiug.org
> Subject: 32 GB per dbspace limitation [89]
>
>
> I keep hearing the limitation of 32 GB per dbspace, I wonder any defect or
> document referred to? I asked Informix Tech Support about it, they said
> there are only 2GB per chunk and 1023 chunks per IDS instance limitations
> for versions before 9.4(9.3?). Can anyone share some light on it? Thanks.
>
> Regards,
> Luke
>

----------------------------------------------------------------------------
-------------------------------------
This email transmission and any documents, files or previous email
messages attached to it may contain information that is confidential or
legally privileged. If you are not the addressee or authorized to
receive this message for the addressee, you may not use, copy or
disclose to anyone this message or its contents. If you have received
this message in error, please notify the sender immediately and
permanently destroy any copies you may have.

Messages In This Thread

  • RE: 32 GB per dbspace limitation
    -- Monday, 21 April 2003, at 4:36 p.m.

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

SAP Mix is maintained by Administrator with WebBBS 5.12.