Viewing 9 posts - 1 through 9 (of 9 total)
SQL 2012 MCSA
70-461,70-462,70-463
SQL MCSE Data Platform
MCSA + 70-465,70-466
SQL MCSE Business Intelligence
MCSA + 70-466,70-467
MCSE is stated to be version independent (according to video in link below from boB Taylor, but it...
January 21, 2015 at 2:29 am
Some ideas off the top of my head :-
Track I/O using perfmon.
Track wait stats from SQL perspective.
Run SQLIO to get indications of baseline I/O SQLIO Tutorial here[/url]
From the lack of...
December 12, 2014 at 4:41 am
Have you thought about putting an SSH server onto your SQL Server and call it from the UNIX box.
You can then initiate SQL exports / BCP / whatever you're...
December 8, 2014 at 8:49 am
In the absence of any additional information on your requirement, there are plenty of options for you.
For example PERL has the DBI connectivity libraries which work just fine for connecting...
December 8, 2014 at 3:36 am
SQL to check all DBs for the file. Replace the appropriate segment below with your full file path
sp_msforeachdb '
--if (''[?]'' not in (''[master]'',''[model]'',''[tempdb]'',''[msdb]'',''[reportserver]'',''[ReportServerTempDB]''))
BEGIN
use [?] ;
--print ''Working on [?]''
select
convert(varchar(15),@@Servername) as...
December 5, 2014 at 9:36 am
Take a look at [dbcc loginfo] to see where your t-log is getting caught up in terms of reuse of VLFs.
There is a really good video intro to transaction log...
December 5, 2014 at 5:18 am
I wonder are the SQL Services on the different servers running under accounts with different privileges?
If the [SQL Server] Service account has the privilege "Perform Volume Maintenance Tasks" it...
December 5, 2014 at 5:01 am
If the data (tables) were moved from living on the MDF file there is additional information stored in this file such as various metadata relating to the database as a...
August 13, 2014 at 6:34 am
I remember trying to capture this using DDL triggers but never found a way of tracking role changes, yes you can catch new login/users but roles seemed more problematic
July 30, 2014 at 6:11 am
Viewing 9 posts - 1 through 9 (of 9 total)