Questions about database performance and tuning, ranging from files organization and configuration to benchmarking and system optimization, passing through management systems and the fastest ways to operate a database.
0
votes
1answer
17 views
Is the XML parsing slow, or is the SQL insertion methodology the bottleneck?
Although I think it's likely that it's the volume of data that's causing the problem, and not the way we're sending/parsing it (and the fact that the device receiving the data is a 98-lb. weakling ...
1
vote
2answers
38 views
SQL Performance compare IN to COUNT
I am thinking about performance over all and came to the question how the fastest way to get rows from a table for that matter:
SELECT *
FROM table a
WHERE a.id IN (SELECT id FROM table b)
OR
...
0
votes
1answer
14 views
Fast writes to MongoDB node, but slow to replSet
I have replSet with 3 nodes (node2, node4 and node6). Node2 has higher priority so it is PRIMARY.
I connect to the primary node from local machine (far away from all the nodes and their local ...
0
votes
0answers
13 views
Can you tell some problems with these MySQL system variables?
I am new to database performance. MySQL has many variables making me confused most time, such as I checked below:
|Threads_cached | 5
| Threads_connected ...
0
votes
0answers
18 views
does COPY(…) TO STDOUT WITH CSV HEADER execute as a BULK transaction?
I am wondering what is the most efficient way to select a large amount of data and put it into a file on linux. Here is how I do it now:
file.sql contains:
copy(select ...) TO STDOUT WITH CSV HEADER
...
0
votes
1answer
16 views
will MySQL highly frequently scheduled query affect database performance?
I have a couple of queries executing every 10 seconds, and both tables are using 'text' data type. I wonder if this will affect database performance? One table is full scan, another one has 'order ...
0
votes
2answers
16 views
How to empty or clean some of the system variables value after mysql database is rebuild?
For testing, I almost rebuild the newly designed MySQL database every day recently, I also have a Php application based on that. For my understanding, some of system variables value has been ...
0
votes
3answers
44 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
0answers
54 views
SQL Server - inconsistent insert speed, fast then very slow
I'm trying to diagnose a slow insert that I thought I had fixed but the problem is returning intermittently. It's literally a straight insert statement, it runs every evening and inserts around 80,000 ...
0
votes
2answers
40 views
GUID clustered PK's faster than BIGINT and INT identity PK's on SQL Server 2012 Express?
I'm developing a database-intensive application which maintains about 5 tables. These tables contain many thousands of records each. All the tables use GUID clustered primary keys. To make it ...
1
vote
1answer
40 views
mysql slow query log keeps recording same queries every 5 seconds
I enabled below variable in my.cnf:
log_slow_queries = "/var/log/mysql/mysql-slow.log"
long_query_time = 2
log-queries-not-using-indexes
and restarted the MySQL service . Then mysql-slow.log ...
0
votes
0answers
16 views
How about a sorted Hash index?
Hash index is very quick at searching for a specific row, while b-tree is good at range search.
But why not create something like sorted hash index? where you could also get a range of results with ...
1
vote
2answers
24 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
24 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
3answers
65 views
Avoiding multiple calculation for the same values
Is there a way that I can improve the performance of this query by avoiding multiple calculation of some repeating values like
regexp_replace(my_source_file, ...
0
votes
1answer
48 views
Postgres two subqueries poor performance [EAV model]
I have a table called "meta" with 2.2 million records. This table contains 3 columns: productId, key and value. Key and value are the two columns containing a meta description of a product.
The ...
0
votes
2answers
42 views
Working with big amount of data. PHP Sessions or accessing data every time?
We have this web app we're working on where users store some bookmarks (url/title/shortkey/times url clicked) etc.
Every time the user refreshes the page, this data is being retrieved from the ...
0
votes
0answers
35 views
Linq To Sql Category Sub Category Count Performans
Product Table : ID Name ...
Category Table : ID ParentCategoryID Name
ProductCategories Table : ID CatID ProdID
and.. ProductCategories in CatID foreign key and ProdID foreign key
multiple SQL ...
1
vote
1answer
34 views
When is it better to flatten out data using comma separated values to improve search query performance?
My question about SEARCH query performance.
I've flattened out data into a read-only Person table (MySQL) that exists purely for search. The table has about 20 columns of data (mostly limited text ...
0
votes
0answers
10 views
What is the total number of open connections recommended for HTML5 websql database?
My target browser is chrome and opera latest versions. Please let me know if there has been any study done on how many (max size) open connections (open simultaneously) on HTML5 websql database is ...
1
vote
1answer
63 views
When is the right time to create Indexes in Oracle?
A brand new application with Oracle as DataStore is going to be pushed in Production. The Databases use CBO and I have indentified some columns to do indexing. I am expecting the total number of ...
0
votes
0answers
9 views
Joomla 1.5.10 serious performance issues?
We have build a Intranet on Joomla, its used by more than 20,000 users. At times there are 200 or more concurrent users on the site. And site starts working slow and sometimes crashes. What should we ...
0
votes
1answer
43 views
Am I doing indexes for my MySQL table right?
I have a MySQL table that has a list of messages, where each message belongs to a room. I do queries like this:
SELECT * FROM messages WHERE room='offtopic' ORDER BY id DESC LIMIT 5;
As my table ...
2
votes
3answers
36 views
Sorting records quickly from a model with 500k records
I am attempting to sort records in a model which has 500k rows in it. When I initially attempted this procedure I had just 200 records and used the following code and pulled out records 1-5 to list ...
1
vote
2answers
33 views
Multiple SQL queries checking against 1 row vs 1 single query checking against multiple rows
I am curious, what has a better performance. A little bit about the context : I am processing a CSV file that needs to be entered into a database table and need to ensure that I smell out the ...
2
votes
2answers
63 views
Dropping unnecessary indexes - effect on query plans in SQL Server 2005
Below is a portion of the index mess we have on a 2MM record table (SQL Server 2005). Clearly there are opportunities to pear them down. This table has 16 indexes altogether, including a clustered PK ...
0
votes
2answers
42 views
Caching Data on a Heavy Load Web Server
I currently have a web application which on each page request gets user data out of a database, for the currently logged in user.
This web application could have approximately 30 thousands concurrent ...
1
vote
1answer
34 views
Benefits of using mediumint instead of int for primary key columns?
I inherited a database where the previous developer used a mix of mediumint and int for key columns. I am now going through the database and trying to add foreign keys and I have run into some ...
0
votes
0answers
50 views
SQL Server: Worse performance on a new server [migrated]
We've been on a dedicated server (single quad-core, 6 GB RAM) and are moving to a new dedicated server (2x hex-core, 32 GB RAM). Both are Windows Server 2008, SQL Server 2008. The performance on the ...
1
vote
1answer
58 views
Bad performance for the entity manager commit - Exponential
Im using the entity manager JPA with eclipse link 2.3 &Derby db and I have model with 10 entities and for each entity I need to store 1000 records ,this process takes about 70 sec. I have test it ...
0
votes
2answers
55 views
h2 default DECIMAL precision performance
When I create DECIMAL column with default precision setting, in H2 web console this column is defined as DECIMAL(65535, 32767), command "show columns from ..." gives me DECIMAL(65535).
Decimal data ...
0
votes
1answer
40 views
MySql InnoDB & performance: what is the best structure?
For a db that I need to built (InnoDB), I have two different structures in mind and I would like to know which one is best in terms of performance.
I want to store thousands of products. Each product ...
0
votes
0answers
25 views
How to balance query optimization and data manipulation performance?
I have a report/issue management application that has an interactive dashboard that allow users to drill from bar, line and area charts to a summary page(data grid). The summary page aggregates the ...
0
votes
0answers
45 views
Hibernate: One-to-many entity loads slowly
I had a performance issue with my entity classes and I decided to use the org.hibernate.annotations.BatchSize annotation with lazy loading, as I had read about it here.
But, even this couldn't ...
0
votes
1answer
29 views
SqlServer 2008 Need suggestion for optimize my query and which filed to index field in table
I have this query
select count(distinct user1_.Id) as col_0_0_ from [FriendCloseness] friendclos0_ inner join [User] user1_ on friendclos0_.User_id=user1_.Id where dateadd(d, 0, datediff(d, 0, ...
3
votes
1answer
71 views
Field order for Where clause
I've discovered, that field order impacts on Select performance. For example, I want to extract data from view V_EUQI by TPLNR(500), DATBI(1) and EQTYP(1), the sentence:
SELECT ... FROM v_equi INTO ...
0
votes
0answers
14 views
Scaling database horizontally with an intersection table
I am busy building an e-commerce website, and I need to scale my SQL Server database horizontally as the website's traffic is going to increase.
Table A has an auto increment identity column, and ...
0
votes
0answers
24 views
SQL Server Performance multiple Datasources Reads Writes
Are there are any performance benefits in using different datasources for SQL Server when performing reads versus writes?
Example:
Database Name: Foo
DSN1 used for reads
DSN2 used for writes
Does ...
0
votes
4answers
67 views
Is efficient the following SQL query?
Exist a better way to do what the following SQL query does? I have the feeling that table1 will be searched twice and may be that can be avoided with some trick and increase the efficient of the ...
0
votes
0answers
33 views
MySQL: Best way to store and fetch element & sub-elements [closed]
I'm trying to design a system in which I need to store some elements (text) and sub elements (also text) in a database, and need to show the elements with their sub elements for users' request by ...
0
votes
2answers
72 views
MySQL; LEFT OUTER joining on DATEDIFF with indexes taking 300+ seconds (but only the first time)
MySQL's built in cache really makes this question moot for most of the day, but the very first time the following query is run, the performance is terrible: Taking over 300 seconds the first time ...
1
vote
2answers
45 views
mysql does not use primary bigint index
iam fighting with some performance problems on a very simple table which seems to be very slow when fetching data by using its primary key (bigint)
I have this table with 124 million entries:
CREATE ...
0
votes
2answers
31 views
Possible Web App Database Performance Issue
I'm working on an app for personal trainers at gyms to track their client's workouts. The way it works essentially breaks down into two groups.
There are exercises, which are pretty straightforward, ...
2
votes
2answers
60 views
How to improve performance of queries which use table-valued functions?
I have a query of the form:
SELECT a.id, b.colb, c.colc, d.cold, ...
FROM a JOIN b on a.id=b.id
JOIN c on a.id=c.id
JOIN d on a.id=d.id
JOIN e on a.id=e.id
...
Each ...
0
votes
2answers
24 views
Is there a way to have shorter `_cls` values in mongoengine?
Is there a way to have shorter _cls values in mongoengine, apart from making the names of the classes shorter (which would make code difficult to read)?
I was looking for something like this:
class ...
0
votes
1answer
28 views
How do you adjust Sybase optimizer settings in Java at the session level?
Per Sybase, you can adjust optimizer settings at the session level as such:
set plan optgoal allrows_dss
But what is the syntax I would use to include this in a connection string using Java's ...
2
votes
2answers
73 views
Query Tuning - Advice
I need advice on the attached Query. The query executes for over an hour and has full table scan as per the Explain Plan. I am fairly new to query tuning and would appriciate some advice.
...
0
votes
0answers
32 views
Mysql Performance testing for push and pop [closed]
I am Having Server installed in Ubuntu
I want to know the performance of the MYSQL server and Ubuntu. My superior asked me to generate report of the performance
He needs execution time for insert ...
0
votes
3answers
55 views
Optimize performance of complex GROUP BY query
Is there a way to optimize the following query. It takes about 11s:
SELECT
concat(UNIX_TIMESTAMP(date), '000') as datetime,
TRUNCATE(SUM(royalty_price*conversion_to_usd*
(CASE ...
1
vote
1answer
67 views
PHP check for least busy MySQL server
I'm writing a BI tool at work using PHP, which consists of one Linux + Apache + PHP machine serving reports and dashboards, containing data taken from our MySQL database. The database structure ...


