Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    MYSQL


SuperbHosting.net have generously sponsored dedicated servers to ensure a reliable and scalable dedicated hosting solution for BigResource.com.





Report Query Load


Is there a way in PHP to have the MYSQL report the load that is placing on the mysql server.

I am trying to optimize some queries and I was hoping the server could give me some feedback so I know if I'm going in the right direction.




View Complete Forum Thread with Replies

Related Forum Messages:
Report Of Query Execution Times
Does mysql have a tool to record and report a list of all queries executed and how long it took to execute each query? If not can anyone suggest a tool I can use to do this?

I've heard of mysql query profiler but does it capture queries from all sessions?

View Replies !
Report Writing Query Problem (joins Again...)
Hola database type folks,

I have been trying to get this right for sometime but now must admit defeat

I have 3 tables

artists -> holds details on the artists
card_gallery -> hold details of card available related to artists via artist_name
scart -> shopping basket related to card_gallery via card_image_id

I am writing a reporting facility that allows the administrator to view all the artists in a table along with their number of cards online and cards sold figures.

Currently I have something like

select
card_gallery.artist_name as cg_an,
count(card_gallery.artist_name) as cg_ca,
count(scart.card_image_id) as s_ci,
from
card_gallery
left join
scart
on
card_gallery.card_gallery_id=scart.card_image_id
group by card_gallery.artist_name
but that doesnt give the correct number of cards sold.
Cards sold are registered in the scart table by setting the processed field to 1

Ideally I would like to be able to view all the artists on one table with the number of cards online and the number sold even if it's 0


View Replies !
Query To Process Date/time Stamps To Delineate And Report On User Sessions
I should read up on that would be used to create a query which takes data formatted like the following: ....

View Replies !
Making A Bat File That Has Load Query
How can I make a MYSQL query as a dump?

Say I have this query: ......

View Replies !
Report Creator
I am now using Open Office to connect to the MySQL thru ODBC. So that I can retrieve some data from MySQL and generate report in open office.
I have already installed MyODBC and unixODBC. A file called odbc.ini created as below:
[MySQL-test]
Description = MySQL database test
Driver = MySQL
Server = localhost
Database = test
Port = 3306

When I tried to test this ODBC connection using isql MySQL-test test,
an error occured: [IM002][unixODBC][Driver Manager]Data source name not found, and no default driver specified
[ISQL]ERROR: Could not SQLConnect

View Replies !
Report Tool
Is there any MySQL reporting tool that is open source and doesn't require programming knowledge? I need a front end for MySQL that will allow a user to input a couple parameters and will produce a report, including graphs. I haven't been able to find an adequate open source solution for this.

View Replies !
Mysqladmin 1.4 Report
when i try to create a report in mysqladmin 1.4 it a message box displays "the server must be connected" Under the enviroment tab the myODBC box has "not found
Driver 3.51 not found I am using xampp can you tell me what i'm doing wrong?

View Replies !
Report Writer
couldn't really find a spot to put this, but basically I need a MySQL report writer. I have been using SQuirrel, but it isn't properly representing BLOB and DOUBLE values, looks like the values come out the other end as hexadecimal.

Rather than spend time sortign it out I'm just gong to move to another report writer. It is unfortunate as I have really enjoyed using SQuirrel.

View Replies !
Report Generation
I have the MySQL server and the Query Browser up and working but I don't see anything about generating reports and I can't find anything on reports in the online documentation. What do MySQL users use for generating customized reports? Is there some GUI tool from MySQL or do people use other products like Crystal Reports?

View Replies !
Weekly Report
I am creating weekly reports for a application that I have. I'm using the Date column ( YYYY-MM-DD) for my mysql database. Is there a query that brings up totals for Monday through Sunday for the month of April/June etc??

View Replies !
Select For A Report
I have a table with this fields :

ID (integer)
Date (datetime)
Name (char)

I want select count of items that add in each month of year
For example a report like this :

2 Items add to database in january of 2006
9 Items add to database in march of 2006
3 Items add to database in january of 2007

