Hi @coool sweet ,
You may use Execute SQL task and use the below script before loading the data.
DECLARE @Str NVARCHAR(MAX);
SET @Str = 'select * into [temp_'
+ CONVERT(VARCHAR, GETDATE(), 10)
+ '] from temp'
EXEC SP_EXECUTESQL @Str
Regards,
Zoe
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.