Viewing 15 posts - 16 through 30 (of 92 total)
The Distributed Transaction Coordinator (DTC) service coordinates transactions that update two or more transaction-protected resources, such as databases, message queues, files systems, and so on. These transaction-protected resources may be...
July 28, 2012 at 2:56 am
Found this transaction replication article from the URL as useful and therefore listing the same for your benefit since you are essentially looking to monitor and conclude on what is...
July 28, 2012 at 2:39 am
Please read the information listed on the following URL, this will help you in achieving your objective.
you can also use SQLSERVERAGENT to schedule the package to execute as per...
July 28, 2012 at 2:26 am
and further could you please clarify as to what you intend to state when you mentioned the following in your post :
SQL server uses about 80 threads which is above...
July 28, 2012 at 2:12 am
if you are referring to database connections when you mention threads you can execute the following query:
select a.name as "databasename",count(*) as "No of connections"
from sysdatabases a, sysprocesses b
where...
July 28, 2012 at 2:08 am
From my perspective you can avoid trigger creation as that would mean object creation in a production environment.
you can instead start a very lightweight server side trace (that will...
July 27, 2012 at 11:07 pm
As per my current understanding there is no limitation, you are free to choose the compression option on the subscriber.
This is because data compression is transparent to an application...
July 27, 2012 at 10:57 pm
ok this suggestion may seem a bit out of context but maybe you can execute a Update statistics for all tables with full scan and then attempt executing the...
July 26, 2012 at 2:44 pm
SQL Server 2005 exposes a lot of information like missing indexes and indexes which are not used for a period of time, can prove very useful as well.
you can...
July 26, 2012 at 2:26 pm
it looks like the job did not run today because you specified in the schedule that it should run on day 1 of every month.
This means that it will run...
July 26, 2012 at 2:18 pm
and if you do not have a long enough window on weekdays you can run a lightweight version of Checkdb by running it with a parameter ==> "with Physical_Only"...
July 26, 2012 at 2:02 pm
if nothing else works you can maybe work on a weekly once Full backup + Daily differential backup + Transaction log backup strategy.ofcourse this strategy goes out of...
July 26, 2012 at 11:52 am
ok i cannot mention this with a great deal of authority but this points to a possible CPU contention \ pressure on your server.But then we are bound to see...
July 25, 2012 at 3:30 pm
I completely agree with Steve, shrinking without thinking can come back to haunt you really bad.
Perfect example ==> Log grows over the weekend during a index rebuild or...
July 25, 2012 at 2:53 pm
As A.J. suggested have you ruled out index fragmentation by running a DMV query ( even though the table has not changed as per your feedback) ?
Also are...
July 25, 2012 at 1:30 pm
Viewing 15 posts - 16 through 30 (of 92 total)