Viewing 15 posts - 91 through 105 (of 1,192 total)
John Mitchell-245523 (12/14/2015)
Set up a Central Management Server in SSMS, then register all your servers and run a query to get the server name on all of them
Nice, you can...
December 14, 2015 at 10:49 am
If you've got them defined as linked servers, give this a whirl (needs SQLPS module loaded):
$servers = Invoke-Sqlcmd -ServerInstance serverwithlinkedserversdefined -Query "select name from sys.servers where product = 'SQL Server'"...
December 14, 2015 at 10:39 am
Jeff Moden (12/13/2015)
December 14, 2015 at 9:11 am
Cheers for trying it, think that option is actually for Change Tracking rather than CDC (thought that might have been the case when I suggested it, but worth a try).
Seems...
December 14, 2015 at 8:17 am
Other things to consider for a custom solution: how do you control which is the active location? Point apps/connections at the right server? Transactional consistency across sites? Prevent writes on...
December 13, 2015 at 2:38 pm
Cheers, thought it'd be from sys.dm_io_virtual_file_stats.
Not really seeing a problem yet to be honest. Temp tables/table variables, ORDER BY, many maintenance tasks, and any number of other processes all use...
December 11, 2015 at 1:58 pm
Bloody hell. Surprised you haven't been asked to build it on Express Edition, make it a real challenge.
Step 1. While management are still high on whatever drugs they're taking, ask...
December 11, 2015 at 1:36 pm
Maybe this?
$CreationScriptOptions.ChangeTracking = $true
December 11, 2015 at 1:10 pm
Could you share the script you're using to get those numbers?
I/O on tempdb can be expected to be many MB as it's the working area for the whole of sql...
December 11, 2015 at 12:42 pm
Cheers, can you capture the proc running in profiler? Should be able to confirm the parameter values that the proc's executing with.
December 11, 2015 at 8:36 am
Any caching set up on the dataset?
Are you running the report in report manager or BIDS/VS?
Is the dataset set to Query Type Text or Stored Procedure?
If text, is the text...
December 10, 2015 at 10:43 am
richardmgreen1 (12/10/2015)
The mirrors will be snapshotted for use in reporting.
We need the data to run various reports on (that's on thr BI Edition server).
The mirror...
December 10, 2015 at 9:27 am
John Mitchell-245523 (12/10/2015)
Mirroring is deprecated. You should use AlwaysOn Availability Groups if you're upgrading to SQL Server 2012 or later.John
If you're lucky enough to have Enterprise Edition.
December 10, 2015 at 5:00 am
cory.bullard76 (12/9/2015)
December 9, 2015 at 11:10 am
Viewing 15 posts - 91 through 105 (of 1,192 total)