0
votes
0answers
7 views

Windows Forms/SQL Database/Datagridview: Rapid search through large quantity of data

I have a MySQLCe database of double integers 0.00 to 1000.00 in intervals of .01 (so 100,000 rows). I'm using the Sterling Activex API. It's kind of obscure and difficult to explain, but basically all ...
0
votes
1answer
18 views

How to find related pages without querying inside a loop?

I'm having an issue with a site I'm programming. Things are a bit slow on a site section where I have pages and child pages. I've got a lot of mySQL queries specifically at this section, there are ...
0
votes
0answers
22 views

MySQL - Analyze Query

This is a following question regarding: Original question The scenario: One query with FULL Text Search One query with Like %something% Over 11 thousand records Goal: - Analyse the explain of ...
0
votes
2answers
35 views

Populating a MySQL database from a DB2 database

I currently have a script for populating a MySQL database from a DB2 server. It works, but it seems to be inserting the rows into MySQL at an extremely slow rate. The server process is executing at ...
0
votes
3answers
28 views

Why is ActiveRecord destroy_all taking so long?

I have a simple rails app with articles and comments running on MySQL 5.5, Ruby 1.9.3 and rails 3.2.12: class Article < ActiveRecord::Base ...
0
votes
1answer
61 views

Performance - order by in MySQL or in PHP

I know this has been asked before at least in this thread: is php sort better than mysql "order by"? However, I'm still not sure about the right option here since the performance on doing ...
0
votes
3answers
69 views

How to efficiently insert millions of datasets to a MySQL database using PHP? [duplicate]

I run a PHP script that reads data rows from a file, analyses them and inserts them one by one into a local MySQL database: $mysqli = new mysqli($db_host, $db_user, $db_password, $db_db); if ...
-2
votes
1answer
42 views

How reduce mysql cpu usage In the below case [closed]

