Viewing 15 posts - 106 through 120 (of 220 total)
The DB is in FULL recovery, the table gets hit at least 5-10 times a minute with writes and reads
October 17, 2013 at 2:25 am
Why not use SSIS to send the data across?
October 17, 2013 at 2:06 am
Perry Whittle (10/14/2013)
are the NICs teamed then?
Yes they are teamed, one can transfer only and the other can transfer and receive. Both seem to be running fine with no faults.
October 14, 2013 at 6:53 am
bugg (10/12/2013)
Perry Whittle (10/12/2013)
bugg (10/10/2013)
The servers are literally next to each other so its not a network issue.
Although they are next to each other, they presumbaly plug into a network...
October 14, 2013 at 3:17 am
Perry Whittle (10/12/2013)
bugg (10/10/2013)
The servers are literally next to each other so its not a network issue.
Although they are next to each other, they presumbaly plug into a network switch,...
October 12, 2013 at 10:57 am
ScottPletcher (9/16/2013)
September 17, 2013 at 1:28 am
batgirl (9/16/2013)
born2achieve (9/16/2013)
Well, Thanks for your response and useful query.Full credit to other poster (bugg) who really helped to solve it with the UNION ALL portion.
Thanks batgirl 😉
September 17, 2013 at 1:26 am
Awesome guys thanks the responses, just needed some confirmation that was the way to go , cheers
D
September 16, 2013 at 9:06 am
I think you'll have to change the name columns (name1, name 2 etc) in the SOURCE to rows
So your SOURCE would be
using (
SELECT t2.id,t2.name1 as name FROM table2
UNION ALL
SELECT...
September 16, 2013 at 8:46 am
bugg (8/2/2013)
Hi All,Is it possible to install SQL Server 2008 (not r2) on Windows Server 2012?
Any pitfalls I need know about, service pack requirements?
Thanks
D
No worries, found this article http://blogs.msdn.com/b/psssql/archive/2012/09/01/installing-sql-server-on-windows-8.aspx 🙂
August 2, 2013 at 4:35 am
Matthew Darwin (7/22/2013)
Can you post your DDL also?
I found the issue the join in the TARGET on sku and giftsku was slowing it down.
I changed the joining column and it...
July 22, 2013 at 4:49 am
vultar (7/19/2013)
I guessing the population of the cache is taking the additional 8 seconds, especially if the query usually runs...
July 22, 2013 at 1:29 am
Below is my code, is there anyway i can keep the MERGE but improve the delete performance? Is there a better alternative approach to doing a MERGE?
BEGIN TRY
BEGIN TRANSACTION
;WITH...
July 22, 2013 at 1:25 am
Hi Guys, I will post my code on Monday. After reading that very informative post i do think I may have to go with a separate delete option.:unsure:
July 20, 2013 at 3:01 am
Mark-101232 (7/19/2013)
Paul White posted an interesting item about MERGE here
Thanks for that link having a good read
July 19, 2013 at 9:13 am
Viewing 15 posts - 106 through 120 (of 220 total)