The database-optimization tag has no wiki summary.
1
vote
1answer
60 views
Getting multiple tables with single db call in entity framework
I am new to ASP.NET MVC and Entity framework. Previously I used to work with ADO.NET Datatables and DataSets. So in scenarios like getting multiple tables from database in single call, I used to use ...
0
votes
1answer
18 views
What is Ideal value to set for long_query_time in slow query log for magento?
To optimize magento we enable slow query log in mysql.
What is ideal value for query_long_time especially for magento?
0
votes
2answers
39 views
What is the most elegant way to do Concurrency Control of modifying records in Mysql?
Ok, look at this scenario, I got a table in which users may modify many rows at the same time. I want that when someone is modifying records then other people can't modify the same record. Ex, there's ...
1
vote
1answer
59 views
Does Database Indexing play any important role in Parent Child table?
Look at this 1st scenario, you got a table that has 2 columns- Parent (P) & Child (C).
P-C
1-3
2-8
3-6
6-4
8-7
When users search for all descendants of "1" then it will show:
P-C
1-3
3-6
6-4
...
0
votes
2answers
41 views
Should we store the Text & the Tag of an HTML String into 1 same column or into 2 seperate columns?
I want to store the following HTML string into DB <b>This</b> is <i>my text</i>. There are 2 parts of this Html string:
The Text: "This is my text"
The Tags: <b>, ...
0
votes
1answer
67 views
Database design - how to structure
Currently, I have one table, and it is getting populated very fast.
I have 50 devices. I gather data from each device every 30 seconds. Therefore, after we add 10,000 devices, they would generate ...
-2
votes
2answers
76 views
MYSQL database optimization using indexing [closed]
I am working on LearnBiz Simulations, a self-funded start-up which makes simulations for the domain of management education.
(a) Our website is currently catering to about 16k people. Currently, size ...
1
vote
1answer
55 views
which is better ? Reduncancy with faster access of data , or no redundancy and slower data access
i want to create a database for a forum website...
All the users of the forum website will be stored in a table named USERS with the following fields :
user_name
user_ID
(and additional details)
...
0
votes
1answer
198 views
How To Optimize Sql Server Database with Huge Log File
I've a sql server database sized 1677,25 MB. Here's my detailed DB size info:
DB Size:1677.25 MB
Unallocated space: 343.09 MB
Reserved: 24488 KB
Data: 18560 KB
Index size: 2632 KB
Unused: 3296 KB
...
0
votes
2answers
83 views
SQL - Store a calculated value (based on child tables) in a column or calculate in data model?
I have run into a little quandry, and I'm hoping the SO community can help me out with this one.
I'm currently in a situation where we are writing custom logic for order discounts, which are based on ...
1
vote
1answer
158 views
Matching descriptor to database of descriptors
I'm trying to find a fast way to match descriptors from a database. My program works the following way:
1) Populates a database with descriptors of images (using proper feature detection algorithms)
...
0
votes
2answers
135 views
which is more efficient single table with large data columns or multiple tables? (hibernate - database)
My web application is implemented in Grails.
My situation is that I have a domain class (hibernate class) with more columns and some of them are large Strings, up to 4000 characters.
For example :
...
2
votes
2answers
240 views
Optimising MySQL queries with heavy joins
I currently run a site which tracks up-to-the-minute scores and ratings in a list. The list has thousands of entries that are updated frequently, and the list should be sortable by these score and ...
1
vote
1answer
146 views
MySQL insert, update-heavy, sort by index
I'm currently designing a database that has a table events that will be insert (and update)-heavy (I predict anywhere between 1,000 and 5,000 inserts per minute), but also needs to be sorted by date.
...
4
votes
3answers
121 views
Removing duplicate indices from mysql database with priority
I am making a procedure for optimizing indices of my databases and it will take me long. So I want to confirm if it is feasible to do? And not already done otherwise want to get it.
I want to read ...
1
vote
1answer
85 views
SQL query performance explanation
I have this query(of course with couple joins across tables and some views which I will call x for simplicity).
Case 1 : select * from x -> returns in 10 sec, still acceptable,
fairly heavy on ...
0
votes
1answer
90 views
MySQL VARCHAR storing after setting null
I have big MySQL InnoDB table with some varchar(512) column. Next inserted rows depends on previously inserted. After inserting new row, varchar field of previously inserted row will be state ...
0
votes
2answers
162 views
postgresql fast transfer of a table between databases
I have a postgresql operational DB with data partitioned per day
and a postgresql data warehouse DB.
In order to copy the data quickly from the operational DB to the DWH I would like to copy the ...
0
votes
1answer
111 views
How to optimize a Sybase ASE database?
What are the tricks to optimize a sybase database?
What are the does and don'ts?
0
votes
1answer
50 views
MySQL DB opimise through php
Another little bit which I am missing (as a beginner) I have a Backup script between two DB and as a final step I should optimise the real DB to reduce the size of the overhead. I have a code which ...
6
votes
3answers
192 views
Speed up multi-dimensional euclid distance calculation in MySQL
I have the following table storing data about images:
images
- id (int)
- sample_1_1 (int)
- sample_1_2 (int)
- sample_1_3 (int)
- sample_2_1 (int)
- sample_2_2 (int)
- sample_2_3 (int)
- ... ...
-1
votes
2answers
485 views
How mysql/innodb database size impacts performance?
I have a 30 GB large mysql database where all tables use innodb engine.
Almost all of this space is taken by one large table (about 25 GB) where I store large texts in binary format, but 99% of the ...
4
votes
3answers
129 views
Should primary keys always be added to an innodb table?
I have some innoDbs with only 2 int columns which are foreign keys to the primary keys of other tables.
E.g one table is user_items, it has 2 columns, userId, itemId, both foreign keys to user and ...
0
votes
1answer
78 views
Storing MD5 values in a database [duplicate]
Possible Duplicate:
Best practices for efficiently storing md5 hashes in mysql
We use Hex representation of MD5 values in our system.
Will it be wise to store them in our MySQL DB as ...
6
votes
7answers
3k views
Delete statement in SQL is very slow
I have statements like this that are timing out:
DELETE FROM [table] WHERE [COL] IN ( '1', '2', '6', '12', '24', '7', '3', '5')
I tried doing one at a time like this:
DELETE FROM [table] WHERE ...
2
votes
1answer
78 views
MySQL: Performing Updates on a Large Table with Indices
Evening,
I have a large but simple table with nearly 30 million rows. The table has an index for most columns. It's taking a long time to perform any updates on it and I was wondering wheter it would ...
2
votes
1answer
402 views
30 Million Rows in MySQL
Evening,
I'm going through the long process of importing data from a battered, 15-year-old, read-only data format into MySQL to build some smaller statistical tables from it.
The largest table I ...
5
votes
2answers
175 views
Multi-site CMS and SQL Server query optimizer with fulltext search
We have tables Site and Content in our database.
Each site is operated by a different client and each site has it's own content.
On the front end of the sites we offer a search box which uses a ...
0
votes
4answers
167 views
Are transactions like big queries?
I know that in terms of efficiency it is better to have one big query instead of many small ones, as it is better to reduce the amount of connections with the database to the minimum (especially in ...
2
votes
4answers
2k views
Will indexing improve varchar(max) query performance, and how to create index
Firstly, I should point out I don't have much knowledge on SQL Server indexes.
My situation is that I have an SQL Server 2008 database table that has a varchar(max) column usually filled with a lot ...
1
vote
1answer
151 views
best engine for high-performance counts table
I have a counts table which contains columns similar to (around 14 count columns):
user_id
friends_count
photo_count
video_count
blogs_count
This table gets updated whenever the user adds a photo ...
1
vote
3answers
243 views
Organizing and optimizing large tables
I'm building a predictive dialer where speed is critical. To dial the number I pull customer information from tables and build call files for a pbx to act on.
Currently I have a table for each area ...
1
vote
2answers
168 views
Spreading/distributing an entity into multiple tables instead of a single on
Why would anyone distribute an entity (for example user) into multiple tables by doing something like:
user(user_id, username)
user_tel(user_id, tel_no)
user_addr(user_id, addr)
user_details(user_id, ...
1
vote
3answers
86 views
Issues on how to INDEX my database
Please i need your help with how to include INDEXES in my tables, i've read about it in several tutorials but still cant implement it on my database . To increase the efficiency of my database:
I ...
1
vote
1answer
1k views
One big query vs. many small ones?
I'd like to know, which option is the most expensive in terms of bandwith and overall efficiency.
Let's say I have a class Client in my application and a table client in my database.
Is it better to ...
0
votes
2answers
319 views
SQL Query Optimization When using Multiple Joins and Large Record Set
I am making a message board and I trying to retrieve regular topics (ie, topics that are not stickied) and sort them by the date of the last posted message. I am able to accomplish this however when I ...
1
vote
1answer
40 views
Can left join be optimized in 'preferred users' MySQL query?
I have two tables:
poll_response (poll_id, option_id, user_id)
(about 500,000 rows, with 500 unique polls, 1000 unique options, and 25000 unique users)
preferred_users (user_id)
(about 800 rows)
...
4
votes
5answers
180 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 ...
1
vote
3answers
121 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 ...
0
votes
0answers
102 views
Is complete denormalization a right MySQL optimization approach for an extreme case? [closed]
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 ...
2
votes
1answer
239 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.
...
0
votes
2answers
200 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 ...
-1
votes
4answers
134 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 ...
1
vote
0answers
102 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
194 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 ...
0
votes
2answers
148 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 ...
1
vote
2answers
1k 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 ...
2
votes
1answer
85 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 ...
0
votes
3answers
85 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 ...
4
votes
3answers
718 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', ...

