Tagged Questions
0
votes
0answers
45 views
Database Information: More Joins or more Queries
This is a question on multiple fronts. Firstly, I'm saving an object from Java into the database by the object's internal structure (I'm not serializing). The structure of the object is as follows: ...
0
votes
3answers
29 views
What is faster? Firing a query within a loop or looping trough an array?
I was just asking myself what is faster: I have a for loop where I have to check a certain table column against my loop variable.
Now I have two options: Within the loop I fire a query for each ...
0
votes
0answers
19 views
Query take along time! is that server issue? [migrated]
When Query run on Server (shared-server) it takes (2.5332 sec)
But when I run the same Query on anther Server (dedicated-server) It takes only (0.0205 sec).
I don't know where is the issue !
Is that ...
0
votes
0answers
39 views
Speed up my rails app
I have a very big rails app, it works very well, but there is a page that is very slow! It takes something like 2 minutes to complete the loading.
The page contain a calendar, where I insert a lot of ...
1
vote
2answers
66 views
Why is COUNT() query from large table much faster than SUM()
I have a data warehouse with the following tables:
main
about 8 million records
CREATE TABLE `main` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`cid` mediumint(8) unsigned DEFAULT NULL, ...
-1
votes
1answer
19 views
which is faster, saving chat history in a text file and display it or using mysql db to save chat history
i am developing a chat application in MYSQL, J QUERY...
i read few tutorials and i want to know which way among the following makes the chat comparatively more faster and real time, i tried ...
0
votes
1answer
44 views
Performances, mysql queries vs php array
I'm working with codeigniter, now i'm doing a php loop (x100), in each loop i do a mysql query, the result is fine, 1 sec.
But is it the good way to do it ?
i could make a single mysql query and find ...
-3
votes
8answers
87 views
SQL query takes very very long, is it faulty or inefficient? [closed]
I have a database table where I want to select all rows for which there is a row with the same field1 and field2=5. I made the following SQL query:
SELECT * FROM `table`
WHERE `field1` IN (SELECT ...
2
votes
1answer
28 views
MySQL index in between where clause and order by clause
My table structure is something like below:
CREATE TABLE test (
id INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
field_1 VARCHAR(60) NOT NULL,
field_2 INT(10) UNSIGNED NULL,
field_3 ...
4
votes
3answers
66 views
Joomla MySQL Performance
I have been developing a Joomla site with version 2.5.11.Site will be under very high traffic.
My problem is about MySQL query performance. Database includes about 60000 rows in content table, and ...
2
votes
1answer
34 views
MySQL query optimization with between or larger than > condition
Problem: slow query.
table1 has about 5 000 rows
table2 has about 50 000 rows
timestamp format is int(11)
MySQL - 20 seconds (with indexes)
PostgreSQL - 0,04 seconds (with indexes)
SELECT *
FROM ...
0
votes
0answers
54 views
Php update performance
a script of mine produces all the required details of a product page for an eshop.
I use one query at the top to SELECT product details, another one to select the category name (via foreign key ...
0
votes
1answer
41 views
Can we optimize this SQL Query?
I have this Query that takes at least 1 minute to run. It uses a lot of Left Joins.
Is there any way to make it faster ? I'm new to SQL, so help would be appreciated.
SELECT
distinct ...
-1
votes
1answer
24 views
Optimizing query using joins in mysql
I have a query I would like to optimize, It takes 29 seconds to complete. I have tried creating a view of the union join but gives worse result.
select o.orderno, o.orderdate, c.lastname
from ...
0
votes
1answer
25 views
Query makes my page not respond
I am not sure why but my MySQL query below, makes my page not respond and I get that box saying this page has became unresponsive. I am wondering what would be the easiest way to make sure that this ...
0
votes
1answer
21 views
Overhead of saving results of a MySQL subquery into TEMPORARY TABLE (as opposed to duplicating the subquery)?
I'm writing a reporting library which provides a DSL for describing report logic in high-level terms, then compiles the resulting AST into SQL which is run against a MySQL database.
Sometimes the ...
-6
votes
0answers
41 views
which is better according to memory performance regular tables or temp tables in postgresql [closed]
which is better for memory performance regular tables or temp tables in postgresql and mySQL? and I tried Table vs Temp Table Performance but I couldn't find the needed solution.
2
votes
3answers
46 views
How to count number of rows which is related to another table
I have two tables:
CATEGORY
category_id int(10) UNSIGNED AUTO_INCREMENT
category_title varchar(255)
PRODUCT
product_id int(10) UNSIGNED AUTO_INCREMENT
...
1
vote
0answers
26 views
Deleting old records from a mysql table but keeping a backup
I have a MYSQL table that only requires data upto 30 days prior to todays date. It has data that can be upto a few years after todays date. For faster querying, I usually delete the old records since ...
0
votes
0answers
25 views
Two statements in MySQL resultSet streaming error?
I am trying to stream a large dataset in Mysql to Java using jdbc. However, I am getting error I was most afraid of -
Streaming result set com.mysql.jdbc.RowDataDynamic@5bbf3d87 is still active. No ...
0
votes
0answers
42 views
MySQL JOIN performance issue
I am trying to build a query for later inserting it in a table I'm building. I want the query to return 4 columns, which are 4 ids from different entities which relate with each other. I've got one ...
0
votes
0answers
14 views
MySql Scalability, Master Slave replication a good idea? Read description please [migrated]
I have a database on mysql which is scaling on daily basis and right now its on 5M records and in a month it may double itself. I have a table containing users data which is the largest one. I have ...
0
votes
1answer
29 views
MySQL incrementing value vs inserting
I'm tracking a specific value in a database, let's say it's number of bats in the world.
Is it preferred to have thousands of people updating this one value (click button to increment INT field with ...
1
vote
1answer
24 views
Calculation in select statement is slow in mysql query
I have calculations in Mysql select statement. I found it make the query slow.
SELECT MIN(a) AS MIN,
ROUND(100*(a/b), 1) AS mos
FROM TABLE_NAME
WHERE a > 0
AND b > 0
AND c <= 148
...
2
votes
3answers
44 views
Creating index on mysql table
I have a table called data in mysql database. The table is quite large and has about 500k records and this number will grow up to 1 million. Each record consists of about 50 columns and most of them ...
0
votes
2answers
51 views
Initial Page Load in Magento is Incredibly Slow
I am running Magento CE 1.7 on a WAMP server and the initial page load time is ridiculously slow. I am running Apache 2.2.22 32 bit with PHP 5.3.13. The site is hosted on a box with a 4GB of RAM and a ...
0
votes
0answers
28 views
Stock Streaming App Implementation
I am supposed to develop an Android app that will display stock quote information. I will purchase a data feed provider for this purpose.
Questions:
Since they charge you per number of data ...
0
votes
0answers
27 views
Mysql columns as rows (pivot table) query very slow when records is very huge
I am trying to write a query to create a 'table' of data as follows:
SELECT cs.`category_id`, cs.`ProcessDate`, cs.`PercentChange`
FROM `Category_Statistics` cs
WHERE cs.`ProcessDate` >= ...
2
votes
1answer
35 views
Why does this covering index query performs better when paginating far away from beginning?
While reading "Optimizing Sorts" section of "High Performance MySQL 2nd Edition", I find it hard to understand the following:
mysql> SELECT FROM profiles WHERE sex='M' ORDER BY rating LIMIT ...
4
votes
2answers
70 views
MySQL - LONGTEXT field causes hang in SELECT-WHERE statement
I am having an issue due to LONGTEXT field. Everything works fine, but when a SELECT query is executed with any WHERE clause in it, the mysql goes to sleep and never returns. There are only 80k ...
3
votes
1answer
87 views
MySQL query become really slow when using ORDER BY
Here is a mysql query that take about 1ms to complete:
SELECT SQL_NO_CACHE DISTINCT invoice.*,
GROUP_CONCAT(DISTINCT line.guid) as line
FROM invoice
LEFT JOIN ligne ON line.invoice = invoice.guid
...
0
votes
1answer
30 views
Slow query with group by
I am getting some slowness (~6s) when I run the following query:
SELECT sql_no_cache
t1.id, t2.id, count(injury.id)
FROM age_group as t1
CROSS JOIN body_part as t2
LEFT JOIN injury
ON t1.id ...
0
votes
0answers
14 views
PHPUnit Database testing doesnt fully run the function to test
I have a PHPUnit test case that test a function that does a range of manipulation with the MySQL database.
When I run the test via PHPUnit the function is not fully run, MySQL database is failed to ...
0
votes
0answers
31 views
MySQL innodb monitor and insert/update operation [migrated]
There is only one table in MySQL that has two columns like id(int) and data(blob) And, the problem I've faced is that it looks like there's something wrong with insert/update operations. For some ...
0
votes
1answer
33 views
Am I wrong in table design or wrong in selected index when made the table?
I've build web application as a tool to eliminate unnecessary data in peoples table, this application mainly to filter all data of peoples who valid to get an election rights. At first, it wasn't a ...
0
votes
3answers
57 views
Selecting all data from database and manually filtering with PHP [closed]
I want to use my own algorithm to filter data retrieved from the database instead of using MySQL LIKE Clause ... But would that have a noticeable effect on the application performance with large ...
2
votes
3answers
38 views
Multiple 'Select column where …' vs Select all the column
I have to select 4 rows randomly from a column.
Is is better to generate randomly 4 id and to perform 4 requests 'select column from database where id = ... '
Or to select all the rows in one ...
-1
votes
0answers
30 views
MySQL - Conditional Query with Union - Performance Issue
I need a result with following conditions queried.
ItemCat AND ItemDesc AND Status AND PId AND IsDeleted AND ViewFront
OR following fields matching
ItemCat AND Status AND PId AND IsDeleted AND ...
-2
votes
2answers
46 views
Will multiplying by rand() in MySQL affect performance? [closed]
SELECT *, (nlike / (nlike + ndlike)) * rand() AS rnk FROM tbl
order by rnk desc;
I know that ORDER BY RAND() is pretty detrimental to performance; however, I'm primarily concerned with multiplying ...
1
vote
1answer
48 views
MySQL averaging over many SUM()s that use CASE WHENs — is there a better way?
Is there a better way to handle this situation?
I have a table with several rows of "speed" per 5-minute block of "time". I want to take the average across 12 of these 5-minute blocks to get an ...
0
votes
1answer
45 views
Does making a MySQL select/update more specific make it faster / give it better performance
In MySQL or SQL, does making a select or update query more specific make it faster?
What I mean is, is this query:
UPDATE `table` SET column = 'Hi Mom!' WHERE `id` = 123 AND `grouping_id` = 456 AND ...
5
votes
1answer
59 views
How to improve MYSQL performance on UNION ALL?
I am optimizing a query which involves a UNION ALL of two queries.
Both Queries have been more than optimized and run at less than one second separately.
However, when I perform the union of both, it ...
2
votes
1answer
68 views
MySql number of columns and parameter size affect on performance
I have looked at similar questions such as this one
Does number of columns affect MYSQL speed?
I will try to ask my question with more specification as it is slightly different.
I have the option of ...
1
vote
1answer
35 views
MySQL InnoDB much slower than MyISAM
I have two tables (reduced to important fields):
syskeywordobjects:
pksyskeywordobjects BIGINT
fksyskeywords BIGINT
fkcontents BIGINT
fkcontents INDEX (fkcontents)
fksyskeywords INDEX ...
0
votes
2answers
87 views
Can you do this with a database?
I store all the videos and the details about each one in a database. I have some tables:
video (details about the video, name etc.)
video_file (each video is rendered with different bit rates and ...
0
votes
1answer
74 views
count(*) using left join taking long time to respond
I have a MySQL query for showing the count of data in the Application listing page.
query
SELECT COUNT(*) FROM cnitranr left join cnitrand on cnitrand.tx_no=cnitranr.tx_no
Explain screen shot
...
0
votes
0answers
13 views
Which server should be the master in replication? [closed]
I'd like to set up a master/slave arrangement between 2 servers which handle a php/mysql app.
Currently server A is the front-end webserver and server B is back-end database server. Server B has a ...
0
votes
0answers
23 views
Best way to include aggregate data without reading entire table
I've built a query that uses a typical header/detail set of tables to report on records from the header table but provides aggregated data per header record from various types on the detail table.
To ...
1
vote
2answers
55 views
Optimize joined order by query
I Have the following query:
SELECT `p_products`.`id`, `p_products`.`name`, `p_products`.`date`,
`p_products`.`img`, `p_products`.`safe_name`, `p_products`.`sku`,
...
0
votes
0answers
28 views
FULLTEXT initialization performace
I am running a query like the following..
select *,match (name) against ('cynthia david lazares') as score
from ds where match (name) against ('+Cynthia +david +lazares' in boolean
mode);
Database ...





