8
votes
7answers
183 views

Very slow DELETE query

I have problems with SQL performance. For sudden reason the following queries are very slow: I have two lists which contains Id's of a certain table. I need to delete all records from the first list ...
0
votes
2answers
22 views

Sum Filtered Value

I have these rows: value1 | value2 | value3 ------------------------- 1231234|23423423|B 2342345|12309123|X 3242344|53453453|X 3453454|45345344|I 2531534|53434534|X 6657555|42342234|I ...
5
votes
2answers
120 views

Adding a filter in WHERE versus FROM

So I know it is a good programming practice to add the filter conditions in the WHERE clause of a query so as to minimize the number of rows that are returned in the joins but when how do we decide if ...
2
votes
2answers
50 views

Nested view performace

I have this SQL-query: SELECT Start, ISNULL((SELECT Orders FROM [pp].dbo.VW_BEZETTING_RAW b2 WHERE b2.Start=b1.Start AND Afdeling = 'WP'),0) AS Werkplaats_ord, ISNULL((SELECT Tijd FROM ...
0
votes
3answers
98 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
0answers
49 views

Does an index aid in leading wildcard searches?

I have a table, users, with the following columns: ID int, pk, clustered index Address nvarchar(50), Date_Of_Birth date Name nvarchar(200) Name contains values like ...
2
votes
1answer
48 views

Maximizing SQL Server Service Broker Throughput

We've implemented an SSB messaging solution for our application, but are running into scaling issues now. Can anyone with experience in the scaleup of SSB applications offer any suggestions as to ...
-2
votes
4answers
61 views

How to improve query performance? [closed]

I have a query here to update a table with the inventory type of each rep's latest inventory. However, the only way I got it to work was by using a cursor, which is really affecting performance. Below ...
2
votes
2answers
61 views

Why does SQL Server perform a clustered scan when IN clause has a subquery?

If I search for users like so: SELECT * FROM userprofile WHERE userid IN (1, 2, 3) The execution plan shows that UserProfile is using a Clustered Index Seek If I change the IN clause to use a ...
1
vote
3answers
57 views

Very slow SQL query

I'm having a problem with a slow query. Consider the table tblVotes - and it has two columns - VoterGuid, CandidateGuid. It holds votes cast by voters to any number of candidates. There are over 3 ...
0
votes
0answers
66 views

Performance in an SSIS package with asynchronous component

Hi everyone as I already posted here : I face some problems excuting my SSIS packages, actually they take huge time. Due to a lot of constraints I'm trying to resolve one to one ! I start with the ...
0
votes
1answer
53 views

Quicker way of finding duplicates in SQL Server

I'm trying to find a better way of finding duplicates in SQL Server. This took over 20 minutes to run with just over 300 million records before results started showing in the results window within ...
0
votes
0answers
56 views

SQL server - estimate execution time and get progress of alter table command

I have a very big table and from time to time I need to change its schema, add new columns, or change type of existing column for example. This takes a lot of time (hours), and I wonder if there's ...
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) + ...
1
vote
0answers
50 views

How to speed up creating clustered index on large table on SQL Server 2008 R2? [migrated]

I have a large SQL Server table, the row count of the table is more than 3 billion, the data space for this table is about 120G. And Intel Xeon CPU E5645 @2.4GHz(2 processors), 24 CPUs, 64G memory, ...
0
votes
1answer
47 views

How do I optimize this query

Create table #tmptble(RuleId, SubjectId, RID, Date) Insert into #tmptble(RuleId,SubjectId, RID, Date) Select RuleTable.RuleId, RuleTable.SubjectId, KeyTable.RID, KeyTable.ParentId FROM RuleTable ...
0
votes
0answers
25 views

How to balance query optimization and data manipulation performance?

I have a report/issue management application that has an interactive dashboard that allow users to drill from bar, line and area charts to a summary page(data grid). The summary page aggregates the ...
1
vote
2answers
74 views

Profiling and output caching in ASP.NET MVC

So I was recently hired by a big department of a Fortune 50 company, straight out of college. I'll be supporting a brand new ASP.NET MVC app - over a million lines of code written by contractors over ...
2
votes
2answers
182 views

CROSS APPLY with table valued function restriction performance

I have problem with CROSS APPLY with parametrised table valued function. Here is simplified pseudo code example: SELECT * FROM ( SELECT lor.* FROM LOT_OF_ROWS_TABLE lor WHERE ... ) AS ...
0
votes
0answers
50 views

Smallest REST middleware that communicates with SQL Server?

What's the smallest REST middleware that communicates with SQL Server? [version: '08 R2] Basically I want to expose tables, views and procedures in a RESTful manner; in JSON format for access via the ...
0
votes
2answers
38 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
160 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 ...
-1
votes
2answers
60 views

Slow SQL query with SQL Server

I have two SQL queries to count co-occurrences between id2 values among different id1 values. The sample table looks like id1 | id2 101 | 1 101 | 2 101 | 3 102 | 2 102 | 3 102 | 4 103 | 15 103 | 3 ...
4
votes
1answer
125 views

Entity Framework is executing too many queries