(I can change the numbric month to it names with PHP)

View Replies !
The Best Mysql Report Generator
what is the best way to generate reports for Mysql
db.
Please name the software or application.

View Replies !
Client Side Report
i hav a few reports that generate at server side
i would like to copy the tables needed for the report to client's temp file,
and perform the calculation and filtering there.
may i know is this way possible?

for 1 table, there's .frm, .myd and .myi files, which files should i copy?

and how should the connection string looks like when connecting to client's own temp file?

View Replies !
Generate Report Using Group By
I have few invoices which have due_date as one of its field. Now I want to generate a report like the following

CName --------0-30 -------- 31 - 60 --------61 - 90 -------- over 90
abc --------$45 -------- $34 -------- NO -------- No
Xyz --------No -------- $78 -------- $76 -------- No
bcd -------- $897 -------- $456 -------- No --------No
Totals: ---- --- --- ---

Where those days are overdue period (today - due date). I want to retrieve the whole in one (max 2 not a buch in a loop) queries.

View Replies !
Parameters In SP When Calling A Report
Set up the connection to the DB in Crystal using MyODBC. I used the Database expert to call my Stored Procedure which has one Parameter and the code is real simple going like this:

call SuccessLetter (AppNo)

From the wizard i can see and place all the fields from the SP onto the report as long as i hard code an application number into my parameter. But as soon as i change it to a variable (as above) i get the following error from Crystal: Unknown Fields AppNo in order clause MySQL ODBC 3.51 error 42S21

On the VB code side i used
Success.SetParameterValue("AppNo", GeneralFunctions.ApplicationNo)
to set up the parameter and this does get passed thru so the error is comming from the database expert - almost as if it dont recognise that my stored procedure has a parameter. Which it does and it does work if i use the SP outside of Crystal.

I know the SP is working fine cause i have written another SP and then called SuccessLetter with the new SP using a parameter and the results are perfecr.

View Replies !
MYSQL Report Generation
I am looking for inexpensive or free software/shareware that will enable to generate reports using MYSQL.

View Replies !
Report Writer For MySQL
Is there a report writer out there for mySQL besides Navicat...I like Navicat but can not afford it.

View Replies !
INSERT IGNORE - Get A Report?
I'm creating a shopping cart-esq type system with a primary key on two fields.
My app builds an insert query that can insert many rows at once.
When the user tries to add something already in their cart (not allowed by the primary key structure) the IGNORE statement allows the query to go ahead, and the other rows to be inserted.

My question therefore is:

Can I get a response from MySQL as to whether or not the IGNORE statement affected the query ?
i.e would there have been a duplicate row ?
Ideally I could even get info about WHICH row would have caused a conflict, but I'd be surprised if I could get this info.

View Replies !
Load Null Values In Table Through LOAD FILE
I'M TRYING TO LOAD FILE WHICH HAS NULL VALUES FOR SOME COLUMNS AT THE FIRST ROW.IT Says "Incorrect Date Value for the column" as it has null values

View Replies !
Load Null Values In Table Through LOAD FILE
I'M TRYING TO LOAD FILE WHICH HAS NULL VALUES FOR SOME COLUMNS AT THE FIRST ROW . IT Says "Incorrect Date Value for the column" as it has null values.

View Replies !
Structure Of Database To Prepare Report
I'm attempting to create a database which will take information from
one (perhaps two) tables and utilize that information to return
queries to a report designed in Excel.

The general idea I have is this:

The "primary" or "source" table is easy. This is a trial balance
(account number as a primary key, description, amount).

I'll need table(s) to denote which account numbers belong to which
page/line on the report. I'm not sure how many pages the report will
be, but let's say my Excel workbook would have 50 sheets. My question
is this: What would you recommend for a table structure. The way I
see it, I could have a single table listing each page and each line on
each page (each identified by a unique id), then have another table
listing each account and each page/line id. The other option I see is
to have a separate table for each "page," but I'm not sure I see a
benefit in this. My first instinct is to use the first method I
mentioned.

