database-tuning Questions
9
Solved
I've a python script which works just as it should, but I need to write the execution time. I've googled that I should use timeit but I can't seem to get it to work.
My Python script looks like th...
Mantra asked 19/5, 2010 at 14:24
4
Solved
Based on information I have read about the "exec sp_reset_connection" which appears in SQL Server Profiler trace data when connection pooling exists, it seems safe--or logical, rather--to remove/ex...
Wraith asked 26/8, 2010 at 14:1
2
For a database hosted on Azure, i can view the recent history of the queries performed on it. This is through the Azure portal > Database > Manage > Administration > Query Performance.
Unfortunate...
Bevash asked 29/7, 2013 at 9:55
2
I have a laravel application which must insert/update thousands of records per second in a for loop. my problem is that my Database insert/update rate is 100-150 writes per second . I have increase...
Norsworthy asked 14/6, 2017 at 18:58
3
I have two tables [LogTable] and [LogTable_Cross].
Below is the schema and script to populate them:
--Main Table
CREATE TABLE [dbo].[LogTable]
(
[LogID] [int] NOT NULL
IDENTITY(1, 1) ,
[Da...
Cocklebur asked 19/4, 2017 at 8:54
2
Solved
I have a 4 node cluster with 16 core CPU and 100 GB RAM on each box (2 nodes on each rack).
As of now, all are running with default JVM settings of Cassandra (v2.1.4). With this setting, each nod...
Without asked 13/5, 2015 at 7:0
1
Solved
There is something i did not really understand with Amazon RDS (the PostrgreSQL version). Some queries takes a lot of time to show their results. I have set all relevant indexes (as shown with EXPL...
Prologue asked 6/1, 2016 at 10:57
0
PostgreSQL 9.4
In the article about hardware optimization for PostgreSQL server was shown that too much moving disk head may cause performance bottleneck. As far as I got, for the sequential scan,...
Mesosphere asked 5/10, 2015 at 7:22
0
On a powerful machine the SQL Server query is running too slowly.
In the execution plan I can see that most of the time spent goes to a "Lazy Index Spooling" process. In the query some aggregate ...
Hyp asked 11/10, 2014 at 12:23
1
Solved
UPDATE: I've answered this myself below.
I'm trying to fix a performance issue in a MySQL query. What I think I'm seeing, is that assigning the result of a function to a variable, and then running...
Crushing asked 20/2, 2013 at 18:11
5
Solved
How do I profile a MySQL database. I want to see all the SQL being run against a database.
I know you can do this:
set profiling=1;
Run your slow query (eg SELECT * FROM messages WHERE fromaddre...
Zeculon asked 18/6, 2009 at 14:16
1
I'm using SQL Server Profiler to figure out what process are consuming SQL process and I found that the event class Audit Logout is causing a huge number of reads and consume cpu process.
Is it no...
Germayne asked 24/10, 2012 at 12:42
2
Solved
I am switching to PostgreSQL from SQLite for a typical Rails application.
The problem is that running specs became slow with PG.
On SQLite it took ~34 seconds, on PG it's ~76 seconds which is more...
Whippoorwill asked 23/2, 2012 at 4:59
1
Solved
I've been searching the web looking for best practices for configuring MongoOptions for the MongoDB Java driver and I haven't come up with much other than the API. This search started after I ran i...
Cullet asked 29/6, 2011 at 12:12
1
Solved
We're using a Oracle Text CTXSYS.CONTEXT index to index about half a million rows containing metainformation. The information is spread over two tables that are combined by a procedure that the ind...
Vestal asked 21/7, 2010 at 11:51
1
© 2022 - 2024 — McMap. All rights reserved.