sql-tuning Questions
4
I have an application which is running slowly over a WAN - we think the cause is multiple inserts into a table. I'm currently looking into more efficient ways to insert multiple rows at the same ti...
Hapless asked 6/8, 2013 at 8:30
2
This is a simple query: select * from customers
When I write this query in PL/SQL Developer and press F5, I see Explain Plan,
but I don't know what are Cost, Cardinality and Bytes represent....
Jeavons asked 11/2, 2018 at 14:11
2
I have query that join two very big tables and ran explain plan on that it showing like this..
--------------------------------------------------------------------------------------------------...
Sorel asked 30/1, 2014 at 17:6
3
Solved
I run EXEC sp_who2 78 and I get the following results:
How can I find why its status is suspended?
This process is a heavy INSERT based on an expensive query. A big SELECT that gets data from s...
Abode asked 26/2, 2014 at 10:34
2
Solved
I have the below query. which is slowing down the performance because of the subquery in it. I tried a lot to add Join instead of Subquery. but in vain. Can anybody tell me how can I rewrite this q...
Mediatorial asked 30/6, 2015 at 5:39
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
3
Could you guys please review the following query to an Oracle DB and point out what's wrong:
SELECT t1.name FROM t1, t2 WHERE t1.id = t2.id AND t2.empno IN (1, 2, 3, …, 200)
Query statistics:
...
Exsect asked 11/8, 2011 at 15:19
6
Solved
The following query is intended to receive a list of unread messages by user. It involves 3 tables: recipients contains a relation of users to message IDs, messages contains the messages themselves...
Delciedelcina asked 27/6, 2011 at 18:55
5
Solved
According to this page in the manual, indexes don't need to be maintained. However, we are running with a PostgresQL table that has a continuous rate of updates, deletes and inserts that over time ...
Wispy asked 6/3, 2010 at 15:30
1
© 2022 - 2024 — McMap. All rights reserved.