Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Tools for Informix [closed]

Tags:

informix

Are there any tools available for Informix, similar to 'Query Analyzer' for SQL Server?

like image 481
John Avatar asked Feb 04 '23 08:02

John


2 Answers

We needed a Query Analyzer-like tool for an Informix project some time ago, and settled on RazorSQL, which is Java based, so it's completely platform independent (Windows, MacOS, Linux, etc). About half of the development team at our company uses Macs, so that was a requirement. On top of that, it can connect to any database through JDBC (29 different databases, according to the website).

I've used it extensively on MySQL, SQLServer and Informix, and can confirm it works great on all of them. Before RazorSQL, I was using MySQL tools, and SQLServer Management Studio on a VM, but having a single tool to work with any DB you can throw at it is pretty nice. Also, for accesing Informix from a Mac, it's one of the few options available.

like image 83
mjuarez Avatar answered Feb 05 '23 22:02

mjuarez


Not knowing anything about 'Query Analyzer' for SQL Server, I could be being misled by its name, but...

  • The Open Admin Tool has support for analyzing query performance in a number of ways.
  • Server Studio (SSJE) has some support for query analysis and performance monitoring.
  • The basic server provides SET EXPLAIN to describe a query plan.
  • There are numerous performance analysis tools - such as ON-Stat and the pseudo-tables in the SysMaster database.
  • There are also some ancient tools such as 'ON-Perf' distributed with IDS that may help too.
like image 28
Jonathan Leffler Avatar answered Feb 05 '23 22:02

Jonathan Leffler