Save 
Join IIUG
 for   
 

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


RSS Feed: IIUG Forum: Forum IIUG Português

More IIUG RSS Feeds

Forum IIUG Português was created for Portuguese-speaking Informix users to exchange questions and information about Informix.


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

Below is the latest content available from this feed:

Conversão de Outer para left outer join
Posted by: sergeinfor@gmail.com (Serge Nunes) - Mon, 21 May 2007 11:41:52 EDT
Viva,

Encontro-me com vários problemas para converter para converter scripts de
select de informix para ansi.

Um dos quais prende-se pelo facto de converter algo do género, apresentado
abaixo, em que apesar de devolver o mesmo, demora muito mais tempo(no 1º
caso poucos segundos, no 2º caso cerca de 10minutos):

SELECT tab1.economica,

sum(tab3.valor)

FROM tab2,

tab1,

OUTER (tab3,

tab4)

WHERE ( tab3.anoecon = tab1.anoecon ) and

( tab1.anoecon = tab2.anoecon ) and

( tab1.economica = tab2.economica ) and

( tab3.organica = tab1.organica ) and

( tab3.economica = tab1.economica ) and

( tab4.anomov = tab3.anoecon ) and

( tab4.tipomov = tab3.tipomov ) and

( tab4.nummov = tab3.nummov ) and

( ( tab1.anoecon = :argumento_ano ) AND

( tab1.organica <> '00' ) AND

( tab4.numero is not null ) AND

( tab4.datadelib <= :argumento_data) )
GROUP BY tab1.economica
ORDER BY tab1.economica ASC

, para

SELECT tab1.economica,

sum(tab3.valor)

FROM (tab2 inner join tab1

ON ( tab1.anoecon = tab2.anoecon ) and

( tab1.economica = tab2.economica ) and

( tab1.anoecon = :argumento_ano ) AND

( tab1.organica <> '00' )

)

left outer join( tab3 inner join tab4

ON ( tab4.anomov = tab3.anoecon ) and

( tab4.tipomov = tab3.tipomov ) and

( tab4.nummov = tab3.nummov ) and

( tab4.numero is not null ) and

( tab4.datadelib <= :argumento_data)

)

ON ( tab3.anoecon = tab1.anoecon ) and

( tab3.organica = tab1.organica ) and

( tab3.economica = tab1.economica )

GROUP BY tab1.economica
ORDER BY tab1.economica ASC

Também agradeço caso saibam de *links* ou documentos que expliquem
pormenorizadamente como efectuar tal processo.

Agradeço desde já,

Serge Nunes.




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

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

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

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

Re: .NET Provider - Muito Lento
Posted by: domusonline@gmail.com (FERNANDO NUNES) - Mon, 05 Feb 2007 18:30:42 EST
O driver .NET tinha várias áreas para melhoria. Actualmente a IBM está a
disponibilizar uma versão "open beta" do novo cliente .NET. Na página de
entrada do IIUG está um link para o site da IBM onde essa versão pode ser
obtida.

Se o seu trabalho está ainda numa fase de desenvolvimento e puder dispensar um
ambiente para testes onde possa instalar este novo driver talvez seja uma boa
opção.

Cumprimentos.




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

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

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

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

RES: .NET Provider - Muito Lento
Posted by: ccoimbra@cleartech.com.br (Celso Cabral Coimbra) - Wed, 27 Dec 2006 14:07:41 EST
Você pode trocar a conexão ODBC por OLEDB. Isto irá com certeza melhorar o
tempo de resposta.

Para isto você terá que executar o script coledbp.sql que você encontra no
Client do Informix versão Windows contra o banco sysmaster.

Você pode obter maiores informações no site

http://publib.boulder.ibm.com/infocenter/idshelp/v10/index.jsp?topic=/com.ibm.cpi.doc/cpi93.htm

Celso Coimbra
ClearTech Ltda
"Unlock your revenue"
Tel: (019) 2104-4509
E-mail: ccoimbra@cleartech.com.br

-----Mensagem original-----
De: iiug-por-bounces@iiug.org [mailto:iiug-por-bounces@iiug.org]Em nome
de NIVALDO OLIVEIRA
Enviada em: quarta-feira, 27 de dezembro de 2006 16:59
Para: iiug-por@iiug.org
Assunto: .NET Provider - Muito Lento [31]

Estou usando .NET provider para acesso ao banco de dados, que está em um
servidor LINUX. Através da conexão do dbaccess(ODBC) a query roda muito rápido
(menos de 1 segundo), entretando de dentro do .NET são 10 longos segundos.

Como posso resolver isso?????








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

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

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

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

.NET Provider - Muito Lento
Posted by: nivaldof@onda.com.br (NIVALDO OLIVEIRA) - Wed, 27 Dec 2006 13:59:13 EST
Estou usando .NET provider para acesso ao banco de dados, que está em um
servidor LINUX. Através da conexão do dbaccess(ODBC) a query roda muito rápido
(menos de 1 segundo), entretando de dentro do .NET são 10 longos segundos.

Como posso resolver isso?????




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

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

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

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

Teste (ignorar)
Posted by: domusonline@gmail.com (FERNANDO NUNES) - Fri, 17 Mar 2006 06:21:16 EST
Apenas pretendo fazer um teste pois é o primeiro forum em que me inscrevo.


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

To post a response via email use:

Address: iiug-por@iiug.org
Subject: Teste (ignorar) [30]

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

Apenas pretendo fazer um teste pois é o primeiro forum em que me inscrevo.


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

To post a response via email use:

Address: iiug-por@iiug.org
Subject: Teste (ignorar) [30]

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

 
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