Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
9answers
5k views

Improving performance of Sql Delete

We have a query to remove some rows from the table based on an id field (primary key). It is a pretty straightforward query: delete all from OUR_TABLE where ID in (123, 345, ...) The problem is ...
5
votes
1answer
86 views

ORDER BY NULL slower than ORDER BY column

according to MySQL documentation, adding ORDER BY NULL after GROUP BY should "avoid the overhead of sorting the result". If so, why is following query aprox 5 times slower SELECT COUNT(*) ...
4
votes
5answers
67 views

Is inserting a new database entry faster than checking if the entry exists first?

I was once told that it is faster to just run an insert and let the insert fail than to check if a database entry exists and then inserting if it is missing. I was also told that that most databases ...
4
votes
2answers
165 views

Inventory Database Design

I'm fairly new to using MySQL and I'm trying to understand what the most efficient way to store a player's inventory items in my database is. So here's the setup: There's a table called 'player', ...
4
votes
0answers
148 views

List of freely available books on Database Design and optimization [closed]

Suggest freely available Database Design and optimization books on the Internet
3
votes
2answers
53 views

MySQL Indexes creation

I have a table with 10 columns and I need to support combined range filters for most of them. Let's say for example: WHERE column_a >= a_min AND column_a <= a_max AND column_b >= b_min AND ...
3
votes
4answers
121 views

Which of the following SQL queries would be faster? A join on two tables or successive queries?

I have two tables here: ITEMS ID| DETAILS| .....| OWNER USERS: ID| NAME|.... Where ITEMS.OWNER = USERS.ID I'm listing the items out with their respective owners names. For this I could use a join ...
3
votes
4answers
111 views

Regular performance tuning and maintenance

How often do you conduct regular maintenance such as stress test your application and/or tune your database indexes for your applications? E.G., Do you tune (defrag, reorganise or rebuild) your ...
2
votes
1answer
218 views

MySQL Optimization: EXPLAIN “Extra” column contains “Using Where”

So I always thought that seeing "Using Where" in the Extra column was a good thing. However, I was planning a brown bag lunch for my coworkers on intepreting EXPLAIN and now I'm not so sure. The MySQL ...
2
votes
2answers
240 views

Advice needed: SQL Server DB Architecture for Large Database

HI all! My client currently has a SQL Server database that performs 3-4 Million Inserts, about as many updates and even more reads a day, every day. Current DB is laid out weirdly IMHO: The incoming ...
2
votes
1answer
206 views

Does GAE Datastore support eager fetching?

Let's say I want to display a list of books and their authors. In traditional database design, I would issue a single query to retrieve rows from the Book table as well as the related Author table, a ...
1
vote
3answers
43 views

What do I need to know about databases in order to create a quality Django app?

I'm trying to optimize my site and found this nice little Django doc: Database Access Optimization, which suggests profiling followed by indexing and the selection of proper fields as the starting ...
1
vote
1answer
32 views

Best way to process database in chunks with Django QuerySet?

I am running a batch operation over all rows in a database. This involves selecting every single model and doing something to it. It makes sense to split this into chunks and do it chunk by chunk. ...
1
vote
0answers
45 views

database normalization and optimization for postOffice DB [closed]

I am designing a web application for a post office. Database performance in database is critical for them. I have designed the below structure for the post database, is there any flaw in my db ...
1
vote
1answer
81 views

django database query optimisation

a newbie question on django db query optimisation: I have a custom model form to edit a Destination object, and I in the constructor I get hold of a queryset from a related Visitor model, which has ...
1
vote
2answers
144 views

MS SQL : The best way to delete rows from a ginormous table

I have a very large table [X], which has 170 million rows, and we need to archive data to keep only used records in [X]. We are doing this to keep our system fast as it is slowing down. We are only ...
1
vote
1answer
34 views

Is there a performance benefit to creating a multiple index on a primary key + foreign key?

If I have a table that has a primary key and a foreign key, and searches are frequently done with queries that include both (...WHERE primary=n AND foreign=x), is there any performance benefit to ...
1
vote
2answers
117 views

How to manage Huge operations on MySql

I have a MySql DataBase. I have a lot of records (about 4,000,000,000 rows) and I want to process them in order to reduce them(reduce to about 1,000,000,000 Rows). Assume I have following tables: ...
1
vote
2answers
41 views

mysql optimization

I am running a website and I have reached a lot of users on the website. Now the issue that I am facing is that there is a single table for incoming and outgoing messages. When the size of this table ...
1
vote
2answers
272 views

How do I know when to index a column, and with what?

In docs for various ORMs they always provide a way to create indexes, etc. They always mention to be sure to create the appropriate indexes for efficiency, as if that is inherent knowledge to a ...
1
vote
3answers
128 views

To what degree can effective indexing overcome performance issues with VERY large tables?

So, it seems to me like a query on a table with 10k records and a query on a table with 10mil records are almost equally fast if they are both fetching roughly the same number of records and making ...
1
vote
2answers
101 views

