Viewing 15 posts - 181 through 195 (of 1,584 total)
You need to determine possible causes of the high count... It could be you've got to much going on on the publisher/distributor (you infer that these are on the same...
June 8, 2014 at 8:15 am
Any chance you have a trigger on the table in one of the subscribers?
June 8, 2014 at 8:09 am
Yes, please review that article...and then upload your current execution plan. Just guessing, but you'll most like have a clustered index scan on T1 and T2 (unless it's a...
June 8, 2014 at 8:05 am
Tracer tokens are really just for confirming that "yes" latency is poor (or good depending on if things are running smoothly). How large is your set up (i.e. how...
June 8, 2014 at 8:00 am
I faced the same issue here at this company. Prior to coming on board here I had never used the hint, but here's it's literally in every reporting procedure...
June 5, 2014 at 10:10 pm
I know this is probably a retarded way to go about it, but got it to work using this:
CREATE FUNCTION [dbo].[fx_FolderExists] (
@Folder nvarchar(500),
@Action tinyint
)
RETURNS int AS
BEGIN
DECLARE @Exists int, @ObjFile...
June 5, 2014 at 11:20 am
Thanks for the suggestions guys! I'll take a deeper look over the next day or two and see what I can come up with!
May 20, 2014 at 11:28 am
This would work, however wedging it into the current query looks like an dreadful task. For the basis of my example I used @String to parse, but in relation...
May 19, 2014 at 10:44 pm
Darn. Missed that one. Had it stated "In 2014 can you run SQL Server in your existing data center and store data files for a database in the Azure...
April 21, 2014 at 8:27 am
Yes you can simply take another full backup. Full backups do not affect the LSN chain for log backups in any way (except for the very first full backup...
April 17, 2014 at 10:22 am
That works, howeve, in the unlikely event there's stuff going on in the milliseconds portion of the datetime, I would opt for >= 1st day of the month and <...
April 16, 2014 at 7:50 am
Thanks Perry. I realize it was supported, just wanted to make certain there was no "behind the scenes" issues with the rename. Appreciate the assurance!
April 16, 2014 at 7:32 am
Yes, it should, but as sqlbuddy mentioned, it could be blocked for a variety of reasons. Try extending it to 180 for testing purposes only (or zero for no...
April 15, 2014 at 1:40 pm
Viewing 15 posts - 181 through 195 (of 1,584 total)