Viewing 15 posts - 166 through 180 (of 317 total)
Should not the be an issue unless you are generating hundreds of deadlocks.
August 9, 2013 at 12:19 pm
Is there a foreign key constraint, where this table is referenced?
It looks like it may be doing a cascading delete on another large table.
CXPACKET wait indicates paralellism.
July 24, 2013 at 2:04 pm
How are you coming up with $4k vs $10k?
Does not sound right.
July 24, 2013 at 12:38 pm
Are you trying to gather info on databases or database instances?
July 24, 2013 at 12:31 pm
Is this login a user in the mirrored database(s)?
If not, then it does not need to be synced.
July 17, 2013 at 10:42 am
select distinct OrderNum as ngn_order_num
from Lab_result_obr_p o
join Lab_rsults_obx r on o.LabNum = r.LabNem and r.Flag = 'N' and Value <> 'TNP'
where OrderNum not in
...
July 15, 2013 at 1:56 pm
poratips (7/15/2013)
Somehow we have every few minutes replication is running but sometimes it's locking and users have to wait and wait so sometimes we have to kill the session...
July 15, 2013 at 9:08 am
The source of the problem could be on the SQL server side ( bad queries, stale statistics or fragmented indexes, unexpected data growth, etc.)
or on the OS/hardware side (disk/IO issues,...
July 15, 2013 at 9:04 am
Below is code my colleagues have used to check status of mirroring:
SELECT distinct d.name,
m.mirroring_role_desc,
m.mirroring_state_desc, m.mirroring_safety_level_desc--,
--m.mirroring_partner_name, m.mirroring_partner_instance,
--m.mirroring_witness_name, m.mirroring_witness_state_desc
FROM...
July 15, 2013 at 8:49 am
SELECT distinct volume_mount_point
,cast(available_bytes as decimal)/1073741824 as [Space_in_GB]
FROM sys.master_files AS f
CROSS APPLY sys.dm_os_volume_stats(f.database_id, f.file_id)
July 12, 2013 at 5:44 pm
There maybe useful info in the SQL and Windows error logs on the remote server.
it may give you an idea of where in the stack the issues was.
July 12, 2013 at 5:34 pm
After dropping all indexes and successfully bulk copying the data in, are the index rebuilds successful?
July 12, 2013 at 5:26 pm
MyDoggieJessie (7/8/2013)
Why the log reader agent?
That stops transactions from being sent to the distribution database.
July 9, 2013 at 8:52 am
Instead of stopping the distribution agent first, you should stop the log reader agent on the published database.
Wait for replication to quiesce, stop the distribution agent, recreate the new subscription...
July 8, 2013 at 6:33 pm
Viewing 15 posts - 166 through 180 (of 317 total)