Viewing 15 posts - 2,086 through 2,100 (of 2,339 total)
If the databases are on the same server then the wizard will copy the structure and the data. Even on different servers you can use linked servers with the...
March 4, 2015 at 7:03 am
March 3, 2015 at 1:20 pm
Add this to the bottom:
WHERE [A]++[C]+[D]+[F]+[W]+[IB]+[IC]+[ID]+[IF]+[P]+[NP] > 4
March 3, 2015 at 12:24 pm
What fields are you using to determine that there is a duplicate?
The query is using Claims.*. Are all of these fields needed?
Could another field, like a datetime, be causing the...
March 3, 2015 at 8:32 am
Well, looking on MS's support site, and a few other sites, this is typically caused by a linked server, or, MSDTC.
Run this:
SELECT @@SERVERNAME
And this
SELECT * FROM sysservers
Does the result from...
March 2, 2015 at 3:46 pm
There are a number of references to this error, all related to the use if linked servers and how SQL Server handles loopback calls.
There are...
March 2, 2015 at 2:19 pm
Of course, assuming you have a LinkedServer already in place.
You do not need to have a linked server to use the import / export wizard.
And, for a larger table, I...
March 1, 2015 at 6:53 am
Can't imagine how on earth every insert could cause a page split with any thought in advance given to setting the proper fillfactor. How bizarre. But it would...
February 27, 2015 at 7:05 pm
They are PK indexes, so they are clustered.
A primary key does not have to be a clustered index.
A clustered index does not have to be the primary key.
When you...
February 27, 2015 at 6:42 pm
Katerine459 (2/27/2015)
(Edit to add: How do you post an execution plan from SSMS?)
See
Grant Fritchey
The Scary DBA
Author of:
SQL Server Query Performance Tuning
and
SQL Server Execution Plans
These are available here:
February 27, 2015 at 2:05 pm
Great post, BTW.
For starters, there is no magic bullet. You kinda sorta found something that alleviated the symptoms, but it did not fix the problem.
As a starting point, take a...
February 27, 2015 at 12:08 pm
Carlo Romagnano (2/27/2015)
Now, I want to try!😀
I did the last time this question was asked.
I can;t remember the error that was thrown when it hit 32768.
February 27, 2015 at 10:07 am
pietlinden (2/26/2015)
use update query to remove...
February 26, 2015 at 9:17 pm
Sean Lange (2/16/2015)
TomThomson (2/16/2015)
Sean Lange (2/16/2015)
Correct answers: 57% (166)
Incorrect answers: 43% (123)
Total attempts: 289
I am really surprised that so...
February 16, 2015 at 12:28 pm
Viewing 15 posts - 2,086 through 2,100 (of 2,339 total)