Top "Database-performance" questions

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.

How many MySql queries/second can be handled by a server?

I've started developing a browser (database) game. My question is how many queries can a regular hosting handle (when I …

mysql select optimization database-performance
Hibernate Criterion IN Clause 1000 break up

Hi i have this large oracle hibernate web applications and it seems to give this error ORA-01795: maximum number of …

java hibernate database-performance
How to interpret slow query log information generated by MySQL?

So my understanding of slow query log is that it logs info about all those queries that took >= time (…

mysql database-performance mysql-slow-query-log
What does Active Sessions and User I/O mean in Oracle Enterprise Manager?

What does "Active Session" mean? I need to analyze database performance by using this graph taken from Oracle Enterprise Manager (…

oracle database-performance oracle-enterprise-manager
Alter Non Clustered Index in SQL Server to Add more included columns

Is it possible to alter an existing non clustered index to include more columns as a part of Covered columns. …

sql-server indexing database-performance
Why is Oracle ignoring index with ORDER BY?

My intention is to obtain a paginated resultset of customers. I am using this algorithm, from Tom: select * from ( select /*+ …

sql performance oracle database-performance sql-execution-plan
Performance issues using H2 DB in embedded mode with heavy load of data in database

I am working a java application using H2 Database in embedded mode. My Application consumes 150mb of heap memory. Problem: …

h2 database-performance
how can I test performance in Sql Server Mgmt Studio without outputting data?

Using SQL Server Management Studio. How can I test the performance of a large select (say 600k rows) without the …

sql-server database-performance
Performance of nested select

I know this is a common question and I have read several other posts and papers but I could not …

sql performance database-performance query-performance
Android SQLite alternatives

I'm building a simple android RPG. Each player has access to a maximum of about 50 soldiers. Each soldier has some …

android sqlite android-sqlite database-performance