Viewing 15 posts - 2,101 through 2,115 (of 2,356 total)
Qualify what the problem may be is the first step.
Did it just start? Is it some users, or all users? Is it some queries, or all queries? Is it...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
March 4, 2015 at 10:29 am
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...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
March 4, 2015 at 7:03 am
Start here:
http://www.sqlservercentral.com/articles/T-SQL/63681/
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
March 3, 2015 at 1:20 pm
You need to remove the semi-colon
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
March 3, 2015 at 12:57 pm
Add this to the bottom:
WHERE [A]++[C]+[D]+[F]+[W]+[IB]+[IC]+[ID]+[IF]+[P]+[NP] > 4
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
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...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
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...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
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 more, Google this.
The thing...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
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...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
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...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
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...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
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:
http://www.red-gate.com/community/books/
Otherwise,...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
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...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
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.
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
February 27, 2015 at 10:07 am
pietlinden (2/26/2015)
use update query to remove...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
February 26, 2015 at 9:17 pm
Viewing 15 posts - 2,101 through 2,115 (of 2,356 total)