The query-performance tag has no wiki summary.
0
votes
1answer
27 views
Indexed query along with non index conditions
The following is a query that I'm executing.
select col1, col2 from table1 where col1 in (select table2.col1 from table2) and col2 = 'ABC' ;
In table1, an index is available on col2, no index is ...
0
votes
1answer
33 views
MySQL: Does IN(p1) function differently to IN(p1, p2, … )?
I've just noticed this very odd (at least it seems to me), thing...
I've made sure the queries aren't being cached, but, queries using only one value in the IN() function are super slow... for no ...
-1
votes
3answers
38 views
Using indexes in SSMS to increase Query efficiency [closed]
Currently we are running SSMS 2008 and we currently have a Sql with 3 inner joins (1 table containing nearly 300,000 rows, and 2 other qry's).
This query took 28 minutes to run which is far too long. ...
-1
votes
1answer
33 views
Best approach of mysql query: Get records from multiple tables, using an id
What is the most efficient way to get records from 3 tables, using an id that exists in all tables to link the data?
First table: id is NOT a primary key. Many records have the same id value. This ...
1
vote
1answer
30 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
58 views
mysql slow SQL query on execute
I was wondering if there is any way to make this query faster, Query Time: 31,422s
SELECT
p.id_orden,
p.nombre,
pro.modelo,
GROUP_CONCAT(pa.nombre SEPARATOR ', ') AS acompanates,
...
0
votes
2answers
29 views
exists() condition performance issue
I'm confused...
I have simple SQL query (see below) that runs indefinitely long (I was not able to wait for its completion)
if exists(
select 1
from [files].[Contacts_Migration_Template] c ...
1
vote
3answers
56 views
TSQL - performance on an update/delete query
I want to update my table with values generated out of the same table.
My goal is to search all rows with proftxt like _NS and _WP and with the same ao, sum them up,
divide the value through the ...
0
votes
0answers
31 views
Performing database lookups: multiple SELECT queries or building a Java tree?
I'm struggling with the following Java implementation problem. I have a database with >30k entries, where efficient lookups have to be performed. It concerns an Oracle database, that is accessed via ...
-2
votes
0answers
40 views
performance of execute SQL command on local instance vs remote instance [closed]
i m developing an custom sql replication software and need to know that performance of executing sql over local instance differs from executing it from remote on same pc and same instance.
is ...
0
votes
1answer
31 views
Minimize http requests of jQuery ajax parsing
I created the function below, which basically parses the HTML of a given url, scans for a certain class and process the text that it finds:
A small sample of my function:
function ...
0
votes
1answer
42 views
Mysql 5.0.51 vs 5.1.66 perfomance issue
I have 2 mysql servers
Server A has mysql 5.0.51 - 8GB RAM Single Quad Core
Server B has mysql 5.1.66 - 64GB RAM - 2x Quad Core
Running the following query
select FULLNAME ,(select COUNT(*) FROM ...
0
votes
0answers
35 views
Flatten multiple M-to-N in MySQL or go documental?
. . I am refactoring an old MySQL database for a project. We have a products table (some 20k rows and it will possibly grow to 40k or a little more) and different types of categorization (currently 4 ...
-2
votes
2answers
67 views
Need help: Performance Hit in Sql Script [closed]
I am facing a big problem in my sql script.
I am using sql server 2005, whenever I run this script it will take huge time (nearly 3 mins) to execute. I want to reduce the execution time.
It is ...
4
votes
2answers
67 views
What is a good index for my query to get fast results?
I have a query that is pulling form many tables but it is slow and I want to improve it.
SELECT
ph.phone_call_id AS id,
ph.call_subject AS callSubject,
ac.account_name AS accountName,
...
1
vote
2answers
71 views
Improving poor intermittent SQL query performance
I have a moderately complex nested T-SQL query, which for the most part has good performance, except at the start of each of my 2-week pay periods (where there are fewer records to process!) the query ...
3
votes
4answers
72 views
SQL to get records with the same column A, but different B
Suppose we have the following table called meals:
| meal | stars |
-----------------
| steak | 1 |
| steak | 2 |
| fish | 4 |
| fish | 4 |
| salad | 5 |
How can I get ...
0
votes
0answers
70 views
INNER JOIN and IN give same execution plans. Why get different performance then?
I have an T-SQL SELECT (only INNER JOIN) with 2 levels INsub. Have flattened it with Inner Joins.
I get the same execution Plan, meaning optimizer does the Flat anyways.
On SQL Server WITH RECOMPILE ...
0
votes
1answer
33 views
Can denormalization become inefficient?
We have a table that we denormalized because we have a big risk that the joins would be too slow for the amount of data of our users. So we created 10 columns info (INFO0, INFO1... INFO9). Most of the ...
0
votes
2answers
40 views
SQL Access query speed
I have the following query in my Access 2003 database:
SELECT
Projet.OTP AS OTP,
NumeroDA,
SUM(Quantite*PrixReelCommande) AS PrixTotal,
FIRST(Fournisseur1) AS Fournisseur,
...
-1
votes
1answer
81 views
Query is taking too much long time and impacting on our performance
Query is taking too much long time. This query comes from web aplication .
it was impacting on our performance.anybody please help me to rewrite it and share with me your valuable suggestions.
Query ...
4
votes
1answer
67 views
Optimized way to check distinct values in a column
I am looking for an answer where from a column (Table of around 50k records) I just need to check out whether the column has at least two distinct values in it.
Select Count(Distinct ColumnA)
from ...
0
votes
2answers
138 views
Why is this simple query taking a long time to execute and performing full table scan?
simple query is taking long time around 630 sec to execute
performing full table scan.
please help me to rewrite the query and also suggest me if any indexes need to add.
Query:
mysql> explain ...
0
votes
3answers
64 views
Case clause execution procedure
Hi i have a SQL which is extremely slow.
select case when (value=1)
then (select <Some Math Logic> from table where table.id=table_2.id)
else 'false' end
from table_2 where <where ...
0
votes
2answers
160 views
In clause versus OR clause performance wise
I have a query as below:
select *
from table_1
where column_name in ('value1','value2','value3');
considering that the data in such a table may be in millions, will the below restructuring help ...
2
votes
1answer
56 views
How to make Greenplum 4.2.3 only scan the intended partition?
When I uses unnest() in a View, and uses that View in a select statement, Greenplum seems to fail in only searching for the intended partition and search through all the partition of the main table ...
0
votes
2answers
65 views
My query is running more than 4 seconds help me here to get result in less than 1 second
My query is running more than 4 seconds.
i want result in less than 1 second
help me here.
Query:
SELECT a.index_id,
title
FROM fb_indices a,
fb_catalog_indices b FORCE INDEX ...
5
votes
3answers
163 views
query is taking long time around 540 sec help me to rewrite it
query is taking long time around 540 sec.
due to this load spikes was happen.
anybody please rewrite this query and suggest me to add any indexes.
suggest me what precatuions we need to take when ...
0
votes
0answers
78 views
Explain the difference in performance between ODBC in VS versus ODBC in SSMS
I've been tasked with creating an extract routine, pulling data from a Progress database and importing it into SQL Server. I've built the SQL statement, and although not the most complex statement ...
0
votes
0answers
40 views
Individual query in Access is slow/hangs; union to the exact same query is quick
I'm ready to chalk this up to the catch-all "Access is weird" I end up deferring to pretty frequently. I'm troubleshooting an issue with some legacy software (using .accdb format Access file) with the ...
0
votes
1answer
44 views
Sampling unique set of records in Oracle table
I have an Oracle table that from which I need to select a given percentage of records for each type of a given set of unique column combination.
For example,
SELECT distinct column1, column2, ...
0
votes
0answers
68 views
Choosing Entity Framework or Having ADO.net Calling Stored Procedures
Am in the process of designing an enterprise app (having exhaustive read and query operations). Taking financials and extendibility in mind (along with other benefits in mind) I thought of choosing ...
0
votes
0answers
107 views
optimize query with FOR XML PATH to show comma separated values from another table
I have following query which takes around 39 seconds for 8179 records.
SELECT PT.P_Name as Prisoner_Type, PE.PID_No,PE.Jail_Code,PE.Entry_Year,Convert(varchar(10),PE.Admission_Date,103) ...
1
vote
2answers
155 views
Querying Large Table in sql server 2008 [duplicate]
We have a table with 250 Million records (unique 15 digit number. Clustered Unique Index column) which will be queried at least by 0.7 to 0.9 Million requests on an average/day.
We have multi ...
0
votes
1answer
37 views
How can I optimize this mysql 3 table join query?
SELECT
a.idmotcle,
a.motcle,
count(DISTINCT c.id) as 'Programs',
count(DISTINCT d.id) as 'Searches',
FORMAT(count(DISTINCT d.id)/count(DISTINCT c.id),2) as 'S/P'
FROM motcle a
INNER JOIN ...
0
votes
1answer
51 views
Database Design for Audit: Many Rows for Answers vs Many Columns
I am designing a table structure within a SQL Server 2008 database that will hold the results of an audit. The audit currently has 65 questions and possible answers of 0-4 or N/A. The table ...
0
votes
1answer
91 views
SQL, Struggling to believe HAVING can be more efficient than a join
I Am trying to find Players that have played in more than one game for a team in the following tables (** denotes private key), and find it hard to believe the best query I can come up with (below) is ...
-8
votes
2answers
65 views
query taking too much time with irritated performance [closed]
My query is taking very long time around 1hr
it was impacting on DB performance.
even for Explain plan also it was taking very long time.
please rewrite the query for optimal performance.
Query:
...
0
votes
1answer
70 views
Struggling with long running query even for explain plan also it was taking very much time
My query is taking very long time around 1hr.
2.due to this it was impacting on DB performance.
3.even for Explain plan also it was taking very long time.
4.My query is very big.
Query:
select ...
0
votes
1answer
149 views
Oracle ADF Table Row Selection Performance Tuning?
I have a problem with an ADF table component in my jspx page.
In my table each row contains 2 LOV component (seleconechoice).Table row selection value is "single". After clicking the row table ...
0
votes
3answers
70 views
Rewrite SQL code SELECT block to simplify logic
I am trying to rewrite this block with simpler logic if this can be done. I am using it within a larger SELECT statement and I think IF I can simplify this block, I might be able to improve ...
1
vote
3answers
93 views
why do some columns slow down the query
I am using SQL Server 2012.
I am trying to optimize a query which is somehting like this:
SELECT TOP 20 ta.id,
ta.name,
ta.amt,
tb.id,
...
1
vote
1answer
63 views
too much time to execute also impact on db performance
1.query is taking around 10mins to 1 hr to execute.
2.due to this we are getting load spikes frequently.
3.please help me to rewrite the query.
4.also help me to improve the performance of query.
...
1
vote
2answers
70 views
qury taking too much time .also it effecting on performance
query is taking around 10mins to 1 hr to execute.
due to this we are getting load spikes frequently.
please help me to rewrite the query.
also help me to improve the performance of query.
Query:
...
3
votes
1answer
69 views
Mysql Query with Order By too slow
I know this kind of question has been asked before, but none of those led me to a solution.
Here is my query:
SELECT p.photoid, c.comment, p.path, p.smallfile, p.bigfile, c.userid, c.dateposted, ...
2
votes
1answer
112 views
Using stored procedures performance will improve
I need to know the advantages of using stored procedures.
Presently client has 3-tier architecture. Most of the tables are innodb.Most of the servers have ~64G of ram and all the servers are linux ...
1
vote
1answer
75 views
query executing too much time
my query is taking around 2800 secs to get output.
we have indexes also but no luck.
my target is need to get the output with in 2 to 3 seconds.
if possible please re-write the query.
query:
select ...
1
vote
2answers
61 views
long running query
1.Below query is taking around 49 sec to execute.
2.our target is need to get result in 1 to 2sec.
3.query having indexes and it was using
4.how to avoide this long time execution.
5.it is a simple ...
2
votes
2answers
54 views
how to rewrite query replacing of (or),(and) conditions
query taking too much time to execute like around 130 mins.
table having indexes but query is not using indexes.
table size is around 30 millions of records.
please help me to rewrite the query by ...
1
vote
2answers
91 views
too much time to execute
Below query is taking long time to execute around 2mins please help me how to improve performance of this query.
so our requirement is to get result within 2 to 3secs.
query is using indexes also.
...