I need to find distinct Campaigns of a particular user. A User has CodeRights, CodeRights contain Codes and Codes contain Campaign. Here is the CodeRight class public class SmartCodeRight { ...
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 ...
0
votes
0answers
87 views

How to enhance the SQL query performance for thousands and millions of huge data [migrated]

Now Our team are involved in a forum data analysis project. Its target data is so huge(I think). We should find the potential informations from it. Such as the popular products,the customers ...
3
votes
4answers
91 views

What's the best way to get intersected data from one table?

Suppose I have the below table CREATE TABLE [dbo].[TestData]( [ID] [bigint] NOT NULL, [InstanceID] [int] NOT NULL, [Field] [int] NULL, [UserID] [bigint] NOT NULL ) ON [PRIMARY] GO ...
0
votes
0answers
21 views

Improving performance of metrics pages

I am working on an application that will provide users the ability to run queries against a database. The application will report metrics in chart and table form. The way I am constructing the page ...
1
vote
1answer
39 views

read MSSQL tables in disk order

How to take advantage of Disk IO queueing I need to do exactly this but on Microsoft SQL server tables. I have a database with +100 tables.I need to read every record of every table. Any suggestions? ...
0
votes
1answer
67 views

MAXDOP and Interesting Performance Experiences

I would like some advice on the following topic. With one of our products from our company we "connect" to an existing database on the customer's side and import orders into our own SQL Server to let ...
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
83 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
71 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 ...
1
vote
4answers
65 views

Subquery in view runs slow

Hello i have an issue with my view. The Subquery causes the view to run very slowly. SELECT dbo.Calls.CallID ,dbo.Calls.StartTime ,dbo.Calls.EndTime ,dbo.Connections.Connectionname ...
0
votes
2answers
86 views

Best Practice SQL Server/Access connections

At the risk of starting an ODBC/OLEDB arguement, does anyone have any best practice suggestions for linking an Access Front End to a SQL Server Backend? I have read the articles about .ADP vs .MDB ...
0
votes
1answer
88 views

Improving specific SQL Server Query Performance

I have the following query which is being executed in SQL Server 2008 R2 several times a day on multiple client databases. UPDATE Propane.RecordKey With (TabLock) SET LookupKey = ...
0
votes
4answers
71 views

Performance impact of long running stored procedure

I have a requirement to call a stored procedure which can take up to 15 minutes for each call on SQL Server 2008 database. Will it cause performance impact on other systems accessing the same ...
1
vote
4answers
126 views

How Can I speed up my SQL Query

I'm currently running this query: SELECT Time_ID, Site_Type_ID, Abandoned_ID, WorkType_ID, SUM (staging.dbo.incoming_measure.ring_time) AS Ring_Time, SUM ...
0
votes
1answer
45 views

Adding filters to increase SQL performance

Just a basic question... Do adding more filters increase performance of a table scan? For example if I have a table with columns with a lot of NULL values but I'm looking only for values > 35. Is ...
1
vote
1answer
97 views

Calculate COUNT in GROUP BY SQL query

I have query to calculate total amount by one product item below: SELECT p.[Id], COUNT(o.[Id]), SUM(o.[Amount]) FROM [dbo].[Order] o INNER JOIN [dbo].[Product] p ON p.[Id] = o.[ProductId] GROUP ...
0
votes
2answers
82 views

what's wrong with my sql script? (sql server)

my table serialNumber, Org I want transfer serialNumber (123456100) from ORG A to ORG B and mark it as transfered transferedStatus = 0 (in stock) transferedStatus = ...
2
votes
3answers
73 views

How to use a variable within my SELECT (T-SQL)

I've written a crazy INSERT/SELECT statement that works pretty well, except that I think it can be tuned a wee bit more if I can avoid using the LEN([stats].[dbo].[Domain].[DomainName]) twice. Right ...
0
votes
1answer
163 views

Entity Framework performance after SqlBulkCopy

I need some performance for doing some of my things. I'm trying to import excel data to my SQL Server database here is my code for doing that work but it really takes too much time for that. Could you ...
0
votes
3answers
111 views

Measure performance of ASP.NET SQL session state provider

We have a very large three-tier .NET 4.0 web application (ASP.NET, WCF, SQL Server 2008 R2) with some performance issues I'm trying to diagnose. The ASP.NET tier uses the SQL session state provider, ...
1
vote
2answers
272 views

SQL Union All is too slow

I am rewriting an old legacy system. It has a function called checkExisting(). The old system was using queries for extracting objects from the MSSQL database like this (with ADO DB): SELECT ...
5
votes
5answers
169 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
103 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 ...
2
votes
4answers
135 views

Sql server performance issue with aggregate function

I have a stored procedure that make a select statement ( 5000 record). inside the select statement I make a call to table-valued function. the table-valued function perform some aggregation ...
1
vote
1answer
79 views

How is SQL query processed in this example?

Purpose of this question is to find out how the inner join is used to filter out the result. I have 2 tables, related by one column. Table Names contains about 100,000+ records. Table: Names ...
3
votes
2answers
146 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% ...

1 2 3 4 5 25