Viewing 15 posts - 3,106 through 3,120 (of 7,164 total)
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:
Using Multiple Versions of SQL Server in a Replication...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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?
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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.
Using PowerShell to Audit for Blank SA Passwords By K....
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
September 21, 2012 at 10:24 am
What two documents?
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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)
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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:
http://support.microsoft.com/kb/918992
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
September 21, 2012 at 8:07 am
tim_harkin (9/21/2012)
opc.three (9/19/2012)
Jeff Moden (9/18/2012)
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
September 21, 2012 at 7:03 am
Jeff Moden (9/21/2012)
opc.three (9/20/2012)
Jeff Moden (9/20/2012)
opc.three (9/20/2012)
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
September 21, 2012 at 7:00 am
Viewing 15 posts - 3,106 through 3,120 (of 7,164 total)