for   
Save 
Save 
   Join IIUG  

Informix News
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
Job Board
Fun Stuff

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

Development Tools Forum

RE: Java Question

Posted By: Link, David A. \(Omaha\)
Date: Tuesday, 22 November 2005, at 5:32 p.m.

Yes you can.

Select * from <dbname1>@<dbserver1>:<table1>
Where column1 not in (select column1 from
<dbname2>@<dbserver2>:<table2>);

You just have to define the connection to dbname1@dbserver1. This is
assuming that dbserver1 and dbserver2 are aware of each other. If both
databases are on the same dbserver you don't need the @<dbserverX> in
the statement.

Make sense?

David

-----Original Message-----
From: Sharp, Kirk (USMS) [mailto:Kirk.Sharp@usdoj.gov]
Sent: Tuesday, November 22, 2005 4:05 PM
To: Link, David A. (Omaha); dev-java@iiug.org
Subject: Java Question

Thanks for your help. I have another question....

Does Java allow queries to mutliple databases using embedded SQL?

For example (Informix embedded SQL):

SELECT * FROM "database_one":comment_type
WHERE comment_type_cd NOT IN (SELECT comment_type_cd
FROM "database_two":comment_type);

If I am allowed to perform this query, how do I set up the connections
in Java?


Any help would be greatly appreciated!



-----Original Message-----
From: Link, David A. (Omaha) [mailto:DALink@west.com]
Sent: Fri 11/18/2005 1:17 PM
To: Sharp, Kirk (USMS)
Cc:
Subject: RE: Informix Enterprise Replication [45]



The transactions will get logged to the logical logs but will
get
flagged not to be replicated. So it will cause you to roll
through
logical logs quickly. But this should not cause you any issues
as long
as you do the commit frequently and have your logical logs sized
appropriately. You cannot turn off logging on a replicated
table.

Does this help?

David

-----Original Message-----
From: Sharp, Kirk (USMS) [mailto:Kirk.Sharp@usdoj.gov]
Sent: Friday, November 18, 2005 12:55 PM
To: Link, David A. (Omaha)
Subject: RE: Informix Enterprise Replication [45]

Hi David

Thank for your prompt and courteous response...

I tried using the "BEGIN WORK WITHOUT REPLICATION" statememnt
and it
works just fine.

Do you know what affect any this will have on logging? Do I need
to turn
of logging?

-----Original Message-----
From: forum.subscriber@iiug.org on behalf of Link,
David....
Sent: Thu 11/17/2005 8:14 AM
To: dev-java@iiug.org
Cc:
Subject: RE: Informix Enterprise Replication [45]



There are several ways to approach this problem.

You can allow replication to handle the deletes for you
on the
target
server. Make sure your transactions are small, commit
frequently.

The other way is to run your deletes on both servers. To
do that
you
will need to issue a "BEGIN WORK WITHOUT REPLICATION"
before
each
transaction. We do this for several of our large servers
where
we do
mass changes. This decreases the amount of traffic which
has to
get
replicated.

Whichever solution you decide to use, make sure your DBA
is in
the loop
so that he is aware of the additional work load.

If you have more questions, I am more than willing to
help.

David Link

-----Original Message-----
From: forum.subscriber@iiug.org
[mailto:forum.subscriber@iiug.org] On
Behalf Of Jean George....
Sent: Thursday, November 17, 2005 3:02 AM
To: dev-java@iiug.org
Subject: RE: Informix Enterprise Replication [43]

I guess your questions are more about replication than
java, you
may
send
the mail to the ids forum, I think that people like
madison will
lovw to
answer you...

good luck...

jgp

> -----Original Message-----
> From: forum.subscriber@iiug.org
> [mailto:forum.subscriber@iiug.org] On Behalf Of KIRK
SHARP
> Sent: Wednesday, November 16, 2005 23:04
> To: dev-java@iiug.org
> Subject: Informix Enterprise Replication [41]
>
> First, let me apoligize if I am posting this message
in the
> wrong group.
>
> I am in the process of writing a Java server
application that
> will perform archiving (remove old data (1-2 million
rows)
> from production DB and load the old data to an archive
DB).
>
> We are using Informix Enterprise Replication to
replicate the
> database on a remote server via a T1 line.
>
> I am unsure how to address the replication issue.
>
> Questions:
>
> Do I need to drop replication in order to perform the
archive
process?
> Do I need to turn of logging as well?
> Are there any existing methods that would allow me to
perform
> the arhcive process with replication and logging
running?
>
> Any help would be greatly appreciated.
>
> Thanks in advance!

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

Development Tools 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 ***