Viewing 15 posts - 3,106 through 3,120 (of 7,168 total)
mhall2007 (9/21/2012)
This is a vendor application so adding indexes or modifing queries is out of the question.
What does that have to do with identifying the problem?
It's possible it is related...
September 21, 2012 at 1:03 pm
Check that the two users that get their tables created in dbo are not somehow in the sysadmin Fixed Server Role, either explicitly by a named login (but you said...
September 21, 2012 at 1:02 pm
Specifically re: Replication
Replicating up-version and down-version are officially supported but there are limitations usually related to the lowest version in the topology:
September 21, 2012 at 12:58 pm
It could be one of countless things. I would start by checking the most expensive queries by CPU.
edit:
The whole story:
http://www.simple-talk.com/sql/performance/finding-the-causes-of-poor-performance-in-sql-server,-part-1/%5B/url%5D
http://www.simple-talk.com/sql/performance/finding-the-causes-of-poor-performance-in-sql-server,-part-2/%5B/url%5D
September 21, 2012 at 12:41 pm
Links?
Personally I would go with Logins based on Windows (Active Directory, AD) Groups in some cases and Logins based on individual Windows Accounts in others. It really will depend on...
September 21, 2012 at 12:02 pm
From SQL you can use this to find the total amount of memory SQL Server is using:
SELECT cntr_value / 1024.0 AS TotalServerMemoryMB
FROM sys.dm_os_performance_counters
WHERE counter_name = 'Total Server...
September 21, 2012 at 11:48 am
Sometimes the error messages can be red herrings, but other times they say exactly what needs to be done. Have you tried doing what the error message suggested?
September 21, 2012 at 10:54 am
Magical Horn (8/28/2012)
I'm just about trearing my hair out with a Connection problem when I'm writing to an Excel Binary Workfile. This is the situation:
I have two Excel 2010...
September 21, 2012 at 10:52 am
Multi-tenant databases that employ the 'single-database, schema-per-tenant' model is one case where leaving the schema out of a query is appropriate. Other than that I have to agree on all...
September 21, 2012 at 10:35 am
This will help you with blank sa passwords and can easily be extended to check all logins for a blank password.
September 21, 2012 at 10:24 am
What two documents?
September 21, 2012 at 10:18 am
Jeff Moden (9/21/2012)
opc.three (9/21/2012)
Jeff Moden (9/21/2012)
opc.three (9/20/2012)
Jeff Moden (9/20/2012)
opc.three (9/20/2012)
September 21, 2012 at 10:11 am
I think you would need to watch for anything that can change the enabled flag in msdb.dbo.sysschedules as well as anything that can add new rows to msdb.dbo.sysjobschedules.
I think this...
September 21, 2012 at 10:08 am
Matt Miller (#4) (9/21/2012)
opc.three (9/21/2012)
tim_harkin (9/21/2012)
opc.three (9/19/2012)
Jeff Moden (9/18/2012)
...truncated for brevity...
I'd also add in that the markup isn't purely for presentation purposes. XML comes with a lot of tooling...
September 21, 2012 at 9:14 am
You can transfer logins and maintain the SID and password hash directly from 2005 to 2012 using the methods in this article:
September 21, 2012 at 8:07 am
Viewing 15 posts - 3,106 through 3,120 (of 7,168 total)