1
vote
1answer
38 views

Why <columnname> IS NULL take so long time?

I have a test statement to check the validation of my data like this: SELECT id, owner_id FROM table WHERE ISNULL(owner_id,0)=0 OR (owner_id NOT IN(SELECT lid FROM actors) AND owner_id <> ...
0
votes
3answers
95 views

SQL Query is taking too long to execute [closed]

Hi All below is my query written for SQL 2008. It takes more than 2 hours to insert 500000 records. Could any one suggest a way to improve performance? INSERT INTO tblUserFile SELECT CASE ...
0
votes
1answer
54 views

SQL Server query optimization date calculations

I am trying to find a more efficient way of re-writing my query. Any suggestions? I am currently also thinking of displaying the fiscal month name as a number itself, then to compare and return month ...
0
votes
1answer
42 views

Sql Server and performance of conditional left outer joins

I have a table that can link out to several other tables depending on certain conditions. Please consider the following SQL: DECLARE @someFlag nvarchar(1) = 'B' select COUNT(SL_A.ID) + ...
0
votes
0answers
48 views

SQL Server differential duration of multiple inserts

I'm running web application and importing huge amount of data to the sql server database every day. Unfortunately I've experienced server fault (hard drive broke down) and I had to reinstall SQL ...
0
votes
2answers
36 views

Logical reads giving 3 when data cache is clear in sql server?

dbcc FREEPROCCACHE dbcc DROPCLEANBUFFERS set STATISTICS IO ON--Case 1 SELECT * from Production.Suppliers s --(30 row(s) affected) --Table 'Suppliers'. Scan count 1, logical reads 3, physical reads ...
0
votes
3answers
150 views

How Can I Make My Powershell Get-WMIObject Script Faster Cycling Through Servers

I am working on a script which checks a server for ping and then checks all SQL Server Services status and stores this in a table. It also caters for SQL Instances. However I have to check across 70 ...
0
votes
1answer
42 views

PIVOT for two fields of different data types

I have a narrow table of entity IDs and Attribute identifiers. For each row there is either a numeric value or a string. I want to pivot out the data, but this is difficult with value fields of ...
4
votes
2answers
77 views

select coun(1) vs select rowcnt from sysindexes performance and use?

I read on NET that using case 2 is more fast than case 1 to check no of rows in a table. so i did a performance test of both count(1) vs rowcnt from sys.sysindexes I found 2nd one is far better. I've ...
1
vote
2answers
54 views

Is it possible to set up a sql view so that any joins are only performed when required?

I'm having some trouble with view performance. Specifically some expensive joins being performed when they are not required to be. I've managed to reduce the problem to the simplest case, and have ...
2
votes
0answers
46 views

Datatable Archival SQL Server 2008 [closed]

I have a database that is 54 GB in size, some of the tables have loads of rows in them. Now querying these tables eats up performance and it takes ages for queries to execute. Have created indexes ...
0
votes
1answer
56 views

Performance in SQL Server

I have a problem in a Program that runs queries on a mssql 2008 database. I did some research in the query analyzer. There is a strange issue with the following two queries: SELECT BOLD_ID , ...
0
votes
0answers
71 views

Altered One Stored Procedure, Another One Loses Performance?

This isn't a terribly technical question as I am just looking for theories onto why something like this would happen. In our application, we have a few different stored procedures that read mostly ...
3
votes
2answers
81 views

using correlated subquery or join instead of derived table

Please consider this scenario: I have a table like this: CityCode CityName Col_6 Col_9 Col_10 ---------------------------------------------------------------------- 001 ...
1
vote
2answers
69 views

Index does Not affect query performance in indexed views

I want to examine query performance on indexed views. I create a view based on Product table in Northwind database with all columns.After create view I add a clustered index on the view (Because I ...
2
votes
2answers
51 views

Find a better query and LINQ for improvement

From the following SQL Server 2008 R2 query I am trying to find: customers and his or her orders who has placed certain products in the order details table. This product must be matched from a ...
12
votes
1answer
181 views

Slow query caused by parameter variables, but why?

I have 3 versions of a query that ultimately returns the same results. One of them gets dramatically slower when adding an extra inner join to a relatively small table AND where parameter variables ...
1
vote
3answers
112 views

Custom sorting and pagination over large tables

I'm used to get benefits from ROW_NUMBER function in MS SQL Server scripts since 2005 version. But I noticed there is big performance disadvantage querying big tables using this function. Imagine ...
5
votes
5answers
168 views

How to self-join table in a way that every record is joined with the “previous” record?

I have a MS SQL table that contains stock data with the following columns: Id, Symbol, Date, Open, High, Low, Close. I would like to self-join the table, so I can get a day-to-day % change for Close. ...
1
vote
1answer
101 views

How to optimize SELECT MaxDate

I have a query to select some data from tableA matching some rows in tableB. Even though it works it's really slow, it takes about 20 min to return a few hundred rows. Here is the query, hope you have ...
1
vote
1answer
73 views

SaveChanges takes anywhere from 40 to 60 seconds to save ~8000 context changes

Setup: Entity Framework 4 with lazy loading enabled (model-first, table-per-hierarchy). Number of table is about 40 (and no table has more than 15-20 fields). SQL Server Express 2008 (not r2). No ...
0
votes
0answers
61 views

Best way to process pivot query results in MSSQL? Using CTE?

Microsoft SQL Server 2008 R2+ I need to process the results of the PIVOT query. It is a simple, mundane CASE .. WHEN. Is the most effective way to put the "logic" in outer CTE? (There is the one ...
3
votes
2answers
145 views

The Same SQL Query takes longer to run in one DB than another DB under the same server

I have a SQL database server and 2 databases under it with the same structure and data. I run the same sql query in the 2 databases, one of them takes longer while the other completes in less than 50% ...
0
votes
1answer
50 views

Unused indexing's effect over performance

In my website, I don't create users. Users are/were created in a different system, that I have no access to. There they used a Userid = VARCHAR(50) On my side, I keep a very simple table, something ...
0
votes
2answers
262 views

Sql Server 2008: Alternative for inefficient subquery in select clause

I have a table: SourceID, TargetID, Amount, Year. I also have a view. This view is looking at differences between a row and the row above it in the same table. I use CTE to do this: WITH cte as ...
10
votes
5answers
166 views

Full-text indexing sluggish. Looking for alternatives

I have a table that I've created a Full Text Catalog on. The table has just over 6000 rows. I've added two columns to the index. The first could be considered a unique identifier of sorts and the ...
0
votes
3answers
63 views

ADDING WHERE Condition in JOIN [duplicate]

I have the following queries to filter the Active Shops in the given city and banner SELECT ShopName,CityName FROM Shop S INNER JOIN City C ON C.CityId=S.CityId WHERE S.Active=1 AND S.Banner like ...
1
vote
3answers
68 views

Bind parameters Vs Inline Values for Estimation Plan

I would like to know using Bind Parameters on SQL Query for constructing Execution Plan. In many scenarios the developer write a dynamic SQL query and place the appropriate values in the Query. ...
3
votes
2answers
94 views

Will adding a NONCLUSTERED INDEX as suggested by DTA improve performance?

I have the following tables defined in the database Shop Table ShopId ShopName Owner Banner Header CityId ShopImageId Active City Table CityId CityName CountryId RegionId Country Table ...
0
votes
0answers
185 views

Slow performance in SQL Server 2008

The project I've been working is consist of a service project using WebApi, and few client projects in different platform (Desktop and Mobile). The service project serves all the request by validating ...
1
vote
2answers
93 views

Fastest way to SELECT a row from a table in a database (Microsoft SQL server)

I have a huge table with one int PRIMARY KEY IDENTITY column. I guess making the SELECT query using that primary key is the fastest way for the database to find the row in the table isn't it? If ...
0
votes
1answer
41 views

Process large amounts of XML how to not lock the database and best performance?

I have a database procedure which processes some XML and normalizes it into multiple tables. I'm not a huge database guy and don't know the most about database locks, so I'm mostly just wondering if ...
-1
votes
2answers
47 views

Pick particular primary keys from a database table

I am working with a SQL Server database. I have a table products with around 50,000 rows. The columns in the products table are id (primary, auto increment), title, price etc. I have a second ...
0
votes
1answer
66 views

Does WITH statement execute once per query or once per row?

My understanding of the WITH statement (CTE) is that it executes once per query. With a query like this: WITH Query1 AS ( ... ) SELECT * FROM SomeTable t1 LEFT JOIN Query1 t2 ON ... If this ...
0
votes
1answer
71 views

Overall Performance improvement in WCF Restful API

We delivered a successful project a few days back and now we need to make some performance improvements in our WCF Restful API. The projects is using the following tools/technologies 1- LINQ ...
2
votes
1answer
90 views

Query that uses Clustered Index Scan instead of seek

I have the following query that returns < 300 results. It is currently taking about 4 seconds to complete, and when I look at the execution plan, it shows that it is spending 41% of resources on a ...
0
votes
1answer
70 views

Improve t-sql views

I am writing a query that basically pulls multiple columns from multiple views. Is it better to index each views for faster performance? query i.e. A to G are views SELECT A.C1, B.C1 FROM A INNER ...
0
votes
3answers
88 views

Performance considration between Cursor with 30000 record or create 30000 update statement

Which is better? 1)A cursor that loop 30000 record and perform update one by one 2)Create a script that has 30000 update command thanks
0
votes
0answers
21 views

SSMS - Performance of Creating an Index on a Distant Remote Server

We have a SQL Server 2008 database on a server 10K miles away in Asia. When I add an index to a table, from my local desktop machine in the United States, the operation takes much longer than it does ...
0
votes
0answers
49 views

How to be as fair as possible to conduct SQL query performance test?

I am using SQL server 2008 R2 and am trying to test the performance of some SQL queries with different writing style. These involve udfs, views, inline, join, pivot, etc. After quite a bit of ...
2
votes
3answers
86 views

Why is there a sort showing up in my execution plan?

I have the sql query below that is running very slowly. I took a look at the execution plan and it is claiming that a sort on Files.OrderId is the highest cost operation (53%). Why would this be ...
1
vote
1answer
406 views

SQL Server - creating nonclustered Index on specific partitions

One of the biggest benefits of table partitioning is that, "it is possible to rebuild an index on specific partition". Imagine there is a partitioned table (has 12 partitions for now), which has ...
0
votes
1answer
15 views

Approach to speedup DB-centric app [closed]

We have an application where in I have 65 GB of Data in MSSQL Server. with around 250 tables and 1000 stored procedures and functions. Now the application is complete DB specific with almost all ...
4
votes
2answers
83 views

How do you get summarized statistics on a whole set of queries in SQL Server 2008

I'm trying to tune a few mechanics for operations I make on a database in SQL Server 2008. In order to pick the best approach of the problem I often use SET STATISTICS IO ON, but it's not really ...
2
votes
1answer
69 views

SQL query optimization for multiple column comparison

I have written a SQL query in following two ways, as the underlying data is huge so both the queries are taking lot of time to fetch the data. Approach 1: SELECT A.Col1, B.Col2 FROM TableA A ...
0
votes
3answers
151 views

Getting RID Lookup instead of Table Scan?

SQL Fiddle: http://sqlfiddle.com/#!3/23cf8 In this query, when I have an In clause on an Id, and then also select other columns, the In is evaluated first, and then the Details column and other ...
0
votes
1answer
135 views

Should the results of a performance test using MongoDB, a text file and SQL server show as follows? (Text file is quicker)

I have a complete dictionary of some 236000 words. I inserted all words from the text file into and SQL server DB and a MongoDb ensuring an index on both DB's on the the word field. I loop through ...
1
vote
1answer
111 views

SQL Server 2008 Index Multiple Columns Some not used all the time

I have a table with columns ParameterValueId, SiteId, LocationId, ParameterId, SampleDateTime and a few other columns. ParameterValueId is the primary key. I want to create an index that is not ...
0
votes
1answer
41 views

Performance impact of calling a SProc from another SProc in SQL Server

Does calling one stored procedure from within another stored procedure impact performance at all? I have been unable to find any answers regarding this. If it does negatively impact performance, I ...
3
votes
1answer
417 views

SQL Server 2008 Spatial Query. How to group polygons if they intersect each other?

In my table there is a geometry field that stores polygons. The polygons that intersects each other must be attached to and form a single polygon (see below) The results can not be calculated but ...

1 2 3 4 5 7