How do we greatly optimize our MySQL database (or replace it) when using joins?

This is the first time I'm approaching an extremely high-volume situation. This is an ad server based on MySQL. However, the query that is used incorporates a lot of JOINs and is generally just slow. ...
0
votes
0answers
44 views

Is complete denormalization a right MySQL optimization approach for an extreme case?

I have a job board. There are job seekers that are stored in different tables and those tables have all kinds of relations. For example users and profiles tables are connected as 1-1. But then there ...
0
votes
2answers
24 views

Advantages of having user authentication details stored in a separate table

I have a user table in mysql containing all user data (firstname, surname, address, etc) But should I store the authentication details in another table (username, password) and link the two tables ...
0
votes
2answers
46 views

mysql optimization script file

I'm looking at having someone do some optimization on a database. If I gave them a similar version of the db with different data, could they create a script file to run all the optimizations on my ...
0
votes
3answers
58 views

Problem with PHP/MySQL Insert

How to insert data into two or more tables? Currently I am using this trick. (Let just assume that the syntax is correct) $Sql1 = "insert into user"; $Sql2 = "insert into files"; $Sql3 = "insert ...
0
votes
4answers
132 views

Best way to count rows from mysql database

After facing a slow loading time issue with a mysql query, I'm now looking the best way to count rows numbers. I have stupidly used mysql_num_rows() function to do this and now realized its a worst ...
0
votes
0answers
68 views

Facebook application display friends functionality performance question

I have a facebook application and I want to display to a user their friends that are also using my application and some corresponding data I've recorded about those friends. My concern is that this ...
0
votes
2answers
92 views

Optimize A Messy Query

So I have this unholy query, and need to clean it up, as it takes ~2 minutes to execute. I can't change any table structure, but I can split it up into sub queries in loops, etc. I'm using C++ and ...
0
votes
3answers
58 views

Questions regarding a optimizing a slow query (SQL included)

SELECT DISTINCT "myapp_profile"."user_id", "myapp_profile"."name", "myapp_profile"."age", "auth_user"."id", "auth_user"."username", "auth_user"."first_name", "auth_user"."last_name", ...
0
votes
2answers
46 views

Worth adding indexes on a column just to make them a foreign key?

I have an invitations table in my database, which has got a from and to columns, which are both foreign keys for the userId column in my users table. For example, if User # 1 invited User # 2 to do ...
0
votes
2answers
174 views

MySQL create tables using a cron job or use Views

I have a number of complex queries, the results of which were being stored in MySQL views. The problem is that MySQL views suffer in performance terms. I set up a cron job to populate a standard ...
0
votes
2answers
92 views

2 question about better optimize database design

1) In mysql engines, MyISAM Is Better Or InnoDB ? 2) i want programming a cms that it could add a post with multi category how i must design my database to have a better performance with a few query ...
0
votes
5answers
289 views

Optimal database structure - 'wider' table with empty fields or greater number of tables?

I need to fit in additional data into a database, and I have a choice between modifying an existing table (table_existing) or creating new tables. This is how table_existing looks like right now: ...
0
votes
1answer
194 views

MySQL: JOIN & using index in an ORDER BY query

I have a system that's similar to the Q&A feature of stackoverflow. The main difference is hat each question has an expiration datetime: CREATE TABLE questions ( id INT NOT NULL ...
0
votes
1answer
220 views

What does SQL Server Execution Times represent?

I have a query that I'm running on two equivalent databases, but hosted on separate MS SQL 2005 servers. I want to measure the time of a query on both servers, and thus tried the following: SET ...
0
votes
5answers
222 views

I can store a lot of data (<=4GB) in one table column. But is it a good idea?

To make a long story short, one part of the application I'm working on needs to store a somewhat large volume of data in a database, for another part of the application to pick up later on. Normally ...
0
votes
2answers
625 views

How can we optimize this linq to entity query to decrease the response time?

IQueryable<WebEvent> mySearch = eventDC.GetBooks() .Where(p => p.Price.Any(d => d.EventDatetime.Month == fromDate.Month && ...
0
votes
2answers
284 views

Database for microblogging startup

I will do microblogging web service (for school, so don't blast me for lack of new idea) and I worry that DB could be often be overloaded (user could following other users or even tag so I suppouse ...
0
votes
6answers
205 views

Is it of any drawback if a table has many (20+) foreign key constraints?

Let's says I have a table which has many fields linked to values from other "value tables". Naturally, I declare foreign key constraints on each and evary of them to enforce integrity. What if I ...
-1
votes
4answers
72 views

How can I optimize this simple database and query using php and mysql?

I pull a range (e.g. limit 72, 24) of games from a database according to which have been voted most popular. I have a separate table for tracking game data, and one for tracking individual votes for ...
-3
votes
3answers
210 views

Solution for speeding up a slow SELECT DISTINCT query in Postgres

The query is basically: SELECT DISTINCT "my_table"."foo" from "my_table" WHERE... I'm 100% certain that the DISTINCT portion of the query is the reason it runs slowly, so I've omitted the rest of ...