I am creating a campaign tracking site. This is having 100 of tables. I am creating a new table for each month for logging my searches and clicks using CREATE TABLE IF NOT EXISTS (The table consists ...
0
votes
1answer
32 views

What is the most efficient way to search multiple times in a large database MySQL

I have GEO ip location database where each countriy has a range of IP associated with it. country | ip_start | ip_end I have a very large list of ip (1 million) and i need to associate each ip to ...
-1
votes
1answer
37 views

Real world uses of memcached for a website [closed]

I am trying to implement memcached into my website. I have an image gallery where images are rarely changed (deleted etc). They are kept in a database. now I know I could cache the result set ...
0
votes
4answers
70 views

MySQL Performance issue with large number of rows

I am developing a site based on XenForo engine, and have a problem in a query that fetches all threads and joins post table and forum table to get some information for the first post and forum the ...
-2
votes
1answer
41 views

How to free memory at end of PHP script to make my database insertion script faster for the next request? [closed]

I have a PHP script that reads the contents of an XML file and then creates an object using $xml = new SimpleXMLElement($file_name, 0, TRUE); It then converts the object to a workable array and ...
2
votes
2answers
76 views

A really slow UPDATE to a MySQL server

I am running a CMS, but this has nothing do to with it. I have a simple query which is: UPDATE e107_online SET `online_location` = 'http://page.com/something.php?', `online_pagecount` = 133 WHERE ...
-3
votes
1answer
34 views

Best performance practice for ID's exclusion in SQL queries [closed]

Which method gain more performance: 1. Query exclusion $exlusionIds = array(1,2,3,4,5); $sth = $dbh->prepare(" SELECT article_id, title, description FROM articles WHERE active = 1 ...
1
vote
2answers
67 views

MySQL WHERE IN (SELECT id from …) fastest approach?

I am using a query like this: SELECT * FROM videos WHERE id IN (SELECT video_id FROM videos_tags WHERE tag_id = 2) to search videos with the same tags, but with about 8'000 videos this query is too ...
0
votes
2answers
49 views

Quick search on huge mysql database

I need to index a huge mysql database ( 5 billions record ). I will rarely create, update or delete only some request like SELECT * FROM tbl_person WHERE name LIKE 'foo%' I have already set my ...
3
votes
2answers
52 views

Big-Oh Performance of an Inner Join on Two Indexes

I am trying to figure out the Big-Oh performance of the following query: SELECT * FROM table1 INNER JOIN table2 ON table1.a = table2.b GROUP BY table1.a table1.a is the primary key of the table. ...
-3
votes
0answers
29 views

ubuntu mysql innodb insert update slow [closed]

The same program in windows can create 1000 account/s,and in ubuntu12.04 is 35 account/s windows use mysql5.5.15 innodb | Intel(R) Core(TM) CPU 4 core i5-3450 @ 3.10GHz ubuntu use mysql5.5.31 innodb ...
2
votes
0answers
20 views

Mysql NDB cluster slow for no reason

I have a mysql ndb cluster (details below). The problem is when I do the simplest thing such as restore a database that was dumped using mysqldump, it take an absolute age! IE 6 hours to restore a db ...
0
votes
2answers
68 views

is there a way to optimize this sql server query?

I have 3 tables: Table1: id | name 1 | joe 2 | peter 3 | sandra Table2: id | fkId | date_updated 1 | 1 | 2013-01-31 2 | 1 | 2013-04-01 3 | ...
0
votes
1answer
34 views

MySQL - INNER JOIN - take only the last ID from the second table

I need to query two tables in my MySQL database. Here is the short overview: 2 tables: articles and article_logs. I have somethink like 2700 articles and each article can have from 20 to 50 logs. I ...
0
votes
0answers
24 views

Partitioning MySQL for “expired” transactions to improve performance [migrated]

I am dealing with an existing application that uses the database as a sort of transaction log in several cases, for example orders or payments. These tables are large (20 - 60 million rows) and poorly ...
1
vote
1answer
41 views

MySQL is slow when delete records in large table

I have a query like this which takes a really long time to run. The table is around 4 million rows. DELETE FROM TABLE WHERE value_was IS NULL OR value_was <= value_now; I'm hoping I could ...
1
vote
2answers
22 views

How to tune this query when updating 4 million records in MySQL?

I have this query to set the date to far far in the future. The table has 4 million records. And the query is really straight forward. But the query took almost 3 min to run. UPDATE TABLE SET ...
0
votes
1answer
21 views

How to tune self-join table in mysql like this?

I have this table which I'm trying to select from and to date. The query took 2 min to run on 4 million records. I'm not sure how much more I can squeeze out of this query. SELECT c.fk_id, ...
0
votes
0answers
22 views

SubQueries, Joins, and Explaining Explains in MySQL

I've got a large normalized database. All the queries I've written are excruciatingly slow. The database's tables don't have a lot of entries (23,000 - 1,000, depending on the table) but they do have ...
1
vote
1answer
41 views

Mysql Slow Query group concat with subquery

I have following query select `cs`.sku , group_concat( IF( ( ( SELECT count(id_catalog_category) from ...
0
votes
3answers
51 views

How to speed up mysql select in database with highly redundant key values

I have a very simple MYSQL database with only 3 columns but several millions of rows. Two of the colums (hid1, hid2) describe study objects (about 50,000 of them) and the third column (score) is the ...
0
votes
1answer
49 views

Bulk INSERTs from multiple hosts preformace optimization

I have 15 Amazon AWS EC2 t1.micro inctances which simultaneusly populate Amazon RDS MySQL d2.m2.xlarge database with data using large INSERTs (40000 rows in query). The queries are send ...
0
votes
1answer
19 views

How can I get portion of ordered data but avoid sorting again and again over requests?

I have a result set that it is too big to be displayed in one page. So I decided to show it in pages. Ok so far. Now I need the results to displayed sorted. So the query would be something like: ...
-1
votes
1answer
32 views

Deciding between mysql or nosql and their benifits [closed]

So I am a bit new to using databases on a large scale(especially relation databases). My primary concern here is that I hear allot of talk between nosql and mysql. What should really be considered ...
0
votes
2answers
33 views

mysql - best way to avoid duplicates

I am very new to the database game so forgive my ignorance. I am loading millions of rows into a simply structured MySQL database table SQLStr = "LOAD DATA LOCAL INFILE 'f:/Smallscale/02 ...
0
votes
1answer
25 views

MySQL performance with large number of records - partitioning?

I am trying to build a database that would contain a large number of records, each with a lot of columns(fields) - maybe around 200-300 fields total for all tables. Let's say that I would have in a ...
0
votes
0answers
48 views

What is PHPFastCache advantages and disadvantages? [closed]

I have a news portal website in which its content changes approximately every 15 minutes, and I have been facing a big problem after transferring it to VPS Hosting. The website loads too slowly, so I ...
1
vote
0answers
26 views

How to ensure that date-range queries involving multiple time zones are sargable [migrated]

I am building a web analytics application for search engine traffic only. You can see some screenshots here: http://myhappyanalytics.com/ It works similar to Google Analytics but it only saves and ...
-1
votes
0answers
41 views

MySql query prosssing , how to get these [closed]

I have 3 tables: Student ,Course ,Attend i have queries related to these tables . EX:- SELECT * FROM Student this query is only a example , i have some complex queries , i need to analyse those ...
1
vote
1answer
27 views

MySQL Query get minimal distance (nearest neighbour)

I am trying to find the nearest neighbour to the GPS coordinate (52,14) in a geospatial database with the following query: SELECT geonameid, SQRT(POW(latitude-52, 2) + POW(longitude-14, 2)) as ...
1
vote
3answers
45 views

MySQL select from table with ONE row

I have a table with only one row. This table is being queried very often. (on every page load). What is the best way to build query? Lets assume, this is a table structure: CREATE TABLE `counter` ...
0
votes
6answers
56 views

MySQL Query Taking a Long Time

I have a pretty simple query over a table with about 14 millions records that is taking about 30 minutes to complete. Here is the query: select a.switch_name, a.recording_id, a.recording_date, ...
0
votes
2answers
35 views

Very slow execution of MySql update

I have this SQL: UPDATE products pr SET pr.product_model_id = (SELECT id FROM product_models pm WHERE pm.category_id = 1 ORDER BY rand() LIMIT 1) limit 200; It took the mysql-server more then 15 ...
1
vote
3answers
50 views

Mysql insert,updates very slow

Our server database is in mysql 5.1 we have 754 tables in our db.We create a table for each project. Hence the large no of tables. From past one week i have noticed a very long delay in inserts and ...
0
votes
0answers
58 views

mysql slow SQL query on execute

I was wondering if there is any way to make this query faster, Query Time: 31,422s SELECT p.id_orden, p.nombre, pro.modelo, GROUP_CONCAT(pa.nombre SEPARATOR ', ') AS acompanates, ...
0
votes
3answers
34 views

MySQL query speed or rows read

Sorry for lots of useless text. Most important stuff is told on last 3 paragraphs :D Recently we had some mysql problem in one of client servers. Something out of blue starts sky-rocking CPU of mysql ...
-1
votes
2answers
26 views

Sql join or separate queries

I have movie database. I keep images, videos, reviews, etc in separate tables. So when a movie is viewed i can use table joins and display output. Also possible to do this separately. That is, first ...
1
vote
4answers
59 views

Slow SQL query when grouping by two columns with self join

I have a table rating with slightly less than 300k rows and a SQL query: SELECT rt1.product_id as id1, rt2.product_id as id2, sum(1), sum(rt1.rate-rt2.rate) as sum FROM rating as rt1 JOIN rating ...
0
votes
2answers
45 views

mySQL/Server performance check.. 1000 basic update queries = 57 seconds on a QuadCore i7 rig.. GOod or bad?

just wanted to check what you guys think of this performance... i have an Intel i7 ivybridge quad, 16GB DDR3 RAM, 7200RPM Drives for the server/mysql drive etc... i ran a simple update on 1000 ...
1
vote
4answers
69 views

I want to extract a random id from a MYSQL database

I am trying to extract a random article who has a picture from a database. SELECT FLOOR(MAX(id) * RAND()) FROM `table` WHERE `picture` IS NOT NULL My table is 33 MB big and has 1,006,394 articles ...
0
votes
1answer
30 views

MySQL Optimizing Query With IN

SELECT `listener` , SEC_TO_TIME( SUM( TIME_TO_SEC( `call_time` ) ) ) AS total_time, COUNT( `listener` ) AS number FROM calls WHERE listened_date = '2013-05-09' AND type in ('column1','column2') AND id ...
-1
votes
2answers
35 views

Should I split large table into smaller identical ones in this case?

Imagine that you have a multisite script, e.g. having multiple instances if the same thing (like forum hosting). If using MySQL is it better to create a new set of tables for each site or have one ...
3
votes
1answer
77 views

MySql: Need to improve the performance for a query

I need to pump up my query a bit for it's taking way too long on a large DB. I have the following tables vb_user +++++++++++++++++++++++++++++++++ ++ userid ++ username ++ posts ++ ...

1 2 3 4 5 51