0
votes
1answer
14 views

View over several databases, how to improve speed ?

I have three databases, in each database are two tables, to make the interface for the users easier I have created a view over these 6 tables and added for the database and the table a column in the ...
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 ...
1
vote
0answers
33 views

COMMIT_TABLE wait type

We recently upgraded hardware and database versions (SQL Server 2008R2 Enterprise to 2012 Enterprise) in our production environment. We also make significant use of change tracking in order to merge ...
0
votes
2answers
407 views

Get last 10 execution time of a query in Sql Server 2012

With this query I'm getting the top 10 slow queries in Sql Server. SELECT TOP 20 SUBSTRING(qt.text, (qs.statement_start_offset/2)+1, ((CASE qs.statement_end_offset WHEN -1 THEN ...
2
votes
3answers
125 views

What is the most performant method for splitting strings?

Code create table ExampleTable ( Name varchar(500) CultureCode(5) ) insert into ExampleTable values('Dit is een test', 'nl-NL') insert into ExampleTable values('This is a test', 'en-GB') ...
0
votes
0answers
91 views

T-SQL: UPDATE perfomance in case if some column values are the same

Suppose I want to perform an UPDATE of the object stored as a row in SQL Server 2012, and some of the column values are different, but most of them are the same. Question is simple - will Sql Server ...
3
votes
4answers
659 views

Subquery v/s inner join in sql server

I have following queries First one using inner join SELECT item_ID,item_Code,item_Name FROM [Pharmacy].[tblitemHdr] I INNER JOIN EMR.tblFavourites F ON I.item_ID=F.itemID WHERE F.doctorID = ...
7
votes
5answers
441 views

Are there any benefits to using sql_variant over varchar in SQL Server?

I currently have a database table setup as follows (EAV - business reasons are valid): Id - int (PK) Key - unique, varchar(15) Value - varchar(1000) This allows me to add in mixed values into my ...
0
votes
2answers
336 views

Efficient bulk SQL database table update based on the datatable

I have over 1 million rows that I check for changes and then update. I completed my program that goes over each record and then updates the database. But this operation takes couple hours to complete ...
0
votes
2answers
114 views

Adding datalength condition makes query slow

I have a table mytable with some columns including the column datekey (which is a date and has an index), a column contents which is a varbinary(max), and a column stringhash which is a varchar(100). ...
0
votes
0answers
254 views

Very uneven CPU utilization with SQL Server 2012 on 2 processor computer with 16 cores / processor [closed]

After installing SQL Server Enterprise 2012 with the Server + Cal license model, on a computer with 2 processors each with 16 cores (and no hyperthreading involved) and putting the server under ...
0
votes
1answer
132 views

What is the fastest approach to populate MS SQL Database with large amount of data

Dilemma: I am about to perform population of data on MS SQL Server (2012 Dev Edition). Data is based on production data. Amount is around 4TB (around 250 million items). Purpose: To test ...
2
votes
1answer
353 views

SQL Server performance - schema vs multiple databases

This is purely from performance standpoint and only for SQL Server. I am using SQL Server 2012. I am migrating from a different database server (Ctree). The databases are from less than 100mbs to ...
1
vote
1answer
151 views

best practice: reportservers and sql servers

we have three SQL servers serving a variety of applications on different webservers. Each application is using reporting services functionality. The average load per server per month is about 40.000 ...
2
votes
1answer
1k views

Getting total row count from OFFSET / FETCH NEXT

So, I've got a function that returns a number of records that I want to implement paging for on my website. It was suggested to me that I use the Offset/Fetch Next in SQL Server 2012 to accomplish ...
3
votes
4answers
406 views

Querying minimum value in SQL Server is a lot longer than querying all the rows

I'm currently confronted with a strange behaviour in my database when I'm querying a minimum ID for a specific date in a table contains about a hundred million rows. The query is quite simple : ...
1
vote
1answer
459 views

SQL Server 2008/2012 Peer-to-Peer Replication - Configure Speed

I've setup a sample Peer-to-Peer replication test in SQL Server 2012, and I've bulk inserted 3 million rows in one of the nodes. Replication is working... but it seems to be throttled at 100 inserts ...
1
vote
0answers
182 views

SQL Server 2008 R2 mirror performance

We have a SQL Server 2008 R2 on production and failover server. Not setup as a cluster. There are about 30 databases consuming about 70GB disk space. Database files are growing at a steady rate, ...
-4
votes
2answers
3k views

Sql Server 2012 slower than 2005?

We have deployed SQL Server 2012 Enterprise and we have performance issues: same data (backuped from our SQL Server 2005 Enterprise and restored on 2012) test script of 3200 sql SELECT statements ...
2
votes
2answers
285 views

Optimising a SQL query which is taking a long time to execute

I have a simple database on which I want to do a simple query. These are the columns for my database table: external_id TimeStamp Value Validation Reason Datum Uur Afronden The columns are: ...