Top "Sqlperformance" questions

This tag pertains to performance issues with Structured Query Language (SQL): performance bottlenecks faced when managing data in relational database management systems.

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 …

sql mysql database performance sqlperformance
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 …

sql-server stored-procedures temp-tables sqlperformance
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 …

sql oracle sqlperformance
How to Bulk Update with SQL Server?

I have a table with 10 millions rows that I need to join with another table and update all data. This …

sql sql-server sql-update sqlperformance
How to split a single row into multiple rows in SQL

I have a table which looks as follows..it has multiple columns for different latencies Date API Latency1_Avg Latency1_…

sql sql-server sql-server-2012 sql-function sqlperformance
Performance issue in update query

I have one small doubt in query performance. Basically, I have a table with more than 1C records. sl_id …

sql postgresql sqlperformance
Should every User Table have a Clustered Index?

Recently I found a couple of tables in a Database with no Clustered Indexes defined. But there are non-clustered indexes …

sql-server sql-server-2008 indexing sql-server-2008-r2 sqlperformance
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 …

sql oracle sqlperformance sql-tuning
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 …

sql sqlperformance