Viewing 15 posts - 91 through 105 (of 355 total)
Check this out: https://support.microsoft.com/en-us/kb/811889
March 11, 2016 at 2:07 pm
Might be something in here for you: http://toddmcdermid.blogspot.com/2009/10/quick-reference-ssis-in-32-and-64-bits.html
March 11, 2016 at 2:01 pm
I always do it like this:
DECLARE @command VARCHAR(1600)
SELECT @command = 'Use [' + '?' + ']
SELECT file_id,
name...
FROM sys.database_files'
EXEC sp_MSForEachDB @command
March 11, 2016 at 1:43 pm
...I am trying to shrink all the data files down to 80%...
Warning. Incoming thrashing. Prepare for impact!
March 11, 2016 at 1:27 pm
Throw this in there to help you troubleshoot:
SELECT SUSER_NAME(), USER_NAME();
March 11, 2016 at 1:20 pm
Might be worth a look:
SQL Server Multi-Subnet Clustering
...and then setup a couple high availability replicas.
March 11, 2016 at 1:16 pm
Love this quote:
Scale Up
- Servers are like pets
- You name them, and when they get sick, you nurse them back to health
Scale Out
- Servers are like cattle
- You number them,...
March 11, 2016 at 12:41 pm
Are you building the new "Standalone SQL Server" and migrating to it?
How much data do you have to move and what is an acceptable amount of downtime?
March 11, 2016 at 12:37 pm
You can some read/write info from sys.dm_exec_query_stats
There's also dm_io_virtual_file_stats (replaces the fn_virtualfilestats)
March 11, 2016 at 12:33 pm
TX Replication can be a pain. It's not the best solution, but I know a lot of people move to Availability Groups so they can get readable secondaries without...
March 11, 2016 at 11:08 am
Jim_K (3/10/2016)
March 11, 2016 at 11:04 am
1200 read IOPS isn't much.
Here's what my new build looks like:
-----------------------------------------------------------------------
CrystalDiskMark 3.0.4 x64 (C) 2007-2015 hiyohiyo
...
March 11, 2016 at 10:58 am
Any additional information in that "RS Scripter Load Log.txt" file?
March 10, 2016 at 4:12 pm
Could just be over provisioned RAM, and you're only seeing the lazy writer doing its thing.
What does Buffer Cache Hit Ratio and Page Life Expectancy look like?
There's some good stuff...
March 10, 2016 at 4:06 pm
Not to be snarky, but google "sql server non default port"
March 10, 2016 at 2:47 pm
Viewing 15 posts - 91 through 105 (of 355 total)