<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel>
        <title>MySQL Forums - Analytics, Reporting, BI</title>
        <description>Forum for Reporting discussions</description>
        <link>http://forums.mysql.com/list.php?33</link>
        <lastBuildDate>Thu, 20 Jun 2013 10:32:39 +0000</lastBuildDate>
        <generator>Phorum 5.2.19</generator>
        <item>
            <guid>http://forums.mysql.com/read.php?33,587083,587083#msg-587083</guid>
            <title>MySQL BI Dashboards and Reports (no replies)</title>
            <link>http://forums.mysql.com/read.php?33,587083,587083#msg-587083</link>
            <description><![CDATA[ InetSoft's Style Intelligence, is a perfect solution for MySQL data and, ease of access is a core fundamental behind its design. End-user defined data mashup permits users to combine disparate data sources into a unified data sets, through drag-and-drop. VPMs allow administrators to limit data-level access by user, role, or group. OLAP overlays let users create multi-dimensional hierarchies on top of a logic model. The GUI is powered by web 2.0 Flex and AJAX, delivering a zero-client, enterprise-quality experience to any Web-enabled device. Dashboards are built using proprietary Viewsheet technology that leverages of the full power of data worksheets to visualize, analyze, and interact with underlying data. Ad Hoc Reporter is a powerful, yet easy-to-use tool that is used to codify, publish, and broadcast reports on the fly. For more information, please visit <a href="http://www.inetsoft.com"  rel="nofollow">http://www.inetsoft.com</a>]]></description>
            <dc:creator>Darren Raffield</dc:creator>
            <category>Analytics, Reporting, BI</category>
            <pubDate>Wed, 22 May 2013 16:05:56 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?33,581418,581418#msg-581418</guid>
            <title>Client memory used by crystal reports (no replies)</title>
            <link>http://forums.mysql.com/read.php?33,581418,581418#msg-581418</link>
            <description><![CDATA[ Hello,<br />
i want to replace my SQL server 2008 by Mysql 5.<br />
I've a crystal report document that request a MS SQL database table (1 552 131 rows and 84 columns).<br />
When i execute the request from the crystal report document, the memory usage of crw32.exe process is 200MB<br />
<br />
I've created a similar database on MYSQL serveur.<br />
When the same request is executed from the same crystal report document pointed to the MYSQL Database (MYSql ODBC 5.1 driver), the amount of memory of crw32.exe process is 1.5GB!!!!<br />
<br />
Is there a way to reduce the amount of memory of crw32.exe process when request a MYSQL table?<br />
<br />
Thank you.]]></description>
            <dc:creator>PHILIPPE CHAUVIN</dc:creator>
            <category>Analytics, Reporting, BI</category>
            <pubDate>Fri, 15 Mar 2013 09:45:30 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?33,569848,569848#msg-569848</guid>
            <title>Benetl, a free ETL tool for files using MySQL, is out in version 4.1 (no replies)</title>
            <link>http://forums.mysql.com/read.php?33,569848,569848#msg-569848</link>
            <description><![CDATA[ Dear all,<br />
<br />
<br />
Benetl, a free ETL tool for files using MySQL, is out in version 4.1.<br />
<br />
You can freely download it at: www.benetl.net<br />
<br />
This version brings GUI improvement: control of field names and table (EtlTool) name.<br />
With this version, it is now possible to use &gt; and &lt; with &quot;if&quot; operator on a part formula.<br />
This version brings some code correction and improvement.<br />
<br />
You should update.<br />
<br />
You can learn more about ETL tools at:<br />
<a href="http://en.wikipedia.org/wiki/Extract,_transform,_load"  rel="nofollow">http://en.wikipedia.org/wiki/Extract,_transform,_load</a><br />
<br />
Thanks for your interest.<br />
<br />
Regards,]]></description>
            <dc:creator>Benoît Carpentier</dc:creator>
            <category>Analytics, Reporting, BI</category>
            <pubDate>Sat, 29 Sep 2012 22:25:40 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?33,561906,561906#msg-561906</guid>
            <title>DONT SHOW TABLES AND VISTAS WITH CONECT CRYSTAL REPORT 9 WITH ODBC MYSQL (1 reply)</title>
            <link>http://forums.mysql.com/read.php?33,561906,561906#msg-561906</link>
            <description><![CDATA[ I have installed crystal report 9 and made the connection with mysql odbc. odb on selecting the crystal shows me only the database and does not display any table. What could be happening?]]></description>
            <dc:creator>yesenia fuentes</dc:creator>
            <category>Analytics, Reporting, BI</category>
            <pubDate>Mon, 30 Jul 2012 12:32:26 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?33,544070,544070#msg-544070</guid>
            <title>Measure bandwidth/IO rate of a individual database (no replies)</title>
            <link>http://forums.mysql.com/read.php?33,544070,544070#msg-544070</link>
            <description><![CDATA[ Hi,<br />
I have several DBs in one sql instance, I want to calculate the bandwidth or IO rate taken by each DB. Is there any way to do this?<br />
Thankx.]]></description>
            <dc:creator>Malinga Perera</dc:creator>
            <category>Analytics, Reporting, BI</category>
            <pubDate>Tue, 29 May 2012 11:03:43 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?33,530534,530534#msg-530534</guid>
            <title>mysql query with multiple transactions (no replies)</title>
            <link>http://forums.mysql.com/read.php?33,530534,530534#msg-530534</link>
            <description><![CDATA[ -- ----------------------------<br />
-- Table structure for driver<br />
-- ----------------------------<br />
DROP TABLE IF EXISTS `driver`;<br />
CREATE TABLE `driver` (<br />
  `id` int(11) NOT NULL AUTO_INCREMENT,<br />
  `fullname` varchar(100) COLLATE utf8_unicode_ci NOT NULL<br />
  PRIMARY KEY (`id`)<br />
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;<br />
<br />
-- ----------------------------<br />
-- Table structure for taxi<br />
-- ----------------------------<br />
DROP TABLE IF EXISTS `taxi`;<br />
CREATE TABLE `taxi` (<br />
  `id` int(11) NOT NULL AUTO_INCREMENT,<br />
  `unit` varchar(5) NOT NULL<br />
  PRIMARY KEY (`id`)<br />
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;<br />
<br />
-- ----------------------------<br />
-- Table structure for debts<br />
-- ----------------------------<br />
DROP TABLE IF EXISTS `debts`;<br />
CREATE TABLE `debts` (<br />
  `id` bigint(20) NOT NULL AUTO_INCREMENT,<br />
  `data` float(10,2) NOT NULL DEFAULT '0.00',<br />
  `driver` bigint(20) NOT NULL,<br />
  `dateadded` datetime NOT NULL<br />
  PRIMARY KEY (`id`)<br />
) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=latin1;<br />
<br />
-- ----------------------------<br />
-- Table structure for dispatch<br />
-- ----------------------------<br />
DROP TABLE IF EXISTS `dispatch`;<br />
CREATE TABLE `dispatch` (<br />
  `id` int(11) NOT NULL AUTO_INCREMENT,<br />
  `driver` int(11) NOT NULL,<br />
  `taxi` int(11) NOT NULL,<br />
  `dispatchdate` date DEFAULT NULL,<br />
  `rate` float DEFAULT '0'<br />
  PRIMARY KEY (`id`)<br />
) ENGINE=InnoDB AUTO_INCREMENT=1790 DEFAULT CHARSET=latin1;<br />
<br />
-- ----------------------------<br />
-- Table structure for rpayment<br />
-- ----------------------------<br />
DROP TABLE IF EXISTS `rpayment`;<br />
CREATE TABLE `rpayment` (<br />
  `id` bigint(20) NOT NULL AUTO_INCREMENT,<br />
  `dateadded` datetime DEFAULT NULL,<br />
  PRIMARY KEY (`id`)<br />
) ENGINE=InnoDB AUTO_INCREMENT=88 DEFAULT CHARSET=latin1;<br />
<br />
-- ----------------------------<br />
-- Table structure for rpayment_detail<br />
-- ----------------------------<br />
DROP TABLE IF EXISTS `rpayment_detail`;<br />
CREATE TABLE `rpayment_detail` (<br />
  `id` bigint(20) NOT NULL AUTO_INCREMENT,<br />
  `rpayment` bigint(20) NOT NULL,<br />
  `dispatch` bigint(20) NOT NULL,<br />
  `amount` float DEFAULT '0'<br />
  PRIMARY KEY (`id`)<br />
) ENGINE=InnoDB AUTO_INCREMENT=56 DEFAULT CHARSET=latin1;<br />
<br />
INSERT INTO `driver` VALUES ('1', 'DRIVER1');<br />
INSERT INTO `driver` VALUES ('2', 'DRIVER2');<br />
INSERT INTO `driver` VALUES ('3', 'DRIVER3');<br />
<br />
INSERT INTO `taxi` VALUES ('1', 'UNIT1');<br />
INSERT INTO `taxi` VALUES ('2', 'UNIT2');<br />
INSERT INTO `taxi` VALUES ('3', 'UNIT3');<br />
<br />
INSERT INTO `debts` VALUES ('1','100.00', '1', '2012-04-01 16:07:15');<br />
INSERT INTO `debts` VALUES ('2','200.00', '1', '2012-04-01 16:25:56');<br />
INSERT INTO `debts` VALUES ('3','300.00', '3', '2012-04-01 16:34:42');<br />
INSERT INTO `debts` VALUES ('4','400.00', '2', '2012-04-02 00:11:10');<br />
INSERT INTO `debts` VALUES ('5','200.00', '1', '2012-04-02 00:57:58');<br />
INSERT INTO `debts` VALUES ('6','500.00', '3', '2012-04-02 10:25:39');<br />
INSERT INTO `debts` VALUES ('7','100.00', '2', '2012-04-02 11:15:25');<br />
<br />
INSERT INTO `dispatch` VALUES ('1', '1', '1', '2012-04-01', '1000');<br />
INSERT INTO `dispatch` VALUES ('2', '2', '2', '2012-04-01', '1000');<br />
INSERT INTO `dispatch` VALUES ('3', '3', '3', '2012-04-01', '1000');<br />
INSERT INTO `dispatch` VALUES ('4', '1', '1', '2012-04-02', '1000');<br />
INSERT INTO `dispatch` VALUES ('5', '2', '2', '2012-04-02', '1000');<br />
INSERT INTO `dispatch` VALUES ('6', '3', '3', '2012-04-02', '1000');<br />
<br />
INSERT INTO `rpayment` VALUES ('1', '2012-04-30 20:11:16');<br />
INSERT INTO `rpayment` VALUES ('2', '2012-05-03 03:25:31');<br />
<br />
INSERT INTO `rpayment_detail` VALUES ('1', '1', '1', '1000');<br />
INSERT INTO `rpayment_detail` VALUES ('2', '1', '4', '0',);<br />
INSERT INTO `rpayment_detail` VALUES ('3', '2', '2', '0');<br />
INSERT INTO `rpayment_detail` VALUES ('4', '2', '5', '500')<br />
<br />
I want to have a result like the following:<br />
<br />
<br />
UNIT     DRIVER     RPAYMENT_TOTAL     DEBTS<br />
---------------------------------------------<br />
UNIT1    DRIVER1    1000               500<br />
UNIT2    DRIVER2    500                500<br />
UNIT3    DRIVER3    0                  800<br />
<br />
Please help, thanks,<br />
<br />
noister]]></description>
            <dc:creator>noie lendio</dc:creator>
            <category>Analytics, Reporting, BI</category>
            <pubDate>Fri, 04 May 2012 04:30:40 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?33,521422,521422#msg-521422</guid>
            <title>Communications link failure error in mysql 5.1 (no replies)</title>
            <link>http://forums.mysql.com/read.php?33,521422,521422#msg-521422</link>
            <description><![CDATA[ Hi,<br />
<br />
I am using mysql 5.1 with my java application. Once in a day I get this error, whenever I access the application after a long interval(few hours). Let say, my last hit to database through application was in the night and in the next morning I access the application again, I get this error<br />
<br />
----------------------------------------------------------<br />
com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure<br />
<br />
Last packet sent to the server was 1 ms ago.<br />
----------------------------------------------------------<br />
<br />
I changed the interactive_timeout variable to from 8 hours to 24 hours, but it did not work.<br />
<br />
Can anyone provide me the solution for this?<br />
<br />
<br />
Thanks in advance.<br />
Jeetendra]]></description>
            <dc:creator>Jeetendra Garg</dc:creator>
            <category>Analytics, Reporting, BI</category>
            <pubDate>Fri, 23 Mar 2012 07:00:35 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?33,519221,519221#msg-519221</guid>
            <title>Benetl, a free ETL tool for MySQL, is out in version 4.0 (no replies)</title>
            <link>http://forums.mysql.com/read.php?33,519221,519221#msg-519221</link>
            <description><![CDATA[ Dear all,<br />
<br />
Benetl, a free ETL tool for MySQL, is out in version 4.0.<br />
<br />
This version brings you the opportunity to manipulate structured data lines without separators.<br />
If every lines have the same structure and no separators, with &quot;part&quot; formula you can use extra fields, regular expressions, substrings, on these lines.<br />
<br />
Benetl is freely dowloadable at:<a href="http://www.benetl.net"  rel="nofollow">http://www.benetl.net</a><br />
<br />
You can learn more about ETL tools at: <a href="http://en.wikipedia.org/wiki/Extract,_transform,_load"  rel="nofollow">http://en.wikipedia.org/wiki/Extract,_transform,_load</a><br />
<br />
Thanks for your interest.<br />
<br />
Regards,<br />
<br />
-- <br />
Benoît Carpentier<br />
<a href="http://www.benetl.net"  rel="nofollow">http://www.benetl.net</a><br />
Founder of Benetl and Java project manager]]></description>
            <dc:creator>Benoît Carpentier</dc:creator>
            <category>Analytics, Reporting, BI</category>
            <pubDate>Fri, 09 Mar 2012 05:49:44 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?33,507440,507440#msg-507440</guid>
            <title>Feature-rich, Web-based, self-service reporting solution-ActiveReports Server (no replies)</title>
            <link>http://forums.mysql.com/read.php?33,507440,507440#msg-507440</link>
            <description><![CDATA[ ActiveReports Server provides business users with a feature-rich, Web-based, self-service reporting solution, enabling them to easily create sophisticated ad hoc reports. Its browser-based design and secure, scalable storage let IT departments deploy and manage self-service reporting much more effectively than they can with traditional reporting tools.<br />
To know more about the software logon to www.activereportsserver.com]]></description>
            <dc:creator>Harvinder Kaur</dc:creator>
            <category>Analytics, Reporting, BI</category>
            <pubDate>Mon, 02 Jan 2012 09:28:50 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?33,505489,505489#msg-505489</guid>
            <title>NextReports Suite - Latest Version information (4 replies)</title>
            <link>http://forums.mysql.com/read.php?33,505489,505489#msg-505489</link>
            <description><![CDATA[ NextReports 4.2 was released<br />
<br />
We are pleased to announce that our reporting suite NextReports has reached version 4.2.<br />
<br />
NextReports is a reporting software suite composed of free reports designer, free reporting engine and affordable reporting server.<br />
<br />
NextReports Designer is an application able to design in-grid reports, using connections to most popular databases like MySql, Oracle, MSSQL, PostgreSLQ, Firebird, Derby and SQLite. NextReports Designer has an intuitive interface that makes report creation a quick and easy task. The designer has a convenient single-click publish/download mechanism for NextReports Server.<br />
<br />
NextReports Engine is a Java platform development library which can be used to run NextReports inside your applications. This library is light and very easy to use.<br />
<br />
NextReports Server allows you to schedule NextReports and Jasper reports and to automatically deliver reports via E-mail, FTP, SSH, Windows Share, WebDAV to your business contacts in most popular file formats like HTML, EXCEL, PDF, RTF, CSV, TSV, TXT, XML. Next Report Server will present your charts, table reports and alarm reports in real time inside dashboards.<br />
<br />
For more information, visit <a href="http://www.next-reports.com"  rel="nofollow">http://www.next-reports.com</a>]]></description>
            <dc:creator>asf mkt</dc:creator>
            <category>Analytics, Reporting, BI</category>
            <pubDate>Tue, 05 Jun 2012 08:13:20 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?33,503259,503259#msg-503259</guid>
            <title>Benetl, a free ETL tool for files using MySQL, is out in version 3.9 (no replies)</title>
            <link>http://forums.mysql.com/read.php?33,503259,503259#msg-503259</link>
            <description><![CDATA[ Dear all,<br />
<br />
Benetl, a free ETL tool for MySQL, is out in version 3.9.<br />
<br />
This version is correcting two bugs in GUI and brings code improvement.<br />
<br />
Benetl is freely dowloadable at: <a href="http://www.benetl.net"  rel="nofollow">http://www.benetl.net</a><br />
<br />
You can learn more about ETL tools at: <a href="http://en.wikipedia.org/wiki/Extract,_transform,_load"  rel="nofollow">http://en.wikipedia.org/wiki/Extract,_transform,_load</a><br />
<br />
Thanks for your interest.<br />
<br />
Regards,]]></description>
            <dc:creator>Benoît Carpentier</dc:creator>
            <category>Analytics, Reporting, BI</category>
            <pubDate>Mon, 28 Nov 2011 05:36:22 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?33,499234,499234#msg-499234</guid>
            <title>MySql memory issue (no replies)</title>
            <link>http://forums.mysql.com/read.php?33,499234,499234#msg-499234</link>
            <description><![CDATA[ I am having a memory problem when trying to update Cognos Query subjects in Framework manager running on MySql.   I have a large MySql table that I have added a new column to and I am trying to update the table definition in Cognos Framework manager in order to pull the new version of the MySql table into Cognos.  Smaller tables work fine but this larger table I am getting the error message shown below.  I have 16G of memory for my Mysql server and am running the community version 5.1 of MySql... has anyone encountered this problem or have any suggestion as to what may be the cause ???<br />
<br />
RQP-DEF-0177 An error occurred while performing operation 'sqlPrepareWithOptions' status='-9'.<br />
UDA-SQL-0107 A general exception has occurred during the operation &quot;prepare&quot;.<br />
[MySQL][ODBC 3.51 Driver][mysqld-5.1.49-community-log]MySQL client ran out of memory]]></description>
            <dc:creator>Norm Bailey</dc:creator>
            <category>Analytics, Reporting, BI</category>
            <pubDate>Wed, 16 Nov 2011 15:35:50 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?33,490564,490564#msg-490564</guid>
            <title>Benetl, a free ETL tool for MySQL, is out in version 3.8 (no replies)</title>
            <link>http://forums.mysql.com/read.php?33,490564,490564#msg-490564</link>
            <description><![CDATA[ Dear all,<br />
<br />
Benetl, a free ETL tool for MySQL, is out in version 3.8.<br />
It is now supporting official MySQL (5.x) driver(s), not provided.<br />
<br />
Benetl is freely dowloadable at: <a href="http://www.benetl.net"  rel="nofollow">http://www.benetl.net</a><br />
<br />
Please read documentation to see how to use the official MySQL driver instead of the provided driver.<br />
<br />
You can learn more about ETL tools at: <a href="http://en.wikipedia.org/wiki/Extract,_transform,_load"  rel="nofollow">http://en.wikipedia.org/wiki/Extract,_transform,_load</a><br />
<br />
Thanks for your interest.<br />
<br />
Regards]]></description>
            <dc:creator>Benoît Carpentier</dc:creator>
            <category>Analytics, Reporting, BI</category>
            <pubDate>Mon, 24 Oct 2011 15:34:06 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?33,444568,444568#msg-444568</guid>
            <title>Reporting tool  for MYSQL (4 replies)</title>
            <link>http://forums.mysql.com/read.php?33,444568,444568#msg-444568</link>
            <description><![CDATA[ How do you intergrate a reporting tool like FastReport.Net with MYSQL ?]]></description>
            <dc:creator>HERBERTS NGOBOLA</dc:creator>
            <category>Analytics, Reporting, BI</category>
            <pubDate>Fri, 09 Mar 2012 16:50:14 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?33,438236,438236#msg-438236</guid>
            <title>Secured transactions with Goo2o stores (no replies)</title>
            <link>http://forums.mysql.com/read.php?33,438236,438236#msg-438236</link>
            <description><![CDATA[ I always wanted an online presence of my store, but the thing which I was most afraid of is the security of funds. <a href="http://goo2o.biz/goo2o-ecommerce-operations"  rel="nofollow">Goo2o Gurgaon</a> company gave me a presentation about how can I check the security of my funds. They gave me full information on the funds safety and the steps involved in deposition and withdrawal of funds. Within days time Goo2o Gurgaon had setup my online store and it’s been 6 months that I am carrying out monetary transactions online and haven’t faced a single problem.]]></description>
            <dc:creator>Tammana chopra</dc:creator>
            <category>Analytics, Reporting, BI</category>
            <pubDate>Sat, 01 Oct 2011 10:42:19 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?33,434035,434035#msg-434035</guid>
            <title>WIDatabase (SQL, MySQL, SqLite Library (no replies)</title>
            <link>http://forums.mysql.com/read.php?33,434035,434035#msg-434035</link>
            <description><![CDATA[ Write your code without regard to the database that it will use.<br />
<br />
WIDatabase is a .NET 3.5 library that simplifies the use of databases from Microsoft SQL, MySql and SqLite.This library isolates the developer from the nuances associated with moving between database types.We feel that a software developer should not care if an integer is stored as 64 or 32 bit or as text. Additionally, the need to learn the idiosyncrasies of SQL for each database type impedes the core task of a software developer.<br />
<br />
WIDatabase improves time to market by allowing one version of source code to be used with different databases with the simple flip of a software switch. This does not mean that functionality is missing. Advanced users can still utilize the SQL Language if desired, but much of that need has been eliminated.<br />
<br />
Wiker.net/widb.html]]></description>
            <dc:creator>Park Wiker</dc:creator>
            <category>Analytics, Reporting, BI</category>
            <pubDate>Tue, 13 Sep 2011 15:29:26 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?33,432954,432954#msg-432954</guid>
            <title>need help in generating monthly reports with mysql (2 replies)</title>
            <link>http://forums.mysql.com/read.php?33,432954,432954#msg-432954</link>
            <description><![CDATA[ hi good day. i am currently developing a program for our thesis subject and i'm almost done with it. i want to know if how can i make reports? let's say i want to generate a report that lists down all the crimes that happened within the month of august 2011. i am using vb 6.0 + mysql as database. i have tried data report but i can't seem to use sort out. i can only generate all the records in the table. i came across this crystal report but i have also a problem. it's asking me for a printer. and i dont have one.]]></description>
            <dc:creator>benj ko</dc:creator>
            <category>Analytics, Reporting, BI</category>
            <pubDate>Thu, 06 Oct 2011 18:17:36 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?33,430871,430871#msg-430871</guid>
            <title>myDBR 3.0 web reporting solution released (no replies)</title>
            <link>http://forums.mysql.com/read.php?33,430871,430871#msg-430871</link>
            <description><![CDATA[ Hi,<br />
myDBR Team is happy to announce the the availability of myDBR 3.0 release available at <a href="http://mydbr.com"  rel="nofollow">http://mydbr.com</a>.<br />
<br />
<br />
myDBR allows very easy and fast web based report creation with advanced features like data editing directly inside the report web page, fully linked repots and plenty of more.<br />
<br />
<br />
You'll find myDBR as a free download from <a href="http://mydbr.com"  rel="nofollow">http://mydbr.com</a> alongside with the Premium version. <br />
<br />
Online demo can be found at <a href="http://mydbr.com/demo"  rel="nofollow">http://mydbr.com/demo</a> <br />
<br />
Happy reporting, <br />
-- <br />
myDBR Team]]></description>
            <dc:creator>Seppo Laaksonen</dc:creator>
            <category>Analytics, Reporting, BI</category>
            <pubDate>Tue, 16 Aug 2011 12:04:04 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?33,429256,429256#msg-429256</guid>
            <title>MySQL Reporting Made Simple With Stonefield Query SDK - Dashboards business reporting software Business intelligence software business performance management Database reporting software (no replies)</title>
            <link>http://forums.mysql.com/read.php?33,429256,429256#msg-429256</link>
            <description><![CDATA[ Build a custom, easy to use MySQL compatible Database Reporting solution using the Stonefield Query SDK.<br />
<br />
Stonefield Software Inc. today announced the new release of Stonefield Query for MySQL.<br />
<br />
This is Stonefield Software's latest release of our award winning Business Intelligence, reporting, and ad-hoc query software, for MySQL databases. This new release of Stonefield Query Version 4.1 for MySQL helps to eliminate IT bottlenecks by creating a self-service Business Intelligence (BI) reporting solution for the casual-user. <br />
<br />
Build a custom, easy to use MySQL compatible Database Reporting solution using the Stonefield Query SDK. Finally a solution that will allow your end-users to connect to your database through MySQL to query and report against your database application quickly and intuitively without IT support. <br />
<br />
The Stonefield Query SDK (software development kit) allows you to configure, integrate, and deliver custom end-user MySQL BI Reporting Solutions. Whether you are looking for a MySQL data mining, data analysis, data management, business intelligence or MySQL reporting tool to simply extract information from your MySQL database, Stonefield Query can meet your needs. <br />
<br />
Use the Configuration Utility that is included with the SDK to create the data dictionary, configuration, and script files for your database. Then deploy Stonefield Query to your users and let them startcreating the ad-hoc reports they need in just a few easy steps. Stonefield Query for MySQL BI Reporting allows you to connect to any MySQL database or any other ODBC or OLE DB-compliant database. Stonefield Query also supports non-traditional data sources like flat text files and data that can only be accessed through an API. <br />
<br />
Some great Stonefield Query features: <br />
<br />
- Real time reporting: Stonefield Query is directly connected to your MySQL data source. <br />
<br />
- No need to export and import data. Your reports, dashboards, charts and graphs are updated in real time as soon as you hit refresh. <br />
<br />
- Dashboards: The latest version of Stonefield Query 4.1 software offers a user-friendly executive dashboard solution that provides &quot;real time&quot; information about your business performance. Unlike conventional BI database reporting solutions, Stonefield Query has a short learning curve, letting you deliver a business reporting solution to end users faster. Stonefield Query is highly flexible, letting you create advanced reports in hours instead of days. <br />
<br />
- Drilldowns: With a single click of the mouse you can drill into a chart to see what makes up the numbers. <br />
<br />
- Charts and Graphs: Now everyone can create stunning charts and graphs. Our easy-to-use Chart Wizard leads you step by step through the creation of your graphical masterpiece. Select from over 35 different graph types with hundreds of variations to serve your graphing and charting needs. <br />
<br />
- PDF output: Now that you've created your masterpiece you can output your chart or graph to PDF and various image formats with just a few clicks of the mouse. <br />
<br />
- Schedule and Email: Stonefield Query lets you schedule charts/graphs to run at anytime of the day. Then you can have them automatically emailed to specific people. <br />
<br />
- Gallery tools: Click on the gallery tools button and open up nearly unlimited possibilities for formatting and customizing your graphs and charts. <br />
<br />
Let Stonefield Query take your presentations, reports, and documents to a new level. <br />
<br />
For more information about Stonefield Query or to download our free trial version, visit the website at: <a href="http://www.stonefieldquery.com"  rel="nofollow">http://www.stonefieldquery.com</a><br />
<br />
<br />
About Stonefield Software, Inc. <br />
<br />
Stonefield Software Inc., the maker of the award-winning Stonefield Query, has been developing MySQL reporting solutions since 1991. <br />
<br />
Our SDK version of Stonefield Query works with most database applications including: MySQL, Microsoft SQL Server, Microsoft Access, Oracle, DB2, Sybase, MySQL, Pervasive, FoxPro, and more. Stonefield has partnered with over 800 OEM and ISV partners to deliver ad hoc query and Business Intelligence (BI) reporting solutions to more than 225,000 users in over 65 countries globally to date. Our customers span all sectors and industries from: public to private, military to non-profits, Fortune 500 to SMEs. <br />
<br />
Stonefield has partnered with over 800 OEM and ISV partners to deliver BI reporting solutions to more than 225,000 users in over 65 countries globally to date. Our customers span all sectors and industries from: public to private, military to non-profits, Fortune 500 to SME’s. <br />
<br />
Stonefield Query has been designed and developed with the end-user in mind. <br />
<br />
Voice 1-800-563-1119<br />
Fax 1-800-563-5080<br />
Email: <a href="mailto:&#115;&#97;&#108;&#101;&#115;&#64;&#115;&#116;&#111;&#110;&#101;&#102;&#105;&#101;&#108;&#100;&#113;&#117;&#101;&#114;&#121;&#46;&#99;&#111;&#109;">&#115;&#97;&#108;&#101;&#115;&#64;&#115;&#116;&#111;&#110;&#101;&#102;&#105;&#101;&#108;&#100;&#113;&#117;&#101;&#114;&#121;&#46;&#99;&#111;&#109;</a><br />
<br />
Website: <a href="http://www.stonefieldquery.com"  rel="nofollow">http://www.stonefieldquery.com</a>]]></description>
            <dc:creator>Kent Kooper</dc:creator>
            <category>Analytics, Reporting, BI</category>
            <pubDate>Wed, 03 Aug 2011 17:20:55 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?33,428121,428121#msg-428121</guid>
            <title>BI Studio for MySQL Database (no replies)</title>
            <link>http://forums.mysql.com/read.php?33,428121,428121#msg-428121</link>
            <description><![CDATA[ Hello<br />
We hare happy to inform you about our new BI software BI Studio:<br />
<br />
BI Studio (Business Intelligence Studio) is a powerful and innovative business intelligence and data analysis software for the MySQL, Oracle, IBM DB2, IBM Informix Ingres, MS SQL Server,  PostgreSQL, FireBird, SQLite, MS Access, MS FoxPro, dBASE, EffiProz database systems. It supports also ODBC and OleDB connections and direct connections to MS Excel, Pradox, IBM Lotus Notes, CSV, Text and XML files. <br />
<br />
BI Studio simplifies analyzing, managing, editing, visualizing, and reporting your database and file/document data. It is designed for today's business world data analyzing and reporting problems.<br />
<br />
LINQ and SQL Query<br />
BI Studio provides powerful and intuitive SQL, LINQ query editor to analyze data. Using dynamic LINQ Query, you can execute descriptive statatistics methods and analyse your data. The Query editor supports code highlighting, code completion (IntelliSense) and text find/replace features.<br />
<br />
Data Reporting<br />
BI Studio provides powerful and modern reporting system, which helps you create flexible and feature rich reports. You can create (design) advanced and rich database reports, add images, charts or cross-tables (pivot tables) to the reports. The reports can be exported to PDF, XPS, XML, HTML, Word, Excel, RTF, TXT, CSV, EMF, BMP, JPEG, GIF, PNG, TIFF etc. file formats.<br />
<br />
Data Export<br />
You can export data into most popular file formats like: XML, HTML, CSV, MS Excel, Word and PowerPoint, OpenOffice Calc and Writer, RTF, PDF, XPS, JSON, dBASE and PNG.<br />
<br />
Data Import<br />
You can import data into your database from any database or file connections or directly from XML and CSV files. <br />
<br />
Fore more info:<br />
<a href="http://nucleonsoftware.com"  rel="nofollow">http://nucleonsoftware.com</a><br />
<br />
<br />
Nucleon Software<br />
Web:<a href="http://nucleonsoftware.com/"  rel="nofollow">http://nucleonsoftware.com/</a>]]></description>
            <dc:creator>Alparslan Candan</dc:creator>
            <category>Analytics, Reporting, BI</category>
            <pubDate>Sun, 24 Jul 2011 08:57:46 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?33,424312,424312#msg-424312</guid>
            <title>Reporting in Drupal (no replies)</title>
            <link>http://forums.mysql.com/read.php?33,424312,424312#msg-424312</link>
            <description><![CDATA[ I'm doing reporting and graphing in Drupal.<br />
I've tried setting up some reports off of my DB using the standard Drupal tools, but the reports look awfully blocky, not something you'd want to read through.<br />
For Graphing - I'm using Multigraph add-in in Drupal now.  It paints a graph inside the blank area of a page(node).<br />
<br />
Questions:<br />
1)  for Drupal mySQL people:<br />
For a Graphing/Reporting zone of the website.  Would it be &quot;kosher&quot; to not contain the graphs/reports inside the standard Drupal site template. Just have webpages that are minimal: Just a big graph or big &quot;like print copy&quot; report with &quot;back or close&quot;?<br />
<br />
2) Graphing:<br />
Anyone seen Multigraph against the packages that are mentioned here?  What is good?  Want free at this stage, unless there's a real over-riding reason.<br />
I don't need the most powerful. Want something that is quick and easy to learn and provides good compatibility with mySQL and has a few capabilities.<br />
I see ***Windward Reports - the easiest way to create reports from MySql*** mentioned here.  True?<br />
Thoughts?<br />
<br />
3) Reporting:<br />
I want to create something on a web page that basically is just a nicely readable 2-page printed report. What to use for this?<br />
Gordon]]></description>
            <dc:creator>Gordon Golding</dc:creator>
            <category>Analytics, Reporting, BI</category>
            <pubDate>Tue, 21 Jun 2011 21:22:48 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?33,423854,423854#msg-423854</guid>
            <title>DB Supervisor 1.3 (no replies)</title>
            <link>http://forums.mysql.com/read.php?33,423854,423854#msg-423854</link>
            <description><![CDATA[ Hi guys.<br />
<br />
MyFSys.org developers are glad to inform that &quot;DB Supervisor 1.3&quot; has been released. <br />
<br />
&quot;DB Supervisor&quot; is a powerful tool of MyFSys.org for control and analysis of DDL statement executed in MySQL® database server.<br />
<br />
Use the &quot;DB Supervisor&quot; to oversee the development of MySQL® database server. The results are presented in a convenient tabular form and as chart, with the ability to filter and sort by various groups (connection rules).<br />
<br />
We are confident that this product will be interesting to professional database developers and database architects.<br />
<br />
Key DB Supervisor features: . <br />
 * Easy installation without any changes to the existing MySQL server (i.e. no new schemas, tables, procedures, etc).<br />
 * Permanent monitoring of DB.<br />
 * Convenient filtration of incoming data.<br />
 * Convenient filtration of viewed data. (i.e. last day, week, month, etc.).<br />
 * Data presentation in charts.<br />
 * No impact on MySQL performance, low resource consumption.<br />
<br />
Happy reporting, <br />
--<br />
MyFSys.org<br />
--<br />
Serg Div.<br />
<br />
----<br />
Download: <a href="http://www.myfsys.org/downloads/DBSupervisor-1.3.1-setup.exe"  rel="nofollow">http://www.myfsys.org/downloads/DBSupervisor-1.3.1-setup.exe</a><br />
On-line documentation: <a href="http://www.myfsys.org/manuals/dbsupervisor-1.3-html-single-page/DBSupervisor-1.3.html"  rel="nofollow">http://www.myfsys.org/manuals/dbsupervisor-1.3-html-single-page/DBSupervisor-1.3.html</a><br />
PAD file: <a href="http://www.myfsys.org/downloads/DBSupervisor.xml"  rel="nofollow">http://www.myfsys.org/downloads/DBSupervisor.xml</a>]]></description>
            <dc:creator>Serg Div</dc:creator>
            <category>Analytics, Reporting, BI</category>
            <pubDate>Fri, 17 Jun 2011 06:45:08 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?33,416243,416243#msg-416243</guid>
            <title>alternative for crystal report server (no replies)</title>
            <link>http://forums.mysql.com/read.php?33,416243,416243#msg-416243</link>
            <description><![CDATA[ Hi, can anyone recommend alternative for crystal report server? User will need to connect to mysql server in windows server 2003 to create and generate report. Thanks in advance]]></description>
            <dc:creator>keith c</dc:creator>
            <category>Analytics, Reporting, BI</category>
            <pubDate>Wed, 13 Apr 2011 07:18:22 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?33,416014,416014#msg-416014</guid>
            <title>Using Crystal to update MySQL database (no replies)</title>
            <link>http://forums.mysql.com/read.php?33,416014,416014#msg-416014</link>
            <description><![CDATA[ I am trying to use Crystal to update a MySQL database with some information.  Basically, I am displaying payment info on the report.  I want to run an on-demand subreport when the user has verified payment information.  So the user will click the subreport on screen.<br />
<br />
I am having a problem with the sytax of the command in Crystal XI for the subreport.  I keep getting syntax messages.   So I am wondering if MySQL will accept multiple command lines in a Crystal Command object.  I don't see why not because it does support stored procedures.<br />
<br />
I am trying to use the following two statments and wondeing if someone can correct my syntax.<br />
<br />
Insert Into DatabaseName.rasvenpmt<br />
(rasvenpmt.vtrdtid,rasvenpmt.vdtdate)<br />
values<br />
({?VenTrDtID}, CURDATE());<br />
<br />
 SELECT `rasvenpmt1`.`VTrDtID`, `rasvenpmt1`.`VdtDate`<br />
 FROM   `DatabaseName`.`rasvenpmt` `rasvenpmt1`<br />
 WHERE  `rasvenpmt1`.`VTrDtID`={?VenTrDtID}<br />
<br />
<br />
Normally Crystal wants single quotes around the table and field names but it gave several errors in the Insert command portion until I removed them.  Now it is complaining about the Select statement.  But the select statement works fine if it is the only thing in the command.<br />
<br />
Current error message is<br />
<br />
&quot;Failed to retrieve data from the database.  Details: 4200[MySQL][ODBC 3.51 Driver].....an error in your SQL syntax...right syntax to use near ':<br />
<br />
 SELECT `rasvenpmt1`.`VTrDtID`, `rasvenpmt1`.`VdtDate`<br />
 FROM   `DatabaseName` at line 4 [Database Vendor Code: 1064]<br />
<br />
I hope someone can help.  TIA, rasinc]]></description>
            <dc:creator>rasinc rasinc</dc:creator>
            <category>Analytics, Reporting, BI</category>
            <pubDate>Mon, 11 Apr 2011 19:03:10 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?33,411034,411034#msg-411034</guid>
            <title>myDBR 2.7 - &quot;Talk to each other&quot; (no replies)</title>
            <link>http://forums.mysql.com/read.php?33,411034,411034#msg-411034</link>
            <description><![CDATA[ myDBR Team is happy to announce the the availability of myDBR 2.7 release available at <a href="http://mydbr.com"  rel="nofollow">http://mydbr.com</a>.<br />
<br />
This version offers new ways to utilize myDBR by adding ability to share data between multiple myDBR installations, new export options, new import capabilities and easier access for myDBR reports when accessed via scripts. The version also adds improved data editing possibilities plus much more.<br />
<br />
New features include:<br />
- Remote calls to another myDBR installation allow combine data from multiple sources<br />
- File import for local and remote files<br />
- New data editing possibilities with full record editing and creation using dialogs<br />
- New export formats (json, XML, PHP serialized)<br />
- Support for summary level calculations with dbr.summary.calc<br />
- Multiseries charts can have hidden columns<br />
- Support for HTTP Basic Access Authentication to allow reports to be called via script and passing the username/password with the call<br />
- Ability to have attachments to mail reports including PDF report<br />
- Dutch translation courtesy of P3Plus.nl<br />
- New optional parameter lang added to URL allowing define the report language when called via URL<br />
<br />
Improvements:<br />
- Bug in password change fixed<br />
- Improved Actice Directory browser<br />
- Popup windows now support parameters<br />
- Popup windows are now srcollable if content is taller than the screen<br />
<br />
<br />
Happy reporting,<br />
--<br />
myDBR Team]]></description>
            <dc:creator>Seppo Laaksonen</dc:creator>
            <category>Analytics, Reporting, BI</category>
            <pubDate>Tue, 08 Mar 2011 09:43:40 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?33,410088,410088#msg-410088</guid>
            <title>Best tool in terms of reporting-automization (6 replies)</title>
            <link>http://forums.mysql.com/read.php?33,410088,410088#msg-410088</link>
            <description><![CDATA[ Hello guys,<br />
<br />
I am looking for the top 3 or 4 tools in the market for not only running SQL Queries on MySQL 5.x, but also having the option to automate/ store them, formating the results (without having to export them to excel), and offers a better way of sharing the results with internal/ external clients.  We have Navcat right now, and it seems like it lacks reporting capabilities.<br />
<br />
I am also re-searching, but an advice from someone who have used different tools would be greatly appreciated.]]></description>
            <dc:creator>Umer Chaudhry</dc:creator>
            <category>Analytics, Reporting, BI</category>
            <pubDate>Sun, 03 Apr 2011 19:05:56 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?33,408273,408273#msg-408273</guid>
            <title>Reporting software (no replies)</title>
            <link>http://forums.mysql.com/read.php?33,408273,408273#msg-408273</link>
            <description><![CDATA[ Need help with reporting? Reporting software is loaded with stuff to help make the most of reporting. Very good suggestions on how to optimize and reporting system. Please visit  &lt;a href=&quot;<a href="http://www.reportingsoftware.info&quot;&lt;/a&gt"  rel="nofollow">http://www.reportingsoftware.info&quot;&lt;/a&gt</a>;  . Thanks]]></description>
            <dc:creator>abdur rahaman</dc:creator>
            <category>Analytics, Reporting, BI</category>
            <pubDate>Thu, 17 Feb 2011 17:04:11 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?33,408146,408146#msg-408146</guid>
            <title>reporting software (1 reply)</title>
            <link>http://forums.mysql.com/read.php?33,408146,408146#msg-408146</link>
            <description><![CDATA[ Needing help guidance on reporting programs? Queries you have:<br />
<br />
<a href="http://www.reportingsoftware.info"  rel="nofollow">http://www.reportingsoftware.info</a>]]></description>
            <dc:creator>Fabiano Gomes</dc:creator>
            <category>Analytics, Reporting, BI</category>
            <pubDate>Thu, 17 Feb 2011 01:34:34 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?33,407129,407129#msg-407129</guid>
            <title>Benetl, a free ETL tool for files using MySQL, is out in version 3.7 (1 reply)</title>
            <link>http://forums.mysql.com/read.php?33,407129,407129#msg-407129</link>
            <description><![CDATA[ Dear all,<br />
<br />
Benetl, a free ETL tool for files using MySql, is out in version 3.7.<br />
<br />
You can freely download it at: www.benetl.net<br />
<br />
This version brings new controls and messages in the GUI.<br />
This version brings improvements and a bug correction in GUI.<br />
You should update.<br />
<br />
You can learn more about ETL tools at:<br />
<a href="http://en.wikipedia.org/wiki/Extract,_transform,_load"  rel="nofollow">http://en.wikipedia.org/wiki/Extract,_transform,_load</a><br />
<br />
Thanks for your interest.<br />
<br />
Regards,<br />
<br />
-- <br />
Benoît Carpentier<br />
www.benetl.net<br />
Founder of Benetl and Java project manager]]></description>
            <dc:creator>Benoît Carpentier</dc:creator>
            <category>Analytics, Reporting, BI</category>
            <pubDate>Thu, 17 Mar 2011 21:13:07 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?33,405924,405924#msg-405924</guid>
            <title>reporting technique (no replies)</title>
            <link>http://forums.mysql.com/read.php?33,405924,405924#msg-405924</link>
            <description><![CDATA[ Need good reporting software but don't know where to start? [Reporting software] is loaded with stuff to help find – and evaluate – the best reporting programs.<br />
Need help with reporting? Reporting software is loaded with stuff to help make the most of reporting. Very good suggestions on how to optimize and reporting system.<br />
We went here – reporting software – when we were looking for reporting software. Lots of useful information.<br />
<a href="http://www.reportingsoftware.info"  rel="nofollow">http://www.reportingsoftware.info</a>]]></description>
            <dc:creator>farhana islam</dc:creator>
            <category>Analytics, Reporting, BI</category>
            <pubDate>Wed, 02 Feb 2011 13:18:23 +0000</pubDate>
        </item>
    </channel>
</rss>
