Viewing 10 posts - 1 through 10 (of 10 total)
For some reason I had to do the change twice in order for the system to save the change from a period to a dash. Once again thanks for your...
October 28, 2013 at 9:02 am
I changed the procedure to the following: exec sproc.Infmtx_003_MonthlyAR. I now get the error Error could not find the stored procedure 'sproc.Infmtx_003_MonthlyAR' [SQLSTATE 42000] [Error 2812].
October 28, 2013 at 8:49 am
A thousand apologies. I have not had a chance to fix it yet. I am fixing it today using the previous posting from last month. I am processing right now.
October 28, 2013 at 7:54 am
After thinking about the issue I decided to go with a regular insert instead of a bulk insert and everything worked out great.
INSERT INTO dbo.dic_Client_RoleAssign(clid,roleid,usrid)
...
October 23, 2013 at 3:06 pm
I realized this error only happens to me when I am using the VPN network from home to connect to the remote session to the server I need to get...
October 6, 2013 at 3:00 pm
Thanks for your patience. I thought I had copied and pasted to avoid errors but I was wrong. The command needs to be exec dbo.sproc_Infmtx_003_MonthlyAR with an underscore after sproc...
September 25, 2013 at 2:51 pm
When I look at the job step properties under the general tab
StepName: MonthlyAR,
Type is Transact SQL,
Database is ARC_Rpts,
Command is exec dbo.sproc.Infmtx_003_MonthlyAR.
Job step properties under under the advanced tab...
September 25, 2013 at 2:34 pm
I have added the screen shot of the step itself in case I made a mistake.
September 25, 2013 at 10:53 am
I have attached the screen shots of the failure. If I run this procedure individually I don't get an error, so you comment makes sense. I am not sure how...
September 25, 2013 at 10:48 am
This is the code in step 3
set ANSI_NULLS ON
set QUOTED_IDENTIFIER ON
GO
ALTER PROCEDURE [dbo].[sproc_Infmtx_003_MonthlyAR]
AS
--- Added 4 Drop table code to avoid duplication 9/11/2013 TD
IF OBJECT_ID('tmp_ARDetail') is not null
BEGIN
DROP TABLE tmp_ARDetail;
END
IF OBJECT_ID('tmp_AR')...
September 25, 2013 at 8:59 am
Viewing 10 posts - 1 through 10 (of 10 total)