Tagged Questions

This tag pertains to performance issues with Structured Query Language (SQL).The performance bottlenecks faced when managing data in relational database management systems. This tag is for specific questions related to performance improvement on back-end.

learn more… | top users | synonyms

12
votes
7answers
10k views

Database/SQL: How to store longitude/latitude data?

Performance question ... I have a database of houses that have geolocation data (longitude & latitude). What I want to do is find the best way to store the locational data in my MySQL (v5.0.24a) ...
9
votes
7answers
11k views

SQL Server SELECT INTO and Blocking With Temp Tables

So, recently a DBA is trying to tell us that we cannot use the syntax of SELECT X, Y, Z INTO #MyTable FROM YourTable To create temporary tables in our environment, because that syntax causes a lock ...
7
votes
3answers
169 views

Why does SQL cost explode with simple “or”?

I have the following statement to find unambiguous names in my data (~1 Million entries): select Prename, Surname from person p1 where Prename is not null and Surname is not null and not exists ( ...
6
votes
2answers
440 views

What tools are people using to measure SQL Server database performance?

I've experimented with a number of techniques for monitoring the health of our SQL Servers, ranging from using the Management Data Warehouse functionality built into SQL Server 2008, through other ...
5
votes
1answer
270 views

Combining datasets with EXCEPT versus checking on IS NULL in a LEFT JOIN

I'm currently working my way through the Microsoft SQL Server 2008 - Database Development (MCTS Exam 70-433) certification. In one of the earlier chapters on Combining Datasets, I came across the ...
3
votes
4answers
147 views

Query performance WHERE clause contains IN (subquery)

SELECT Trade.TradeId, Trade.Type, Trade.Symbol, Trade.TradeDate, SUM(TradeLine.Notional) / 1000 AS Expr1 FROM Trade INNER JOIN TradeLine ON Trade.TradeId = TradeLine.TradeId ...
3
votes
3answers
251 views

How to store query execution plan so that they can be used later

My applications runs queries against a sql server database. In many cases I can see the benefit of an execution plan: for example I click for the first time on a button to SELECT * from Tasks WHERE ...
3
votes
4answers
2k views

How to measure performance of query in oracle

I'm new to Oracle db. I have 2 queries which return the same result set. I want to measure the performance of each of them and choose the better one. How do I do that using Oracle SQL developer? I ...
2
votes
3answers
102 views

How to handle in an effective way duplicate key insertions w/out throwing an exception

My case scenario passes parameter to a procedure, that only does an insert. But two threads might try to pass the same value. How to handle this situation w/out throwing an exception and with least ...
2
votes
4answers
196 views

Join statement performance in SQL

I'm working on SQL Server 2008-R2 and I need to use multiple tables join. In that case, which query has better time performance, when using the WHERE statement or using INNER JOIN with ON statement ? ...
2
votes
1answer
300 views

Proper MySQL way to add a column from one table to another

I have a large table (~10 million records) that contains several keys into other, smaller tables. The keys are unique in each of the smaller tables but not in the large one. I would like to add a ...
2
votes
1answer
56 views

Optimise multiple OR query

I have a Database table where I need to validate if a user has entered in the same or partly the same information. Here is what I'm thinking The db layout rec_id (pk), user_id, name, phone, ...
2
votes
5answers
408 views

SQL Query takes about 10 - 20 minutes

I have a select from (nothing to complex) Select * from VIEW This view has about 6000 records and about 40 columns. It comes from a Lotus Notes SQL database. So my ODBC drive is the LotusNotesSQL ...
2
votes
2answers
464 views

How bad is opening and closing a SQL connection for several times? What is the exact effect?

For example, I need to fill lots of DataTables with SQLDataAdapter's Fill() method: DataAdapter1.Fill(DataTable1); DataAdapter2.Fill(DataTable2); DataAdapter3.Fill(DataTable3); ...
1
vote
1answer
45 views

SQL Server 2005 CTE performance lots of logical reads

I have a CTE query that seems to be causing an awful lot of logical reads (or perhaps it doesnt). I have run SQL Server Profiler traces, and this query seems to be causing consistently one of the ...
1
vote
3answers
63 views

Optimizing DISTINCT SQL query with OR conditions

I have the following SQL query: SELECT DISTINCT business_key FROM Memory WHERE concept <> 'case' OR attrib <> 'status' OR value <> 'closed' What I try to achieve is to get all ...
1
vote
1answer
31 views

Using User Defined Functions and performance?

I'm using stored procedure to fetch data and i needed to filter dynamically. For example if i dont want to fetch some data which's id is 5, 10 or 12 im sending it as string to procedure and im ...
1
vote
5answers
46 views

Making multiple round trips vs using a temp table?

I need to save a list of records with a few columns. I got two ways to do that. I can simply create a list of that element and execute the stored procedure multiple times from within the code ...
1
vote
3answers
82 views

Does SQL Server propagate WHERE conditions in complex views?

I've followed this question with a full example in case it isn't clear what I mean from the question. I've made a view which joins data from about five tables. The tables have vast amounts of data ...
1
vote
3answers
113 views

SQL Server 2000 Perforamance Question - Large Table

Have a large table that is fast approaching 11 million records. (20 columns in the table). My question is, is there a performance issue that I should be thinking about in terms of the Number of rows ...
1
vote
3answers
292 views

LINQ-to-Entities get rid of sp_executesql

I am trying to optimize my database now using Database Engine Tuning Advisor, and the problem I am facing is that my SQL Profiler trace shows tons of queries performed using sp_executesql - and the ...
1
vote
2answers
159 views

SQL running slow when i executes thru java

I am trying to execute a query in oracle db. When i try to run thru SQLTools the query is executing in 2 seconds and when i run the same query thru JAVA it is exectuting in more than a minute. I am ...
0
votes
2answers
34 views

SQL Performance - Union and Subselects

I have three tables which have a common field which is NOT its identifier. For example: dairy_warehouse -dairyId (primary key) -expiration_date -other dairy related fields ...
0
votes
0answers
19 views

In EF SQL queries, which is much faster, two 'using' blocks or one, or are they about the same in speed?

Which of the two below query methods, employing Entity Framework 4.0 to generate the SQL query, is significantly faster? The first uses two 'Using' blocks, while the second uses just one. Both ...
0
votes
2answers
66 views

SELECT a FROM T + Select b from T, or SELECT a,b FROM T? H2 Database

Which one is faster using the H2 database? SELECT a FROM T and after Select b from T or SELECT a,b FROM T
0
votes
5answers
110 views

SQL - how to efficiently select distinct records

I've got a very performance sensitive SQL Server DB. I need to make an efficient select on the following problem: I've got a simple table with 4 fields: ID [int, PK] UserID [int, FK] Active [bit] ...
0
votes
3answers
124 views

SELECT clause using IN … very slow?

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: ...
0
votes
1answer
61 views

Performance based on searching a integer or a long string (unqiue) in database?

I have a 5 column in database and two are unquie column (one is integer and another is a string). integer are like 1,5,6,7,9,0 and string are like http://xyz.com/Book-on-the-self-no-2 now which ...
0
votes
3answers
262 views

Get Day, Month, Year, Lifetime total records with one query w/ optimizations

I have a Postgres DB running 7.4 (Yeah we're in the midst of upgrading) I have four separate queries to get the Daily, Monthly, Yearly and Lifetime record counts SELECT COUNT(field) FROM database ...
0
votes
10answers
130 views

What aspects of a sql query are relatively costly to one another? Joins? Num of records? columns selected?

How costly would SELECT One, Two, Three be compared to SELECT One, Two, Three, ..... N-Column If you have a sql query that has two or three tables joined together and is retrieving 100 rows of data, ...
0
votes
3answers
103 views

Optimzing TSQL code

My job is the maintain one application which heavy use SQL server (MSSQL2005). Until now middle server stores TSQL codes in XML and send dynamic TSQL queries without using stored procs. As I am able ...
0
votes
1answer
747 views

sql execution plan nested loop

trying to remove the nested loop in the execution plan of a query i have (mssql 2005). have the following table: TxnID bigint CustID bigint col1 varchar(4) col2 varchar(4) col3 varchar(4) ...
0
votes
3answers
62 views

Recommended way of SQL 2005 DB setup

Just got a win 2003 (64-bit) server box with 6 x 320 GB disks and intending to install mssql 2005 (64-bit standard). Thinking of setting up the following: Disk 1 & 2 run Raid 1, split into C:\ ...
0
votes
3answers
1k views

Performance Impact of Empty file by migrating the data to other files in the same filegroup

We have a database currently sitting on 15000 RPM drives that is simply a logging database and we want to move it to 10000 RPM drives. While we can easily detach the database, move the files and ...
-1
votes
2answers
73 views

Check for data existence in multiple tables

To check for an Id existence in multiple tables (10 - 15 tables) what will be best option? In point of performance. Using Joins Using individual query for each table (called from DAO of Spring). ...