View Replies !
Crystal Report, MySql, And Images
I am creating a report using Crystal Report and I want to upload an image coming from the mysql database to the crystal report. Can I upload the image to crystal report without actually storing the image in the database?

View Replies !
Multiple Count Queries -> One Report
I'm getting a bunch of data out of a database in the form of a lot of COUNT statements eg:

SELECT COUNT (*) AS "Value1" FROM tablename WHERE x=1;
SELECT COUNT (*) AS "Value2" FROM tablename WHERE y=5;
etc ... there are about 30 queries.

I'm using PHPmyAdmin to do this. Currently I have to put each statement in separately: If I put the whole load of them, PHPadmin only displays the last value.

I don't need a great deal of detail, but if someone can suggest a way I can accomplish this so I run one multi-line query and get all my values at once that would be great. Perhaps there is a better tool than phpMyadmin? Or maybe I should be looking at VIEWs or STORED PROCEDURES? If you can paint the broad outlines, I can fill in the gaps.

View Replies !
How To Show Records In A Report View
my table contains the following columns :

news_date (date)
news (tinytext)

i need a query which would display the table records in the following way:

09-11-06
the news item-------------
---------------------------
---------------------------

10-11-06
the news item-------------
-------------------------
-------------------------

thats is each record should be displayed as seperate and not in a tabular view.

View Replies !
Crystal Report Connection Problems
ODBC ERROR:[MySQL][ODBC 3.51 Driver][MySQL-5.0.27 community-nt]
You have an error in your SQL syntax: check the manual that corresponds to your MySQL server version for the right syntax to use neer 'ahmsys','tenants' limit 0 at line 1.
While trying to connect to this tabel (tenants) I get this error, however I'm able to connect to the next tabel (teansactions) in the database (ahmsys).

What is this... limit 0 at line 1.

View Replies !
How Make Stock Card Report
i want the query can show stock card report like :

Item Code QtyIn QtyOut Final
Date

A-001
2/3/2008 10 5 5 <------------ line 1
4/3/2008 2 0 7 <------------ line 2
10/3/2008 20 2 25 <------------ line 3
15/3/2008 4 0 29 <------------ line 4

item code,date,qtyin and qtyout are my fields in databse, but "Final" are operation result from 10 - 5 = 5, 5 (final line 1) + 2 + 0 = 7, 7 (final line 2) + 20 + 2 = 25, 25 (final line 3) + 4 + 0 = 29

View Replies !
How To Report Changes In Rows Before And After Multiple Transactions
I am trying to uncover what a specific tool is doing to my database. What is your favorite way to compare database contents before and after an operation?

I would like to know what rows were modified in which tables. Hopefully, such a tool or method could report the "before" and "after" states of affected rows only, where applicable.

I don't expect there to be any changes to any table structures.

I am using a LAMP setup, if it matters. I am hoping for an open-source solution.

View Replies !
Viewing Error In Crystal Report
i am trying to make a report using crysatl report in c#.net for mysql database.
1. when i use a dsn (odbc) the error occurs when the form containing the viewer is loaded 'could not load rowset'. however i checked the connection and it worked fine
2. i tried again using the project data sets when building the crystal report but this time i could not log on when the form containing the viewer was openend

View Replies !
Scribe Report Generator For MySQL And Other RDBMS
We are looking for beta-testers for our new product - Scribe Report
Generator. At this moment, Scribe supports 6 relational databases, including
Oracle, MS SQL Server 2000, and Sybase.

Very briefly: Scribe is written in Java, is based on visual programming and
can be extended by adding user-written Java classes; it comes with the API
library to let other Java-based apps run Scribe reports programmatically.

The details are on our website: www.gestalt.com/Scribe (temporary location).

User: guest
Password: star

We offer a free license to everyone who provides us with a feedback on bugs,
inconsistencies, or constructive criticism that helps us refine Scribe.

