Viewing 15 posts - 1 through 15 (of 250 total)
sturner (1/24/2014)
Shouldn't take that long, the process must be being blocked.
Yes, blocking was the issue. Thanks.
January 24, 2014 at 12:44 pm
This turned out to be an issue with the way I was cascading my parameters. I had the parameters in the wrong 'physical' order.
CSDunn
November 18, 2012 at 6:43 am
Thanks for the feeback. I suspected that having spaces in the folder names was an issue. However, I changed those destination folder names not to have spaces, and I still...
July 13, 2012 at 7:54 am
Burninator (3/20/2012)
As a suggestion, just play around...
March 22, 2012 at 12:34 pm
Burninator (3/20/2012)
-- insert table, select dataset
-- in Row Group menu,...
March 20, 2012 at 2:16 pm
Burninator (3/19/2012)
Can this be done with the Tablix control in SSRS? Is there any other technique in SSRS that can be used for this situation?
Yes it can. Insert a...
March 20, 2012 at 7:37 am
Thanks. Who was the training company?
February 18, 2011 at 3:56 pm
This turned out to be a problem with a rule on the Exchange server. The proc works as intended.
Thank you for your help!
CSDunn
October 7, 2010 at 1:18 pm
Below is the actual stored procedure that I'm using:
CREATE PROCEDURE [dbo].[spETL_CreatePositivePay_EventNoticeNoPayEntries]
(
@PackageName nvarchar(100),
@MachineName nvarchar(100)
)
AS
DECLARE
@EventNoticeIDLocal Int,
@Profile_NameLocal varchar(10),
@SubjectTextLocal nvarchar(255),
@BodyLocal nvarchar(max),
@Body_FormatLocal varchar(20),
@ToLocal varchar(max),
@PackageNameLocal nvarchar(100),
@MachineNameLocal nvarchar(100),
@ProcessDateLocal datetime
SELECT@PackageNameLocal = @PackageName,
@MachineNameLocal = @MachineName,
@ProcessDateLocal = GETDATE()
BEGIN TRY
SET...
October 7, 2010 at 12:44 pm
The messages are being sent through the 2007 version of Microsoft Exchange Server.
October 7, 2010 at 11:56 am
The same thing happens for the Subject. If the string is beyond a certain small number of characters in length, the email is not sent.
October 7, 2010 at 11:33 am
I was able to fix this problem yesterday. Thanks.
June 26, 2009 at 1:32 pm
I've already fixed this problem. Thanks.
June 26, 2009 at 1:29 pm
I should add that the ServerIdentity table contains a record for a server named CAUAT, and another for CAUAT1.
I think what is happening is that, in the CASE statement, CAUAT...
June 19, 2009 at 12:48 pm
Viewing 15 posts - 1 through 15 (of 250 total)