Tagged Questions
0
votes
0answers
29 views
SQL: Non MVCC COUNT vs. MVCC triggers [closed]
Hi I was wandering what is faster in read and read/write.
Count on MyISAM
Index-only scan on PostgreSQL
INSERT und UPDATE trigger on InnoDB or PostgreSQL incrementing a counter
Any opinions about ...
-2
votes
4answers
212 views
Select * from table vs Select col1,col2,col3 from table [duplicate]
Possible Duplicate:
select * vs select column
I was just having a discussion with one of my colleague on the SQL Server performance on specifying the query command in the stored procedure.
...
-3
votes
1answer
116 views
time consumed SELECTing 1 row (WHEREd PK id only) vs more complex SELECTs [closed]
Does anyone have any benchmarking standards for how long it takes to SELECT one row by the PK ai INT id? I assume it increases with table size, but the one link I could find dubiously said no.
I've ...
6
votes
3answers
187 views
Database temporarily disconnected after a lots of transactions by pgbench
I am using (PostgreSQL) 9.2.1 and test the database with pgbench.
pgbench -h 192.168.39.38 -p 5433 -t 1000 -c 40 -j 8 -C -U admin testdb
When I use the -C parameter(Establish a new connection for ...
3
votes
3answers
673 views
SQL Benchmarks: PHP ActiveRecord ORM vs. MySQL vs. CodeIgniter Active Record vs. Standard PHP
Tests updated to be more readable; all done within a 100x foreach loop.
The test query is SELECT * FROM school_courses;
Can anyone provide "outside-the-box-thinking" feedback as to:
a) Why PHP ...
0
votes
2answers
261 views
Oracle sql benchmark
I have to benchmark a query - currently I need to know how adding parameter to select result set(FIELD_DATE1) will affect sql execution time. There is administration restrictions in db so I can not ...
0
votes
0answers
331 views
SQL Server 2012 Performance Test [closed]
I've been given a task to test where an SQL server 2012 can achieve better performances - we have two options:
Use the SQL Server as an On-Premise machine (Standalone server that we have)
Use the ...
0
votes
1answer
126 views
MySql: Get a more precise time measurement than a hundredth of a second
When I run a SQL in MySql or I use the BENCHMARK command, I get a result like the following:
2 rows in set (0.00 sec)
0.00 sec isn't very meaningful for some queries, and sometimes more precision ...
2
votes
7answers
317 views
“About a hour ago” logic in PHP / SQL and how it affects performance?
Lately I have been facing websites with "X hours ago", "X days ago" features. (including stackoverflow)
Like,
Anil played a game around a hour ago.
Anil leveled up 2 days ago.
Anil posted this ...
0
votes
1answer
152 views
One column various data combinations instead of multiple data columns?
SELECT name FROM users WHERE type_a1=1 AND type_a2=5 AND type_b2=8
Such command can be found in normal cases. But assuming 1 special case where:
Each user has 260 types (a0, b0..z0 to a9, b9..z9), ...
1
vote
1answer
1k views
Solr vs. MySQL performance for autocomplete
In one of our applications, we need to hold some plain tabular data and we need to be able to perform user-side autocompletion on one of the columns.
The initial solution we came up with, was to ...
0
votes
3answers
468 views
CakePHP slow output, but query appears to be up to par
Most of the outcome of what I am about to say is obvious, but I am looking for any additional configuration options or suggestions that might be available in the core or other modifications I can make ...
5
votes
2answers
180 views
Looking for generic library for SQL script execution (a.k.a. RDBMS benchmarking library)
I wonder if there's a library that abstracts the following DBMS operations:
Load data (a bunch of CSV files or SQL insert statements)
Execute a bunch of queries
Get measurements for the above ...
1
vote
1answer
244 views
MySQL Query Cost
Can someone tell me the theoretical difference in the expensive of the following queries?
SELECT * FROM posts WHERE category IN(1)
SELECT * FROM posts WHERE category IN(1,2)
SELECT * FROM posts ...
6
votes
3answers
394 views
B-trees, databases, sequential vs. random inserts, and speed. Random is winning
EDIT
@Remus corrected my test pattern. You can see the corrected version on his answer below.
I took the suggestion of replacing the INT with DECIMAL(29,0) and the results were:
Decimal: 2133
...
-2
votes
2answers
976 views
MYSQL disable SELECT BENCHMARK
how would I disable the mysql benchmark function, thus not being subject to blind sql injection attacks such as "select if( user() like 'root@%', benchmark(100000,sha1('test')), 'false' );"
select * ...
0
votes
1answer
313 views
How do you repeat a raw SQL query # times to MySQL?
I want to test the load a MySQL server can handle using a couple versions of a query and for that I'm looking for something like apachebench (but for mysql).
I'm hoping to run 500 or more concurrent ...
1
vote
3answers
519 views
How can i benchmark my SQL and PHP code?
I have problems because i don't really know how I can test my code and sql ( mysql ) to see how long SQL queries and PHP functions /code take to run.
Does anyone here know where I can find these ...
2
votes
6answers
2k views
TPC or other DB benchmarks for SSD drives
I have been interested in SSD drives for quite sometime. I do a lot of work with databases, and I've been quite interested to find benchmarks such as TPC-H performed with and without SSD drives.
On ...
