Viewing 11 posts - 1 through 11 (of 11 total)
Thanks Drew. That worked!!
February 14, 2017 at 3:18 pm
MAX DOP : 6
Cost Threshold for Parallelism: 15
select * from sys.dm_os_wait_stats where wait_type = 'threadpool';
wait_typewaiting_tasks_countwait_time_msmax_wait_time_mssignal_wait_time_ms
THREADPOOL303468614170
December 1, 2016 at 12:04 pm
This worked for me!
Added OPTION(Recompile) at the end of query in stored procedure.
Thanks
Vishwanath
November 3, 2016 at 1:35 pm
I have found the issue long back but forgot to post here.
The problematic subscriber is a named instance and the team who setup the replication used the script to add...
August 9, 2016 at 12:28 pm
You can use below script by just enter the database name which you want to exclude and provide the spname as input variable.
DECLARE @SPNAME VARCHAR(100)
DECLARE @DBNAME VARCHAR(100)
DECLARE @SQLCMD VARCHAR(1000)
SET @SPNAME...
November 27, 2012 at 11:23 pm
If publication already exists, Configuration distribution option is not available.So, Check if you have any publication configured and also for distribution DB under system databases list.
November 23, 2012 at 1:59 am
Thanks Gail & Steve for answering my question...
Thanks
~Vishwanath
July 12, 2012 at 4:21 am
Hi,
You can append a random number to the file. This will create files with unique names.
Select rand()
Thanks
~Vishwanath
June 6, 2012 at 3:34 am
Any one got this type of request?
November 1, 2011 at 9:39 pm
Thanks for your help. It got resolved
I gave complete path of sftp2 in bat file and this made the things working
October 24, 2011 at 7:58 am
Try this.
USE [DSReports]
GO
/****** Object: StoredProcedure [dbo].[Waterfall_New] Script Date: 08/23/2011 10:56:14 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER PROCEDURE [dbo].[Waterfall_New]
-- declaring the variables to be used in the procedure
(
@FieldDate...
August 23, 2011 at 6:53 am
Viewing 11 posts - 1 through 11 (of 11 total)