for   
Save 
Save 
   Join IIUG  

Informix News
16 October 08 - VendorRate - Informix Earns Top Customer Satisfaction Score on VendorRate in Q3... Read
14 August 08 - IIUG.org - Sellout Expected for the 2009 IIUG Informix Conference... Read
29 April 08 - IntelligentEnterprise.com - IBM Informix Upgrade Enhances Clustering, Database Management... Read
29 April 08 - itweek.com - IBM 'Cheetah 2' mauls data costs... Read
28 April 08 - eWeek.com - IBM Uncages Cheetah 2 Data Server... Read
28 April 08 - CNNMoney.com - IBM Helps Clients Reduce Data Management Costs With New Informix Dynamic Server... Read
09 April 08 - CNNMoney.com - MediaSpan Embeds IBM Informix Dynamic Server Software for Delivering News to Print, Web and Wireless Devices... Read
08 April 08 - IT-Director.com - Informix seeks developers... Read
18 February 08 - marketwire.com - Icarus Studios Partners With IBM to Upgrade Performance, Availability for Its Online Games... Read
17 January 08 - eWeek.com - IBM Adds Mac Support to IDS for Higher Education... Read
17 January 08 - informationweek.com - Lotus Notes For iPhone Signals Closer Ties Between IBM, Apple... Read
16 January 08 - marketwire.com - IBM Informix Dynamic Server to Deliver Support for Mac OS X... Read
16 January 08 - internetnews.com - IBM's IDS to Support Mac Platform... Read
28 June 07 - REG Developer - IBM and Informix tie down Cheetah... Read
27 June 07 - CBRonline.com - IBM corrects its own Informix customer figures... Read
14 June 07 - vnunet.com - IBM changes spots with Informix 'Cheetah' database... Read
14 June 07 - eChannelLine - IBM expands scope for IDS... Read
14 June 07 - Resellernews - IBM: Informix database alive and kicking... Read
13 June 07 - DB2 Magazine - Cheetah is now out of the gate... Read
12 June 07 - IBM - IDS 11 release announcement (pdf)... Read
12 June 07 - ChannelWeb Network - IBM Uncages IDS 11, Aka Cheetah, Database... Read
12 June 07 - eWeek.com - IBM's 'Cheetah' Ready to Pounce... Read
12 June 07 - InformationWeek - IBM Unleashes 'Cheetah' Database... Read
12 June 07 - WebWire - IBM Strengthens Database Portfolio With New Informix Dynamic Server... Read
12 June 07 - Intelligent Enterprise - IBM Unveils Informix Upgrade... Read
12 June 07 - ComputerWeekly.com - IBM's Cheetah IDS makes leap to better data centre clustering... Read
12 June 07 - ebiz - IBM Unveils Next Generation Informix Dynamic Server... Read
12 June 07 - computerworld.com - Will 'Cheetah' help IBM's Informix chase down market share?... Read
12 June 07 - Internetnews.com - No Data Can Outrun This 'Cheetah'... Read
12 June 07 - de.internet.com - IBM neuer Datenbank-Server mit Codenamen Cheetah ist fertig... Read
12 June 07 - verifox.de - IBM stärkt Datenbank-Portfolio mit neuem Informix Dynamic Server... Read
12 June 07 - golem.de - Informix 11 vorgestellt... Read
12 June 07 - Computerwoche.de - IBM stellt neue Informix-Version vor... Read
12 June 07 - IBM.de - IBM stärkt Datenbank-Portfolio mit neuem Informix Dynamic Server... Read
12 June 07 - Heise - IBM gibt Informix 11 frei... Read
25 May 07 - Taiwan.CNET.com - Local Taiwan Informix user group established... (Chinese language) ... Read
18 May 07 - ChannelWeb Network - IBM Musters Partners For Cheetah Release... Read
18 May 07 - eWeek.com - IBM Looks to 'Cheetah' to Speed Up Blade Servers... Read
7 May 07 - DB2 Magazine - SQL Shortcuts - Use these tricks to generate IDS SQL scripts... Read

Previous news items
 

Home Member Area About IIUG


Resources
IIUG Insider
IIUG Hotspots
IBM-Informix Links
IIUG RSS Feeds
Software Repository
Informix Products
Online Resources
Informix Library
Informix Books
IIUG Banners
Discussion
Technical Special
  Interest Groups

Other Discussion
Community
Events
Webcasts/Chat w Lab
IIUG TV
IIUG Sponsors
Informix Business Directory
IIUG Press Partners
Local User Groups
Rate the Vendor
Job Board
Fun Stuff

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

IDS Forum

RE: ODBC and Serial

Posted By:
Date:


This will return the next serial number NOT the one assigned to the last row
inserted by the current session, neccessarily. If other sessions have inserted
rows in the meantime this will return the wrong value!

Art S. Kagel
----- Original Message -----
From: Alexey Sonkin <alexeis@grandvirtual.com>
At: 4/25 18:48

> There is a slow, undocumented and unrecommended way to get
> the serial value for the table not using 'dbinfo'
>
> 1. select partnum from systables
> where tabname = 'MYTAB' (into PRTNUM)
> 2. select serialv from sysmaster:sysptnhdr
> where partnum = PRTNUM
>
> Note, that this method is not recommended if
> this table is heavily loaded by inserts
>
> Formally, Informix keeps serial value for the table
> in the 'tablespace tablespace' - special disk structure that
> describes each partition (index or table fragment) in the dbspace.
>
> ------------------------------------------
> Alexey Sonkin
> Senior Database Administrator
>
>
> -----Original Message-----
> From: Christine N.... [mailto:cnormile@us.ibm.com]
> Sent: Friday, April 25, 2003 2:16 PM
> To: ids@iiug.org
> Subject: Re: ODBC and Serial [1000]
>
>
>
>
>
> A serial column is not a sequence object. The value does not exist outside
> the context of the row. Sequence objects have been added to IDS with
> version 9.4. With earlier versions of IDS, developers get the next
> sequential value for a column in one of two ways: write a dummy row in the
> table containing the serial field, read it back and then update it when the
> rest of the data is gathered or create a table containing single row with
> the next available number, read and update that table and use the value as
> if it were a sequence.
>
> Christine Normile
> I/T Specialist, Informix Solutions
> Data Management Worldwide Sales Support
> Telephone: 877-252-5399 T/L 273-0981
> Mobile: 210-365-5073
>
>
>
> |---------+---------------------------->
> | | "THOMAS CARISCH" |
> | | <tcarisch@paninfo|
> | | .com> |
> | | Sent by: |
> | | forum.subscriber@|
> | | iiug.org |
> | | |
> | | |
> | | 04/25/2003 08:15 |
> | | AM |
> |---------+---------------------------->
>
> >---------------------------------------------------------------------------
> -------------------------------------------|
> |
> |
> | To: ids@iiug.org
> |
> | cc:
> |
> | Subject: ODBC and Serial [994]
> |
>
> >---------------------------------------------------------------------------
> -------------------------------------------|
>
>
>
>
> Hello to you all,
>
> does anybody know the way to retrieve the current SERIAL value thru ODBC.
> The sqlca.sqerrd[x] isn't supported by ODBC!?
> We use a VB application and need that value for preparing the next select
> in our program.
> Unfortunately there doesn't exist a SQL-function like nextval() and so on
> how e.g IBM UDB does for their identity columns.
>
> Any ideas?
>
> Thank's for help
> Thomas


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

IDS Forum is maintained by Administrator with WebBBS 5.12.

©2001 - 2007 International Informix Users Group.   All rights reserved.     Terms of use    
*** Powered By IBM Informix Dynamic Server V10.00 ***