Skip to main content
Announcements
Customer Spotlight: Discover what’s possible with embedded analytics Oct. 16 at 10:00 AM ET: REGISTER NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Dynamic naming by date when storing

Hey guys,

I have made a SQL script that I have scheduled daily in the QMC for it to auto generate a daily file.

The syntax is as you might now between getdate()-1 and getdate(). I store this file as a CSV file in the script, and I want it to add the date aswell in the name.

_$(vL.Client)_day.csv (txt, delimiter is ';');

2 Replies
swuehl
MVP
MVP

Maybe like

Let vToday = Today();

...

_$(vL.Client)_$(vToday).csv (txt, delimiter is ';');

Not applicable
Author

Thansk a lot!