Save 
Join IIUG
 for   
 

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


RSS Feed: IIUG Forum: IIUG Deutsche

More IIUG RSS Feeds

The IIUG Deutsche forum was created for German-speaking Informix users to exchange questions and information about Informix.


URL: http://www.iiug.org/rss/iiug-deu.rss

Below is the latest content available from this feed:

Mono mit IDS 11.70
Posted by: mth@o-b-s.de (MARTIN THOLE) - Wed, 18 May 2011 09:14:18 EDT
Gibt es bereits Erfahrungen mit der Anwendungsentwicklung unter
Mono 2.x (".NET-Umgebung unter Linux") für IDS 11.70?

Ich versuche seit einigen Tagen einige Tests durchzuführen,
aber es gelingt mir noch nicht einmal eine ODBC-Connection
aus einm C#-Programm zu öffnen.

Aktuell verwende ich unter Linux den unixODBC-Treiber (+ C-SDK 3.70).
Gibt es Alternativen?

Viele Grüße

Martin Thole aus Aachen




* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *

To post a response via email (IIUG members only):

1. Address it to iiug-deu@iiug.org
2. Include the bracketed message number in the subject line: [30]

* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *

Blob not found (Java)
Posted by: rg@bbl.de (RAFAEL GRUNENBERG) - Tue, 18 May 2010 03:17:51 EDT
Hallo,

mein Applet greift auf eine Informix-Datenbank zu und soll aus dieser auch
Dateien "entladen" und öffnen. Dies funktioniert aber nur eingeschränkt sobald
mein client hinter einem Proxy sitzt und dadurch die Verbindung über einen
Tomcat-Server geleitet wird. (Ohne Proxy gibt es keine Probleme)
Dateien bis zu einer Grösse von ca. 8 Kb werden noch geladen. Bei grösseren
Dateien erhalte ich die Exception: Blob not found. Änderungen in den
Einstellungen des Tomcat-Servers haben leider nicht den gewünschten Effekt
gebracht.

Hier mal der Code mit der Exception:
++++++++++++++++++++++++++++++++++++++++++++++++++
String sql = "SELECT id, file, filename " +

"FROM filetable " +

"WHERE id = ?";
try

{

PreparedStatement stmt = connection.prepareStatement(sql);

stmt.setInt( 1 , _JobID);

java.sql.ResultSet rs = stmt.executeQuery()

if (rs.next())

{

_JobID = rs.getInt("id");

_ImageFileName = (rs.getString("filename")).trim();

_ImageBytesOfFile = rs.getBytes("file"); // <-- HIER KOMMT DIE EXCEPTION

}

rs.close();

stmt.close();

}
catch (Exception e)

{...}
++++++++++++++++++++++++++++++++++++++++++++++++++

Das Ergebnis:

java.sql.SQLException: Blob not found

at com.informix.util.IfxErrMsg.getSQLException(IfxErrMsg.java:400)

at com.informix.jdbc.IfxResultSet.blobCheck(IfxResultSet.java:1718)

at com.informix.jdbc.IfxResultSet.a(IfxResultSet.java:691)

at com.informix.jdbc.IfxResultSet.b(IfxResultSet.java:631)

at com.informix.jdbc.IfxResultSet.getBytes(IfxResultSet.java:1190)

.......

Hat jemand vieleicht eine Idee was ich tun kann damit ich die Dateien auch
über einen Proxy herunterladen kann?

Gruss
Rafael




* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *

To post a response via email (IIUG members only):

1. Address it to iiug-deu@iiug.org
2. Include the bracketed message number in the subject line: [29]

* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *

Re: ontape sehr langsam
Posted by: muratmy@hotmail.com (MURAT YILDIZ) - Tue, 08 Dec 2009 04:04:12 EST
Hallo,
wie sehen die Systemresourcen aus wenn es langsam läuft? vor allem CPU Idle
time?
Wie sieht dein backup Skript aus?

Murat




* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *

To post a response via email (IIUG members only):

1. Address it to iiug-deu@iiug.org
2. Include the bracketed message number in the subject line: [28]

* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *

ontape sehr langsam
Posted by: ingo.schuster@active-logistics.com (INGO SCHUSTER) - Mon, 07 Dec 2009 10:38:23 EST
Hallo,

es gibt bei uns seit einigen Wochen das Problem, dass die ontape Sicherung
sehr langsam läuft, das Problem ist quasi "über Nacht" aufgetreten. Bei uns
läuft Informix 9.40 UC5. Ich habe bereits versucht, die Sache durch den
CCFLAGS Parameter zu beheben (also durch Setzen dieses Parameters auf
0x400000), was aber auch nicht geholfen hat. Dieser Parameter ist auch aktiv,
dass konnte ich durch eine entsprechende Datenbankabfrage feststellen.
Merkwürdig ist, dass der ontape immer dann sehr langsam läuft, wenn er aus
einem Script gestartet wird (so wie es eigentlich gewünscht ist), gibt man den
ontape Befehl direkt über die Konsole ein, ist die Laufzeit hingegen normal.

Hätte hier jemand eine Idee ?

