<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel>
        <title>MySQL Forums - Informix</title>
        <description>Forum for Informix migration issues.</description>
        <link>http://forums.mysql.com/list.php?64</link>
        <lastBuildDate>Tue, 24 Nov 2009 20:19:53 +0000</lastBuildDate>
        <generator>Phorum 5.2.1-alpha</generator>
        <item>
            <guid>http://forums.mysql.com/read.php?64,266352,266352#msg-266352</guid>
            <title>To Cluster Option in MySQL (no replies)</title>
            <link>http://forums.mysql.com/read.php?64,266352,266352#msg-266352</link>
            <description><![CDATA[ Hi,<br />
<br />
I am using following sql statement in informix to cluster the indexes.<br />
ALTER INDEX ix_cust TO CLUSTER;<br />
<br />
What is the sql command for the same in MySQL?<br />
<br />
Please help.<br />
<br />
Regards,<br />
<br />
-Sandeep Pant]]></description>
            <dc:creator>Sandeep Pant</dc:creator>
            <category>Informix</category>
            <pubDate>Tue, 09 Jun 2009 12:32:56 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?64,258168,258168#msg-258168</guid>
            <title>How familiar is MySQL to an old Informix guy? (no replies)</title>
            <link>http://forums.mysql.com/read.php?64,258168,258168#msg-258168</link>
            <description><![CDATA[ Hi<br />
<br />
Way back in the 90's I used to an Informix DBA - even writing 4GL!<br />
<br />
I'm thinking of moving <a rel="nofollow"  href="http://www.buycake.co.uk">http://www.buycake.co.uk</a> to MySQL, does Informix experiene help?<br />
<br />
Cheers<br />
<br />
Rorie]]></description>
            <dc:creator>Rorie Devine</dc:creator>
            <category>Informix</category>
            <pubDate>Thu, 16 Apr 2009 20:31:36 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?64,254555,254555#msg-254555</guid>
            <title>Error Load Data Use '|' (no replies)</title>
            <link>http://forums.mysql.com/read.php?64,254555,254555#msg-254555</link>
            <description><![CDATA[ EXample File .txt<br />
<br />
1|30/04/1999|5051000002|0.0|5.0|0.0|51.0|1.0|-144.21|-144.21|5.74|1.0|migracion|0.0|50.0|50.0|AXN|15:38:27|03/05/1999|<br />
<br />
2|30/041999|5051000004|0.0|5.0|0.0|51.0|1.0|-270.24|-270.24|5.74|1.0|MIGRACION|0.0|50.0|50.0|AXN|15:38:28|03/05/1999|<br />
<br />
How import from load data command ?<br />
<br />
Marcelo]]></description>
            <dc:creator>Marcelo Aguirre</dc:creator>
            <category>Informix</category>
            <pubDate>Wed, 25 Mar 2009 20:37:21 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?64,234216,234216#msg-234216</guid>
            <title>Excalibur text search (no replies)</title>
            <link>http://forums.mysql.com/read.php?64,234216,234216#msg-234216</link>
            <description><![CDATA[ Hi all,<br />
<br />
Anyone here using Excalibur text search for informix database ? If yes, hows the search performance ?]]></description>
            <dc:creator>rambo rambo</dc:creator>
            <category>Informix</category>
            <pubDate>Fri, 14 Nov 2008 01:06:22 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?64,231113,231113#msg-231113</guid>
            <title>Full-text search in informix db (1 reply)</title>
            <link>http://forums.mysql.com/read.php?64,231113,231113#msg-231113</link>
            <description><![CDATA[ Im looking for any full-text search engine that can be use with informix db ? I know sphinx but unfortunately sphinx can't talk to informix. Anyone know?]]></description>
            <dc:creator>rambo rambo</dc:creator>
            <category>Informix</category>
            <pubDate>Fri, 31 Oct 2008 22:48:44 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?64,211495,211495#msg-211495</guid>
            <title>Informix to MySQL (2 replies)</title>
            <link>http://forums.mysql.com/read.php?64,211495,211495#msg-211495</link>
            <description><![CDATA[ Hi,<br />
<br />
Here is a small script to convert Informix dbexport files to MySQL format.<br />
<br />
<a rel="nofollow"  href="http://ifx2mysql.moua7.com/ifx2mysql.tgz">http://ifx2mysql.moua7.com/ifx2mysql.tgz</a><br />
<br />
Cheers,<br />
<br />
-- <br />
Ali]]></description>
            <dc:creator>Ali Mdidech</dc:creator>
            <category>Informix</category>
            <pubDate>Wed, 18 Mar 2009 19:10:35 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?64,209790,209790#msg-209790</guid>
            <title>like query (1 reply)</title>
            <link>http://forums.mysql.com/read.php?64,209790,209790#msg-209790</link>
            <description><![CDATA[ want to fetch data from three table to have the relation but one of the table  as field owner_name and another as first name and last name how to solve this type of query<br />
<br />
<br />
select si.*,co.firstname as cofname , co.lastname as colname , co.city as cocity ,sr.firstname as srfname, sr.lastname as srlname from sales_info as si,company_owner as co, sales_rep as sr where si.user_id=sr.user_id and sr.owner_name like '%co.firstname%lastname%' and sr.owner_name IN ( SELECT co.firstname FROM company_owner ) and si.type='ipod' and co.distributor_name='Ingram Micro' order by si.date, si.type ASC<br />
<br />
<br />
please reply ASAP<br />
<br />
<br />
<br />
Thanks,<br />
Naresh]]></description>
            <dc:creator>Naresh Kakkad</dc:creator>
            <category>Informix</category>
            <pubDate>Tue, 09 Jun 2009 10:07:09 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?64,202678,202678#msg-202678</guid>
            <title>Porting procedures - SYSTEM function (no replies)</title>
            <link>http://forums.mysql.com/read.php?64,202678,202678#msg-202678</link>
            <description><![CDATA[ In porting some stored procedures from Informix to MySQL<br />
it appears that MySQL does not have an equivalent function<br />
to the Informix SYSTEM function.  Is this correct? Or is<br />
there some other way to invoke an external executable from<br />
inside a MySQL procedure?<br />
<br />
Thanks<br />
<br />
td]]></description>
            <dc:creator>Thomas Downing</dc:creator>
            <category>Informix</category>
            <pubDate>Thu, 27 Mar 2008 18:16:50 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?64,178779,178779#msg-178779</guid>
            <title>MYSQL process infinitely hanging on an INSERT (no replies)</title>
            <link>http://forums.mysql.com/read.php?64,178779,178779#msg-178779</link>
            <description><![CDATA[ Hi,<br />
<br />
I posted this problem since 5 days, desperately waiting for answer but did recieve nothing. May be informations I gave were not clear enough. I do another post with more clear information.<br />
<br />
This problem is clearly process hanging infinitely on an INSERT statement. May be the process is waiting for a lock. But, why it does not give up if it does not obtain the lock after having wait for lock wait timeout value ???<br />
<br />
Below is innodb parameteres in my.cnf :<br />
<br />
innodb_data_home_dir = /opt/mysql/data/<br />
innodb_data_file_path = ibdata_metacads1:1M;ibdata_metacads2:1000M:autoextend<br />
innodb_buffer_pool_size=256M<br />
innodb_additional_mem_pool_size=20M<br />
innodb_log_group_home_dir = /opt/mysql/log<br />
innodb_log_files_in_group = 2<br />
innodb_log_file_size=64M<br />
innodb_log_buffer_size=1M<br />
innodb_flush_log_at_trx_commit=1<br />
innodb_lock_wait_timeout=10<br />
innodb_thread_concurrency=4<br />
innodb_commit_concurrency=0<br />
innodb_concurrency_tickets=500<br />
<br />
Help again !]]></description>
            <dc:creator>Maodo Toure</dc:creator>
            <category>Informix</category>
            <pubDate>Sat, 20 Oct 2007 23:08:41 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?64,175547,175547#msg-175547</guid>
            <title>Testing (no replies)</title>
            <link>http://forums.mysql.com/read.php?64,175547,175547#msg-175547</link>
            <description><![CDATA[ Testing.. please ignore]]></description>
            <dc:creator>Dups à une soirée de débats</dc:creator>
            <category>Informix</category>
            <pubDate>Mon, 01 Oct 2007 10:44:04 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?64,142999,142999#msg-142999</guid>
            <title>Informix C API conversion to MySQL C API (1 reply)</title>
            <link>http://forums.mysql.com/read.php?64,142999,142999#msg-142999</link>
            <description><![CDATA[ Is there any easy way/tool to convert Informix C Api functions to MySQL c API functions?]]></description>
            <dc:creator>Antony Suresh</dc:creator>
            <category>Informix</category>
            <pubDate>Sat, 07 Jun 2008 19:24:48 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?64,135161,135161#msg-135161</guid>
            <title>Informix JDBC setup - RH 6.2 (no replies)</title>
            <link>http://forums.mysql.com/read.php?64,135161,135161#msg-135161</link>
            <description><![CDATA[ Can anyone advise how to setup an Informix JDBC on a redhat 6.2 server?<br />
<br />
Is it at all possible - or is the OS too old to support the JDBC?<br />
<br />
Any tips / suggestions]]></description>
            <dc:creator>Dan Kelly</dc:creator>
            <category>Informix</category>
            <pubDate>Tue, 16 Jan 2007 17:25:02 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?64,126278,126278#msg-126278</guid>
            <title>Dynamic SQL is not allowed (no replies)</title>
            <link>http://forums.mysql.com/read.php?64,126278,126278#msg-126278</link>
            <description><![CDATA[ I have to choose the table name on fly in the trigger and then pass dynamic sql to   <br />
Stored procedure which make use of PREPARE and EXECUTE statements.I know that triggers can't have PREPARE and EXECUTE statement, but STORED PROCEDURES can make use of PREPARE AND EXECUTE. So thats why I had put PREPARE AND EXECUTE statements in Stored procedures, which I call from trigger, I recieve the following error.<br />
<br />
\\\\\\\\\\\\\<br />
 Dynamic SQL support is not enable in triggers and functions<br />
\\\\\\\\\\\<br />
<br />
Can any body help me...<br />
<br />
<br />
CREATE TRIGGER trigger1 after INSERT ON cdr<br />
FOR EACH ROW<br />
<br />
BEGIN<br />
<br />
DECLARE id BIGINT;<br />
DECLARE vname VARCHAR(200);<br />
DECLARE destination VARCHAR(200) DEFAULT 'null';<br />
DECLARE rows1 BIGINT DEFAULT 0;<br />
DECLARE sql1 VARCHAR(2000);<br />
<br />
SELECT v.vendorid,v.name, ve.DestinationID INTO id, vname, destination<br />
FROM (select name, v.VendorID  from vendor v natural join vendorendpoints where endpoint=NEW.Field27) v NATURAL JOIN (SELECT * FROM vendorextraction order by length desc) ve<br />
WHERE<br />
substr(NEW.Field8 , 1 ,ve.length)=substr(CONCAT(ve.Prefix,ve.OperatorList),1,ve.length) limit 0,1;<br />
<br />
SET @@sql_mode='ansi';<br />
SET sql1 =CONCAT('insert into `',CONCAT(vname,id),'` values(',id,',&quot;',vname,'&quot;,&quot;',NEW.Field5,'&quot;,&quot;',NEW.Field35,'&quot;,&quot;',NEW.Field12,'&quot;,&quot;',NEW.Field8,'&quot;,&quot;',NEW.Field0,'&quot;)');<br />
<br />
IF (id &gt;0) THEN<br />
call testing(sql1);<br />
ELSE<br />
SET sql1 =CONCAT('insert into `unknown` values(',id,',&quot;',vname,'&quot;,&quot;',NEW.Field5,'&quot;,&quot;',NEW.Field35,'&quot;,&quot;',NEW.Field12,'&quot;,&quot;',NEW.Field8,'&quot;,&quot;',NEW.Field0,'&quot;)');<br />
call testing(sql1);<br />
END IF;<br />
<br />
END<br />
<br />
/////////////<br />
<br />
CREATE PROCEDURE testing (IN param1 VARCHAR(3000))<br />
BEGIN<br />
SET @s =param1;<br />
PREPARE stmt1 FROM @s;<br />
EXECUTE stmt1;<br />
END]]></description>
            <dc:creator>Aftab Khan</dc:creator>
            <category>Informix</category>
            <pubDate>Mon, 13 Nov 2006 12:04:12 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?64,126273,126273#msg-126273</guid>
            <title>Dynamic SQL in Stored Procedure (no replies)</title>
            <link>http://forums.mysql.com/read.php?64,126273,126273#msg-126273</link>
            <description><![CDATA[ When I insert new row in `cdr` table, I get following error. I am using MYSQL Server version: 5.0.24a-community-nt, and that version support dynamic sql (prepare and execute statments) in Stored Procedures; Can any body help<br />
<br />
#1336 - Dynamic SQL is not allowed in stored function or trigger <br />
<br />
////////////////////////////////////////////////////////////////<br />
<br />
CREATE TRIGGER trigger1 after INSERT ON cdr<br />
FOR EACH ROW<br />
BEGIN<br />
<br />
DECLARE id BIGINT;<br />
DECLARE vname VARCHAR(200);<br />
DECLARE destination VARCHAR(200) DEFAULT 'null';<br />
DECLARE rows1 BIGINT DEFAULT 0;<br />
DECLARE sql1 VARCHAR(200);<br />
DECLARE sql2 VARCHAR(200);<br />
<br />
SELECT v.vendorid,v.name, ve.DestinationID INTO id, vname, destination<br />
FROM (select name, v.VendorID  from vendor v natural join vendorendpoints where endpoint=NEW.Field27) v NATURAL JOIN (SELECT * FROM vendorextraction order by length desc) ve<br />
WHERE <br />
substr(NEW.Field8 , 1 ,ve.length)=substr(CONCAT(ve.Prefix,ve.OperatorList),1,ve.length) limit 0,1;<br />
<br />
set sql1='insert into `'|| CONCAT(vname,id) || '` values('|| id || ',\&quot;' || vname || '\&quot;,\&quot;' || NEW.Field5 || '\&quot;,\&quot;' || NEW.Field35 || '\&quot;,\&quot;' || NEW.Field12 || '\&quot;,\&quot;' || NEW.Field8 || '\&quot;,\&quot;'|| NEW.Field0 || '\&quot;)';<br />
set sql2='insert into unknown values('|| id || ',\&quot;' || vname || '\&quot;,\&quot;' || NEW.Field5 || '\&quot;,\&quot;' || NEW.Field35 || '\&quot;,\&quot;' || NEW.Field12 || '\&quot;,\&quot;' || NEW.Field8 || '\&quot;,\&quot;'|| NEW.Field0 || '\&quot;)';<br />
<br />
IF (id &gt;0) THEN<br />
call testing(sql1);<br />
ELSE<br />
call testing(sql2);<br />
END IF;<br />
<br />
END]]></description>
            <dc:creator>Aftab Khan</dc:creator>
            <category>Informix</category>
            <pubDate>Mon, 13 Nov 2006 10:59:13 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?64,124928,124928#msg-124928</guid>
            <title>Help with informix and mysql (no replies)</title>
            <link>http://forums.mysql.com/read.php?64,124928,124928#msg-124928</link>
            <description><![CDATA[ I know maybe some of you know already the answer but in this new thing we are newbie,, we need to migrate a database from informix to mysql, can that be done directly from mysql? can it be done with php?  does anyone have a example code plz.<br />
<br />
thanks]]></description>
            <dc:creator>Gerardo Polo</dc:creator>
            <category>Informix</category>
            <pubDate>Sun, 05 Nov 2006 03:53:02 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?64,114479,114479#msg-114479</guid>
            <title>Sequential mysql reads (1 reply)</title>
            <link>http://forums.mysql.com/read.php?64,114479,114479#msg-114479</link>
            <description><![CDATA[ Hi there,  hopefully someone can help me!<br />
<br />
The company I work for has an application that uses Informix C-Isam as it's database.  We don't do anything too spectacular with it, we read, read next, update, add etc.  If we want anything that isn't in key order we hunt for the answers in the most appropriate key and filter out the chaff.  All of our access is through our own library functions that pretty much map to C-Isam funtions/options and the code of the application is what I'd call 'large'! (&gt; 4 million lines).<br />
<br />
For the last couple of weeks I've been trying to take baby steps towards moving to mysql as our database by mimicing what our current functions do on a dump of the C-Isam database.  The logic is that if we can mimic what those functions do accurately and without too much of a performance hit, we can live like that and newer parts of the application can be 'mysql aware' and start to take advantage of the non-sequential reads, table joins etc that mysql gives us.<br />
<br />
I've been reasonably successful in the mimicing but not the performance.  Because this has to be backwardly compatible, I'm basically issuing a mysql select for each read we do (not worrying about updates yet).  I've experimented with caches (ask for one record, get it and the next 10 back so that as we loop through we can use the cache rather than read afresh).  Within reason this would be ok (we'd choose when it's safe to use the cache and when not).<br />
<br />
What's troubling me (apart from the overall dread from the whole project) is the performance of these mysql reads.  It's complicated but best described with a bit of pseudo code:<br />
<br />
existing logic:<br />
 <br />
  initialise record key<br />
  if (can read a record based on initial key) {<br />
    do {<br />
      print record details<br />
    } while (can read next record)<br />
  }<br />
<br />
With our existing code, this runs through my data set in about 3 seconds.<br />
If I augment that and try and read the parallel mysql record for the cisam record we have it jumps to 18 seconds (basically just adding 13000 mysql_query + associated consumption of the results).<br />
<br />
To read the mysql record, I am opening a connection to the db outside of the loop, making a select statement inside the loop (timings for this alone are tiny), calling mysql_query (haven't mentioned it but we're using c and linking the mysql library to our program), and then fetching/freeing the results.<br />
<br />
As the record I'm reading is changing each time, the statement is changing each time (although the layout of the statement is the same, the data parts of the 'where' change).  I'm going to try and experiment with creating a paramaterised procedure that can accept the key field values to see if this will help at all.<br />
<br />
Long intro, now the questions:<br />
<br />
- Has anyone tried anything vaguely similar?  <br />
- Is what I'm trying feasable (make a relational database pretend to be a sequential one with only within-reason performance loss)<br />
- Could I do  what I'm trying to do better or shall I just give up?<br />
<br />
I know this was long and if you made it this far I salute you.  If you manage to come up with any answers/queries I'll be even happier. <br />
<br />
Thanks<br />
<br />
Chris Rothery<br />
Cognition Solutions plc.<br />
Cheltenham<br />
UK]]></description>
            <dc:creator>Christopher Rothery</dc:creator>
            <category>Informix</category>
            <pubDate>Sat, 16 Sep 2006 14:41:32 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?64,100410,100410#msg-100410</guid>
            <title>interval data type (1 reply)</title>
            <link>http://forums.mysql.com/read.php?64,100410,100410#msg-100410</link>
            <description><![CDATA[ I suggest adding the interval datatype to mysql as it is in Informix.<br />
There already is the interval syntax in date/time functions.<br />
It should be natural and easy to add the interval datatype to the available column datatypes.<br />
<br />
Thank you,<br />
Mircea.]]></description>
            <dc:creator>Mircea LUTIC</dc:creator>
            <category>Informix</category>
            <pubDate>Thu, 26 Jun 2008 07:32:08 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?64,89370,89370#msg-89370</guid>
            <title>To translate judgment (1 reply)</title>
            <link>http://forums.mysql.com/read.php?64,89370,89370#msg-89370</link>
            <description><![CDATA[ hello!!<br />
<br />
The judgment select in formix &quot;select rowid from customer&quot;, like serious in mysql?<br />
<br />
Thank you.]]></description>
            <dc:creator>Raul Gallego</dc:creator>
            <category>Informix</category>
            <pubDate>Mon, 16 Apr 2007 10:00:55 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?64,87185,87185#msg-87185</guid>
            <title>Informix talking to MySQL (5 replies)</title>
            <link>http://forums.mysql.com/read.php?64,87185,87185#msg-87185</link>
            <description><![CDATA[ Hello,<br />
<br />
I would appreciate if anyone on this forum can provide me with any pointers to the following problem:  we are trying to have a copy of data located in Informix replicated in MySQL, that is changes in data that take place in Informix have to be propagated to the corresponding MySQL set of data. We've acquired a tool from IBM that promised to make this happen but turns out it does not work, with such an acknowledgement from IBM.  <br />
<br />
Anyone aware of any tools or techniques out there that will help us solve this issue?<br />
<br />
Thank you for any pointers in the right direction.<br />
<br />
Emilia]]></description>
            <dc:creator>E Sh</dc:creator>
            <category>Informix</category>
            <pubDate>Thu, 31 May 2007 19:00:42 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?64,86596,86596#msg-86596</guid>
            <title>Informix unload command returning null i.e || (no replies)</title>
            <link>http://forums.mysql.com/read.php?64,86596,86596#msg-86596</link>
            <description><![CDATA[ Hi,<br />
<br />
We have problem when unloading a column containg empty string(space's) from an Informix database table, i.e. the unloaded column looks like || rather than | |.<br />
So when we load this data into the MySQL database is stored as a NULL value rather than a space.<br />
Is there any way of getting round this problem,other than post processing the data.<br />
<br />
Thank's<br />
<br />
Navin]]></description>
            <dc:creator>Navin Patel</dc:creator>
            <category>Informix</category>
            <pubDate>Sun, 30 Apr 2006 09:55:15 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?64,70476,70476#msg-70476</guid>
            <title>connecting to source db (no replies)</title>
            <link>http://forums.mysql.com/read.php?64,70476,70476#msg-70476</link>
            <description><![CDATA[ Hi,<br />
    I am trying a migration from informix to mysql using the migration tool - I have fallen at the first hurdle...can anyone give me a heads up on the following error:<br />
<br />
Connecting to source database and retrieve schemata names.<br />
The list of schema names could not be retrieved (error: 0).<br />
ReverseEngineeringGeneric.getSchemata :C:\Program Files\IBM\Informix_JDBC_Driver\lib\ifxjdbc/jar;C:\Program Files\IBM\Informix_JDBC_Driver\lib\ifxsqlj/jar<br />
Details: <br />
java.lang.Class.forName0(Native Method)<br />
java.lang.Class.forName(Unknown Source)<br />
com.mysql.grt.modules.ReverseEngineeringGeneric.establishConnection(Unknown Source)<br />
com.mysql.grt.modules.ReverseEngineeringGeneric.getSchemata(Unknown Source)<br />
sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)<br />
sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)<br />
sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)<br />
java.lang.reflect.Method.invoke(Unknown Source)<br />
com.mysql.grt.Grt.callModuleFunction(Unknown Source)<br />
<br />
 I am using the jdbc v3.00.JC3 and j2sdk1.4.2, informix 7.31.  I can connect to the informix db through server studio no probs.  Any ideas gratefully rec'd]]></description>
            <dc:creator>Doug Hall</dc:creator>
            <category>Informix</category>
            <pubDate>Thu, 16 Feb 2006 11:28:43 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?64,68398,68398#msg-68398</guid>
            <title>Migrate informix programming language to MSQL? (3 replies)</title>
            <link>http://forums.mysql.com/read.php?64,68398,68398#msg-68398</link>
            <description><![CDATA[ Hello,<br />
<br />
glad i found a forum with msql &amp; informix issues.<br />
I'm not a DB geek, so i'd be grateful to get some help...<br />
<br />
our SMB plans to upgrade our old unix system to linux on the one hand, and our old informix 4.10 DB to a newer (&amp; open source-) one, as MYSQL. Now, even with the old informix system, it's possible to create a MYSQL DB as a copy which can be questionned by ODBC afterwards, but the problem is the Informix programming language which - obviously - is proprietary. Our programmer claims if we change everything to mysql, all the programms he wrote must be rewritten, which we want to avoid.<br />
<br />
So here is my question:<br />
<br />
if we migrate from informix (even from a more recent version) to mysql, is it possible not only to export the DB, but also to convert informix programming language to mysql?<br />
<br />
thanks for any help on this issue!!!]]></description>
            <dc:creator> </dc:creator>
            <category>Informix</category>
            <pubDate>Fri, 13 Oct 2006 00:27:27 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?64,65208,65208#msg-65208</guid>
            <title>View Problem with joins (no replies)</title>
            <link>http://forums.mysql.com/read.php?64,65208,65208#msg-65208</link>
            <description><![CDATA[ Hy, I have this problem.<br />
<br />
Informix<br />
<br />
select *<br />
from<br />
    outer(ref x0 ) ,en x1 ,enc x2<br />
where (((x1.p = x0.c ) AND (x1.n = x2.n) ) AND (x2.c = x0.c ) ) ;<br />
<br />
And in mysql, I'm doing<br />
<br />
from enc x2, en x1 left join (ref x0)<br />
	on ((x1.p = x0.c)  AND (x1.n = x2.n)  AND (x2.c = x0.c)))<br />
<br />
but this sentence give me this error:<br />
<br />
Error Code : 1054<br />
Unknown column 'x2.num' in 'on clause'<br />
(10 ms taken)<br />
<br />
How I can do this right.<br />
Sorry, for my poor english.]]></description>
            <dc:creator>Marco Marco</dc:creator>
            <category>Informix</category>
            <pubDate>Thu, 19 Jan 2006 16:18:07 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?64,65035,65035#msg-65035</guid>
            <title>How to transfer data b/w remote Informix NTS 2000 db server to local MySql (no replies)</title>
            <link>http://forums.mysql.com/read.php?64,65035,65035#msg-65035</link>
            <description><![CDATA[ Hi friends,<br />
Please help me to find a way to transfer data from a remote infomix database to local MySql database.Using dbacess tool i can make a flat file and later transfer it to my local pc and load data to database.But i need to make a programe which will run 24*7 and after every 1/2 hr load data to local pc.<br />
How can i directly transfer or how to unload data to to flat file on that remote machine which i can get using FTP.When i send 'unload to abc.txt select * from .....' it always says syntax error.I seached on net and found that this statement is used by dbaccess to execute on database and is not a pure sql query.<br />
Also i am not able to get resultset on that specific table because it is always in transaction and i get error 'system can not get information from this table' .It seems that table is locked due to transactions being taking place.<br />
Can i access dbaccess using a java program,telnet or any way that i can get my work done.<br />
Pleeeeeeaaaaaaaase help me out..........<br />
Thanks in advance...........<br />
Rajneesh.]]></description>
            <dc:creator>Rajneesh Yadav</dc:creator>
            <category>Informix</category>
            <pubDate>Thu, 19 Jan 2006 02:52:37 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?64,59363,59363#msg-59363</guid>
            <title>Group by problems (1 reply)</title>
            <link>http://forums.mysql.com/read.php?64,59363,59363#msg-59363</link>
            <description><![CDATA[ In INFORMIX, an early version, I have a table created as follows:<br />
 create table &quot;test&quot;.salvari <br />
  (<br />
    codc char(5),<br />
    codfisc char(20),<br />
    nrprezi integer,<br />
    nrprezf integer,<br />
    buc integer,<br />
    taxa float,<br />
    fel char(1),<br />
    numeex char(50),<br />
    adrex char(50),<br />
    locex char(30),<br />
    judex char(2),<br />
    data date,<br />
    timp datetime year to second,<br />
    nrord serial not null constraint &quot;test&quot;.n308_129,<br />
    regl char(1)<br />
  );<br />
revoke all on &quot;test&quot;.salvari from &quot;public&quot;;<br />
<br />
create index &quot;test&quot;.i_salvari1 on &quot;test&quot;.salvari (codfisc,data);<br />
    <br />
create index &quot;test&quot;.i_salvari2 on &quot;test&quot;.salvari (data,codc);<br />
create index &quot;test&quot;.i_salvari3 on &quot;test&quot;.salvari (codc);<br />
create index &quot;test&quot;.i_salvari4 on &quot;test&quot;.salvari (codfisc);<br />
create index &quot;test&quot;.i_salvari5 on &quot;test&quot;.salvari (nrprezi,nrprezf);<br />
    <br />
create index &quot;test&quot;.salvari_data on &quot;test&quot;.salvari (data);<br />
create index &quot;test&quot;.tr1 on &quot;test&quot;.salvari (nrord); <br />
<br />
<br />
and I have the following select statement: select * from salvari where data=&quot;11/06/2005&quot; group by codfisc<br />
<br />
Why is informix saying that codc needs to be in the group by statement, then, if I insert this column I get that nrprezi must be also in group by and so on. I just need a grouping by codfisc, because I need just one sum(taxa) for every distinct codfisc. Please help, 'cause I'm novice.]]></description>
            <dc:creator>Adrian Baceanu</dc:creator>
            <category>Informix</category>
            <pubDate>Tue, 16 Dec 2008 04:33:00 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?64,47418,47418#msg-47418</guid>
            <title>Porting Informix 4GL code to MySql c api (1 reply)</title>
            <link>http://forums.mysql.com/read.php?64,47418,47418#msg-47418</link>
            <description><![CDATA[ Hi,<br />
<br />
Does anyone know if there's an Mysql  c api equivalent of the Informix 4gl type definitions of tbale name's and column names i.e.<br />
<br />
Informix 4gl definition of a table : p_table1 RECORD LIKE table1.*<br />
 <br />
I want to define a new table 'p_table1' to be exactly like 'table1', and then assign values to individual column's in the new table.<br />
<br />
<br />
 Informix 4gl definition of a column:	p_customer LIKE customer_table.customer<br />
<br />
 i.e I want to define a variable 'p_customer' to be same as column customer in the database table customer_table.<br />
		<br />
  Is there anything similar in Mysql c api?<br />
<br />
Thanks<br />
<br />
Navin.]]></description>
            <dc:creator>Navin Patel</dc:creator>
            <category>Informix</category>
            <pubDate>Fri, 18 May 2007 10:49:37 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?64,42760,42760#msg-42760</guid>
            <title>ISQL like Query By Example front end for MySQL (2 replies)</title>
            <link>http://forums.mysql.com/read.php?64,42760,42760#msg-42760</link>
            <description><![CDATA[ I have used, and still use, Informix's ISQL package for many years for several small databases. I depend heavily on the &quot;query by example&quot; nature of the forms and I like the quick and easy way forms and reports can be created.<br />
I want to migrate to MySQL, but haven't yet found a similar front end of MySQL.<br />
I have started to write a curses based package, but, of course, don't want to reinvent the wheel if the work has been done already.<br />
So, my question is: Is there such a package avalable, or in development for MySQL?<br />
I don't want this to be a long winded post, but if I have been too criptic, please contact via e-mail and I'll answer any questions I can.<br />
<br />
Merv]]></description>
            <dc:creator>Merv Graham</dc:creator>
            <category>Informix</category>
            <pubDate>Wed, 30 May 2007 17:44:41 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?64,36854,36854#msg-36854</guid>
            <title>Table conversion from Informix to MySQL 4.1 (4 replies)</title>
            <link>http://forums.mysql.com/read.php?64,36854,36854#msg-36854</link>
            <description><![CDATA[ Hey!<br />
I'm doing some first steps in converting existing Informix tables to MySQL (4.1) and was positivley suprised how easy this seems to be. Can you have a look at the following example and give me a hint if there are pitfalls I didn't recognize?<br />
<br />
Original Informix table:<br />
create table example<br />
(<br />
    number integer not null,<br />
    enroute char(30) default &quot;&quot;,<br />
    object char(70),<br />
    attribute char(50),<br />
    value char(80),<br />
    lastupdate datetime year to second,<br />
    action char(1),<br />
    userid char(30),<br />
    commentlen smallint,<br />
    reserved char(18),<br />
    comments char(300),<br />
    reserved2 char(500)<br />
);<br />
<br />
MySQL 4.1 table syntax:<br />
create table example<br />
(<br />
    number integer not null,    &lt;- It seems that MySQL does automatically add a default 0?<br />
    enroute char(30) default &quot;&quot;,<br />
    object char(70),<br />
    attribute char(50),<br />
    value char(80),<br />
    lastupdate datetime,      &lt;- Does this match &quot;year-to-second&quot; type?<br />
    action char(1),<br />
    userid char(30),<br />
    commentlen smallint,<br />
    reserved char(18),<br />
    comments text(300),       &lt;- Converted this to text as char was to small<br />
    reserved2 text(500)         &lt;- Converted this to text as char was to small<br />
);<br />
I think this is fine, any comments?<br />
<br />
In Informix I sometimes saw statments like &quot;extent size 16 next size 32&quot; at the end of the table definition. Can I just forget about them?<br />
<br />
Converting indices also seems to be quite easy, e.g. a statement like<br />
&quot;create unique index exampleidx on example (object,attribute);&quot;<br />
is working 1:1 on MySQL :-) <br />
Any pitfalls with create index known?<br />
<br />
Thanks,<br />
Andreas]]></description>
            <dc:creator>Andreas Grote</dc:creator>
            <category>Informix</category>
            <pubDate>Mon, 22 Aug 2005 08:17:37 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?64,36202,36202#msg-36202</guid>
            <title>What does columnname::datatype do in a where clause (1 reply)</title>
            <link>http://forums.mysql.com/read.php?64,36202,36202#msg-36202</link>
            <description><![CDATA[ I have a SP I'm trying to convert, the WHERE clause looks like this:<br />
WHERE<br />
Reseler_Profile.Status_ID = Reseller_Status.Status_ID AND<br />
	             (param_Reseller_Id IS NULL OR Reseler_Profile.Reseller_Id::CHAR(4) LIKE param_Reseller_Id)<br />
<br />
Anyone know what it does and what the MySQL Equivalent is?<br />
<br />
Ross]]></description>
            <dc:creator>Ross Rankin</dc:creator>
            <category>Informix</category>
            <pubDate>Tue, 02 Aug 2005 15:35:13 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?64,34220,34220#msg-34220</guid>
            <title>MySQL Migration Toolkit (no replies)</title>
            <link>http://forums.mysql.com/read.php?64,34220,34220#msg-34220</link>
            <description><![CDATA[ MySQL Migration Toolkit simplifies migration from third-party databases.<br />
<br />
The Toolkit has support for: <br />
1) &quot;Generic migration&quot; from Any Database that has a JDBC Driver. <br />
2) &quot;Optimized migration&quot; from MS Access, MS SQL Server and Oracle.<br />
<br />
Docs: <br />
<a rel="nofollow"  href="http://dev.mysql.com/doc/migration-toolkit/en/index.html">http://dev.mysql.com/doc/migration-toolkit/en/index.html</a> <br />
<br />
Forum: <br />
<a rel="nofollow"  href="http://forums.mysql.com/list.php?104">http://forums.mysql.com/list.php?104</a>]]></description>
            <dc:creator>Edwin DeSouza</dc:creator>
            <category>Informix</category>
            <pubDate>Wed, 13 Jul 2005 17:45:40 +0000</pubDate>
        </item>
    </channel>
</rss>
