Viewing 15 posts - 76 through 90 (of 151 total)
Actually, as I think about it, you should be able to capture the process ID of the backup process from sys.dm_exec_sessions and sys.dm_exec_requests.
select s.session_id, s.program_name, s.host_process_id, s.login_name, s.nt_user_name
from sys.dm_exec_sessions s...
March 5, 2014 at 8:20 am
Sounds like you have an agent installed for the backups, if the servername comes back as localhost. Poke on through the services on the box, and see if anything...
March 5, 2014 at 8:05 am
Instead of a temp table, you could try a CTE as a replacement. Views don't like temp tables very much. Performance wise, it may evaluate to the same...
March 3, 2014 at 2:35 pm
I kind of doubt that this is related to an OS patch. Have there been any recent code migrations? Check in sys.procedures to see if anything has a...
March 3, 2014 at 2:06 pm
The number of connections does not look troublesome to me. I have had SQL 2005 server running with 200 - 300 connections with little to no problems (we have...
February 28, 2014 at 2:40 pm
First questions would be can you use sp_send_mail outside of the procedure? if not, then it could be you have a bad mail server dns name configured. Then...
February 28, 2014 at 2:35 pm
I would go with the Backup/restore route as well. This has the benefit that nothing that happens in your test environment can have an effect on your production environment....
February 28, 2014 at 2:30 pm
That is the maddening thing about Kerberos problems. No change you make takes effect immediately, due to the caching that happens all over the place. Whenever you make...
February 18, 2014 at 2:59 pm
Instead of a dynamic port, you should probably set a static port. I usually start at 1435, and work my way up from there, but you can just as...
February 18, 2014 at 2:50 pm
Sorry. Double post issue.
February 18, 2014 at 2:13 pm
Well, I have been using DNS aliases for a while. It has helped me through a number of hardware upgrades. I highly recommend it.
To get through your NTLM...
February 18, 2014 at 2:12 pm
To see if you really have table scans on those tables, you can break out Profiler, and see if you can get the number of table scans that happen on...
February 18, 2014 at 2:06 pm
I have not tried FileTables, as yet. I just googled for it, and the technet article says that the technology is built on FileStream. I do know that...
February 18, 2014 at 1:58 pm
A record of what has been updated is pushed to the log., not the actual pages.
Due to the importance of the log data (for recovery), the log writes are synchronous,...
February 14, 2014 at 1:47 pm
The estimated cost of a query is not a guarantee to how the query will actually perform (in fact,t he cost value has an er....interesting origin...). Run statistics IO,...
February 14, 2014 at 12:46 pm
Viewing 15 posts - 76 through 90 (of 151 total)