Vielen Dank !

Ingo Schuster




* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *

To post a response via email (IIUG members only):

1. Address it to iiug-deu@iiug.org
2. Include the bracketed message number in the subject line: [27]

* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *

IIUG launches big Web 2.0 survey for the futur....
Posted by: jgp@jgp.net (Jean Georges Perrin) - Sat, 29 Aug 2009 03:47:49 EDT
IIUG launches big Web 2.0 survey for the future of its web site... 7
questions, less than 5 min http://bit.ly/Zk4Ih

Thanks!

jgp




* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *

To post a response via email (IIUG members only):

1. Address it to iiug-deu@iiug.org
2. Include the bracketed message number in the subject line: [26]

* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *

urgent | | is inserted in text field with /
Posted by: belajouza@hotmail.com (MEHDI BELAJOUZA) - Sat, 29 Dec 2007 16:49:53 EST
the goal is to insert a string containing | | in a column of
text type

when we try to insert a query containing pipe ||in a text field , the result
of insertion shows that supplementary junk slash are added to pipe as
indicated below for IDS version 9.4

1°/ sample of the begenning of the query that we want to insert in a text
field
select trim(substr(lpad(cpp_id,10,"
"),1,5)||"01"||substr(lpad(cpp_id,10,"0"),6,5))1|1|actor|pps2_6_5f||N|

2°/ result of the insertion
select trim(substr(lpad(cpp_id,10,"
"),1,5)\|\|"01"\|\|substr(lpad(cpp_id,10,"0"),6,5)),
"12","","",decode(cpp_etat,3,72,68) ,(((( ca_dt_creat - 2 units hour -
DBINFO("utc_to_datetime",946684800) )::INTERVAL SECOND(9) TO SECOND \|\|
"")::int + 946684800) *1000) ::int8,(((( NVL(cpp_dt_modif,CURRENT) - 2
units hour - DBINFO("utc_to_datetime",946684800) )::INTERVAL SECOND(9)
TO SECOND \|\| "")::int + 946684800) *1000) ::int8 from cust_access,
cust_ppaid_v2 where ca_id = cpp_id and cpp_numtel <> "default" and
cpp_etat <> 0|

3°/ the tablE structure used is indicated below and the field whre the query
tex t is inserted is sqlselect

{ TABLE "informix".query row size = 131 number of columns = 7 index size
= 12 }
create table "informix".query
(

formid serial not null ,

projectid integer,

name char(30),

database char(30),

arrayname char(30),

lockflag char(1),

sqlselect text
) extent size 16 next size 16 lock mode page;
revoke all on "informix".query from "public";

4°/ question how could we insert the query text with || without suplementary /




* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *

To post a response via email (IIUG members only):

1. Address it to iiug-deu@iiug.org
2. Include the bracketed message number in the subject line: [25]

* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *

http://rich-casino.atspace.com/index.html
Posted by: janatha@gamele.com (SilentlyKissable) - Sun, 30 Jul 2006 06:01:17 EDT
The following e-mail was sent to you via IIUG Deutsche Forum from SilentlyKissable (janatha@gamele.com) at IP address 203.150.49.81 (203-150-49-81.inter.net.th).



http://rich-casino.atspace.com/index.html

In this story, mice and dwarves clash with a cowardly sorceress stuck in the middle.
http://rich-casino.atspace.com/index.html
<a href



* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *

To post a response via email (IIUG members only):

1. Address it to iiug-deu@iiug.org
2. Include the bracketed message number in the subject line: []

* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *

Re: help Byte Swaped
Posted by: mail@gramberg.de (BERNHARD GR....) - Tue, 18 Apr 2006 01:22:03 EDT
Hi,

this means as well at Unicode,
there are two bytes for a single char.
Is the first Byte the "first"part of the double-byte, or is it
the second.
Here, you can habe these two bytes swapped as well.




* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *

To post a response via email (IIUG members only):

1. Address it to iiug-deu@iiug.org
2. Include the bracketed message number in the subject line: [24]

* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *

Re: Querix 4GL - Technical Workshop in Muenchen
Posted by: mail@gramberg.de (BERNHARD GR....) - Mon, 17 Apr 2006 17:06:24 EDT
Hallo,

nicht mehr sehr aktuell.
Wann gibt es wieder einen Workshop in Duetschland (oder Umgebung?)

Gruß Gramberg (in Berlin)




* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *

To post a response via email (IIUG members only):

1. Address it to iiug-deu@iiug.org
2. Include the bracketed message number in the subject line: [23]

* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *

Hallo,

nicht mehr sehr aktuell.
Wann gibt es wieder einen Workshop in Duetschland (oder Umgebung?)

Gruß Gramberg (in Berlin)




* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *

To post a response via email (IIUG members only):

1. Address it to iiug-deu@iiug.org
2. Include the bracketed message number in the subject line: [23]

* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *

 
Subscribe to this feed
You can subscribe to this RSS feed in a number of ways, including the following:

Drag the orange RSS button into your News Reader

Drag the URL of the RSS feed into your News Reader

Cut and paste the URL of the RSS feed into your News Readerv