Hi guys,I have a stored proc which runs just fine when called exec dbo.sp_.....when I try to run the same sp from a job then I get an error message'The conversion of a char data type to a datetime data type resulted in an out-of-range datetime value'the sp builds a dynamic SQL statement (@SQL) and then executes it using EXECUTE sp_executesql @SQL I think the offending code may be the logic I am using to strip the time from the date (@datetime is the getdate() when the process was started)convert(varchar(10),CAST(FLOOR(CAST(@datetime AS float)) AS datetime),103)
but why would it run native, but not as a job?The script for the job is below.USE [msdb]GO/****** Object: Job [Run_DQ_Reports] Script Date: 07/31/2009 13:09:43 ******/BEGIN TRANSACTIONDECLARE @ReturnCode INTSELECT @ReturnCode = 0/****** Object: JobCategory [[Uncategorized (Local)]]] Script Date: 07/31/2009 13:09:44 ******/IF NOT EXISTS (SELECT name FROM msdb.dbo.syscategories WHERE name=N'[Uncategorized (Local)]' AND category_class=1)BEGINEXEC @ReturnCode = msdb.dbo.sp_add_category @class=N'JOB', @type=N'LOCAL', @name=N'[Uncategorized (Local)]'IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollbackENDDECLARE @jobId BINARY(16)EXEC @ReturnCode = msdb.dbo.sp_add_job @job_name=N'Run_DQ_Reports', @enabled=1, @notify_level_eventlog=0, @notify_level_email=0, @notify_level_netsend=0, @notify_level_page=0, @delete_level=0, @description=N'Schedule to run the DQ Reporting Process automatically', @category_name=N'[Uncategorized (Local)]', @owner_login_name=N'PCT\My.Username', @job_id = @jobId OUTPUTIF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback/****** Object: Step [run DQ Reports Stored Procedure] Script Date: 07/31/2009 13:09:44 ******/EXEC @ReturnCode = msdb.dbo.sp_add_jobstep @job_id=@jobId, @step_name=N'run DQ Reports Stored Procedure', @step_id=1, @cmdexec_success_code=0, @on_success_action=1, @on_success_step_id=0, @on_fail_action=2, @on_fail_step_id=0, @retry_attempts=0, @retry_interval=0, @os_run_priority=0, @subsystem=N'TSQL', @command=N'exec guest.spDQ_Reports', @database_name=N'blueFISH', @database_user_name=N'PCT\My.Username', @output_file_name=N'DQ_LOG', @flags=2IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollbackEXEC @ReturnCode = msdb.dbo.sp_update_job @job_id = @jobId, @start_step_id = 1IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollbackEXEC @ReturnCode = msdb.dbo.sp_add_jobschedule @job_id=@jobId, @name=N'DQ Reports', @enabled=1, @freq_type=4, @freq_interval=1, @freq_subday_type=1, @freq_subday_interval=0, @freq_relative_interval=0, @freq_recurrence_factor=0, @active_start_date=20090729, @active_end_date=99991231, @active_start_time=80053, @active_end_time=235959IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollbackEXEC @ReturnCode = msdb.dbo.sp_add_jobserver @job_id = @jobId, @server_name = N'(local)'IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollbackCOMMIT TRANSACTIONGOTO EndSaveQuitWithRollback: IF (@@TRANCOUNT > 0) ROLLBACK TRANSACTIONEndSave: