Viewing 15 posts - 76 through 90 (of 560 total)
TheSQLGuru (5/1/2015)
sql-lover (5/1/2015)
TheSQLGuru (5/1/2015)
May 3, 2015 at 9:08 am
I've started to think that is because MyTable is a "hot spot". Hundreds of clients hitting the same table, to get a different set and return that back to Server2,...
May 1, 2015 at 1:49 pm
Lynn Pettis (5/1/2015)
sql-lover (5/1/2015)
Lynn Pettis (5/1/2015)
INSERT INTO #t
SELECT DOB, col2, col3 FROM OPENQUERY([Server1],'
SELECT top 1 @DOB, col2, col3
FROM MyDatabase.dbo.MyTable
WHERE col4 = @ZipCode
AND col1 = @DOB
ORDER...
May 1, 2015 at 1:38 pm
TheSQLGuru (5/1/2015)
May 1, 2015 at 1:36 pm
Lynn Pettis (5/1/2015)
INSERT INTO #t
SELECT DOB, col2, col3 FROM OPENQUERY([Server1],'
SELECT top 1 @DOB, col2, col3
FROM MyDatabase.dbo.MyTable
WHERE col4 = @ZipCode
AND col1 = @DOB
ORDER BY MetricDate DESC')dt(DOB,...
May 1, 2015 at 1:22 pm
Jack Corbett (5/1/2015)
May 1, 2015 at 1:08 pm
I used DBMirroring (SQL2005 and SQL2008), and it works nice! Migrated 500+ GB databases that way in seconds (assuming you have decent network and both are in the same LAN)
You...
April 20, 2015 at 12:03 pm
Old post, but I will answer myself.
It was Index Tuning Wizard , indeed! But so many years ago that people did not remember or did not ring a bell...
April 20, 2015 at 12:00 pm
Just curious. Is your system fully patched? MSSQL and Windows? ...
April 17, 2015 at 8:30 am
nick.latocha (4/17/2015)
Ideally we are looking to...
April 17, 2015 at 8:28 am
spaghettidba (4/17/2015)
XP is out of support and a bag of security holes. It's a 14 years old OS. Get out of there as soon as you can.
+1
April 17, 2015 at 8:23 am
Jeff Moden (4/16/2015)
sql-lover (4/16/2015)
Zeal-DBA (4/14/2015)
April 16, 2015 at 8:49 pm
Zeal-DBA (4/14/2015)
my update query updating approx 50 million record which is causing transaction log to grow, and filling disk space and finally transaction is failing, please suggestany worl around.
My standard...
April 16, 2015 at 2:49 pm
marc.heidemann (4/16/2015)
April 16, 2015 at 1:01 pm
jackimo (4/16/2015)
All along I've never considered that the statistics would be out of date, because we have a job that updates stats that runs daily. ...
April 16, 2015 at 12:50 pm
Viewing 15 posts - 76 through 90 (of 560 total)