Viewing 15 posts - 1 through 15 (of 29 total)
Also what about the Microsoft supplied tablediff! While BOL indicates this is a utility for comparing replicated tables it works quite nicely on any pair or table regardless of the...
September 23, 2019 at 3:09 pm
One option you could consider if you have the transaction logs from the subscriber is a detailed analysis of these using a third party log reader or the undocumented function...
October 25, 2013 at 4:46 pm
a touch overkill to get the hostname for sessions on your server perhaps?
select s.host_name
from sys.dm_exec_connections C
join sys.dm_exec_sessions S on S.session_id = C.session_ID
where...
June 2, 2012 at 11:12 am
Shinoj Ramanathan (8/10/2010)
Snapshot -...
August 10, 2010 at 4:16 pm
is this KB relevant http://support.microsoft.com/kb/910416
you may also see Exception 0xc0000005 EXCEPTION_ACCESS_VIOLATION reading address 00000020 at 0x0110B72B 2. int the error log
if so this is a known bug and there...
August 10, 2010 at 1:07 pm
When I have seen this it was down to exceeding the number of worker threads configured in the various SQL Agent subsystems
To check this
on the distributor
select subsystem,max_worker_threads from ...
August 10, 2010 at 12:09 pm
I would love the luxury of time to write an article. I work for a very busy online company, and most of the code and utilities I put together actually...
July 19, 2010 at 10:56 am
From post 2
There are always a million ways to do anything. It's quite possible that your idea is better, but this one works
from post 12
Error: System.Reflection.TargetInvocationException: Exception has been thrown...
July 17, 2010 at 2:39 pm
If you can code something no matter how, then you can probably include it in the available event handlers. You have the ability to run just about anything you want...
July 14, 2010 at 1:32 pm
Anything wrong with the event handlers already available within SSIS. It is very simple to set up an SSIS template with the event handlers coded to generate logging, thereafter use...
July 12, 2010 at 12:43 am
Everytime I have seen this it has been down to firewall rules which is possible in your case as well given that you are crossing domains. As requested confirm network...
May 8, 2010 at 1:45 pm
Have you thought about the default trace as schema changes are already recorded there and easily available without the need for a ddl trigger. In fact Microsoft provides a schema...
May 7, 2010 at 12:32 pm
I have to agree with some of the comments here particularly on the principal on version control however and at the risk or creating some controversy, I would question the...
May 6, 2010 at 7:11 am
Assumming that you have a single trigger on the table to handle inserts, updates and deletes there is a way to identify what caused the trigger to fire
Use the tables...
August 15, 2006 at 5:46 am
Try
August 15, 2006 at 5:23 am
Viewing 15 posts - 1 through 15 (of 29 total)