I have following code:
declare @DateTime varchar(50)
set @DateTime = convert(varchar(50), current_timestamp, 121)
exec('insert into ZyTax.dbo.ttable(
report_state, report_datetime
select ztadds, ' + @DateTime +
' from AS400SRV_MSDASQL.VGSYS400.' + @AliasLibrary + '.' + @SourceFile)
Now it gives me error on @DateTime in the "select". If I use code 108 it gives error as well. It works fine for code 112. I need to capture both date and time. I guess code 108 and 121 have some invalid characters like ":" whereas code 112 does not.
declare @DateTime varchar(50)
set @DateTime = convert(varchar(50), current_timestamp, 121)
exec('insert into ZyTax.dbo.ttable(
report_state, report_datetime
select ztadds, ' + @DateTime +
' from AS400SRV_MSDASQL.VGSYS400.' + @AliasLibrary + '.' + @SourceFile)
Now it gives me error on @DateTime in the "select". If I use code 108 it gives error as well. It works fine for code 112. I need to capture both date and time. I guess code 108 and 121 have some invalid characters like ":" whereas code 112 does not.