View Replies !
Stored Procedure For Creating Daily Report
how i can create a stored procedure that do the select into the OUTFILE for a day or two from the time of excution. the aim is to generate a report to the shared folder say /home/reports/ The created file should have the unixtime to identify itself

View Replies !
Load Data :: Load Excel File
I wana load excel file into sql.

View Replies !
Adding User Defined Date Range For Report
Hello I have a very simple query that list customer info within a date range. I would like to have a interactive form that would allow the customer to choose between two dates and query the DB for information between the two dates entered. it is coded like (WHERE `date_purchased` > '2005-08-01 00:00:00' AND `date_purchased` < '2005-09-01 00:00:00') below is the code but I need help or guidence on how to get the customer input into the query instead of the hard coded area that is there now....

View Replies !
Create Virtual Table During Query Or Load Table To Memory From Text File
I have access to my application database via a secure link, so I cannot link a local database to it, only run queries on the remote server and download the result.

The database is missing some useful information, and I cannot add a table at this stage. I would like to achieve the result by creating a virtual table or the like. ...

View Replies !
Load Data Infile :: Load Key
My question is this I need to load a file (b/c of the size I don't want to use insert statements) with load data local infile. The problem is I need to add a static value to each record created by the load that will serve as the key. In version 5 of MySql this is no problem because I can use set w/ load data infile to accomplish what I need. However I need to do this in an older version. Any thoughts on how I could pull this off?

View Replies !
Full Yearly Weekly Group By Group Report
I have table called tblTransactions:

TblTransactions
Group | Months | Year | Transaction
A | 3 | 2007 | 45
B | 2 | 2007 | 89
A | 7 | 2007 | 50
A | 8 | 2007 | 34
B | 4 | 2007 | 55
A |12 | 2007 | 10
A | 1 | 2008 | 88
B | 3 | 2008 | 34
B | 5 | 2008 | 70
A | 5 | 2008 | 45
A | 9 | 2008 | 88
B | 7 | 2008 | 99
A |10 | 2008 | 77
A |11 | 2008 | 99

How is the T-SQL to make the result like this (the result will display all of the week (FULL), the target is I can compare week by week between years and group.

A | 1 | 2007 | 0
B | 1 | 2007 | 0
A | 2 | 2007 | 0
B | 2 | 2007 | 89
A | 3 | 2007 | 45
B | 3 | 2007 | 0
A | 4 | 2007 | 0
B | 4 | 2007 | 55
A | 5 | 2007 | 0
B | 5 | 2007 | 0
A | 6 | 2007 | 0
B | 6 | 2007 | 0
A | 7 | 2007 | 50
B | 7 | 2007 | 0
A | 8 | 2007 | 34
B | 8 | 2007 | 0
A | 9 | 2007 | 0
B | 9 | 2007 | 0
A | 10| 2007 | 0
B | 10| 2007 | 0
A | 11| 2007 | 0
B | 11| 2007 | 0
A | 12| 2007 | 10
B | 12| 2007 | 0
A | 1 | 2008 | 88
B | 1 | 2008 | 0
A | 2 | 2008 | 0
B | 2 | 2008 | 0
A | 3 | 2008 | 0
B | 3 | 2008 | 34
A | 4 | 2008 | 0
B | 4 | 2008 | 0
A | 5 | 2008 | 45
B | 5 | 2008 | 70
A | 6 | 2008 | 0
B | 6 | 2008 | 0
A | 7 | 2008 | 0
B | 7 | 2008 | 99
A | 8 | 2008 | 0
B | 8 | 2008 | 0
A | 9 | 2008 | 88
B | 9 | 2008 | 0
A |10 | 2008 | 77
B |10 | 2008 | 0
A |11 | 2008 | 99
B |11 | 2008 | 0
A |12 | 2008 | 0
B |12 | 2008 | 0

View Replies !
Difference Between LOAD LOCAL DATA INFILE And LOAD DATA INFILE?
i'm confused about LOAD LOCAL DATA INFILE and LOAD DATA INFILE? are there any significant difference btw both these query?

View Replies !
Using LOAD
HOw can I find out ehree to put file I would like to load into a table using command on a computer that runs on Windows XP.

Shouldn't it be possible to load something that is stored on the C drive by pointing to it in some way, I tried it but can't figure it out.

This is what I tried:

mysql> LOAD DATA INFILE "C:>member.sql" INTO TABLE member;

It give sme the next error in returm:

ERROR 22 (HY000): File 'C:>member.sql' not found (Errcode: 22)

View Replies !
LOAD XML
Does LOAD XML allow for loading nested xml tags into the same table?

View Replies !
'LOAD DATA'
Environment: Windows XP - german settings.
MySQL: 5.0.18-nt

Database charsets have been changed from 'latin1' (where 'LOAD DATA'
worked fine) to utf-8 to resolve some charset issues with Perl/Tk.
When loading a csv-file to the data base in the new utf-8 environment
and an 'Umlaut' appears within a field the rest of the field including
the 'Umlaut' gets truncated.

Because the csv-file was created under Windows I used the 'SET
NAMES'-directive:
SET NAMES 'latin1';
LOAD DATA INFILE '.....' INTO TABLE ....

The "SHOW VARIABLES LIKE 'character_set\_%'"-statement displayed all
charset-variables are set to 'utf-8'.

View Replies !
Load Increased
i have just upgraded from version 4.1 to 5.1 but the server load
increased from 0.30 to 1.20. same options in my.cnf so i can't
understand the reason

View Replies !
Load Balancing
Does anyone know whether it is possible and/or effective to load balance 2
mysql databases using Foundry ServerIron Switch?

View Replies !
Bulk Load
i am using the perl DBI.

-- how can i make load_file read a blob. it treats the file contents as
a string rather than text/blob.

-- is there an ENV or mysql var to tell the engine where to find files
you want to load? mysql looks in ~ by default and i know i can use a
full path but it is reather long and cumbersome.

View Replies !
Load Data
how to insert the values in different tables from the text file ?

means i have a text file.In that text file ,there is some data for different tables.I want to insert that datas into different tables.

View Replies !
Load Infile
I have a mapped drive "O" on the PC running MySql. I want to use 'load infile'
Tried the following:

load data infile local 'O:/abc/boxes.txt' into table `boxes`;
I've also tried
load data infile 'O:/abc/boxes.txt' into table `boxes`;

I always get "Error 1064". If I change the path to the local drive, it works fine. Having the text files locally is not an option.

View Replies !
Load On My DS Machine
I've got dedicated server , 30mbp/s line, and solving very strange issue, my hosting told me i burn about 2.8mb per sec., so i get a lot of traffic, i don't use mysql very often, i use mysql only for special cases, no more than 5 requests at same time.
i'm checking top function via telnet console, and i can see sometimes huge loads on server, from 0,8-1 it skips to 20, then 30, 50, 100, somewhere between 20-30 it crashes mysql, and i can't connect , sometimes it went to 150 load, and then it slowly going back to normal.

View Replies !
Load A Sql File
I need to restore a backup that is 45mb, which is to big to get phpmyadmin panel to do, so iv uploaded it via ftp, all it need is a simple command to run it, how do i do this?

View Replies !
Load Database
I have created a database and a table. I can access the database from phpMyAdmin. I am able to run a query and it works out fine. Now, I want to actually use the database in a site. I am pretty sure it needs to be a .php site, and I have searched all over google, but no luck finding any answers. How do I get a database to load in a site so that I can acutally use it?

View Replies !
Can't Load Database
I'm just starting out with MYSQL and know next to nothing about it. I'm utilizing a book called "Learning SQL" published by OReilly.

I've created a user and I've created a database per the book's instructions. I'm having troube loading the sample data. It's saved in my C: drive. I type the command: as in source c:LearningSQLExample.sql and receive the error message 'Unknown command L.

I don't understand what I'm doing wrong. Maybe it's the book.

View Replies !

Copyright © 2005-08 www.BigResource.com, All rights reserved