correct format for datetime appended to filename
- by jhayes
I'm trying to setup a batch file to execute a set of stored procs and dump the output to a timestamped text file. I'm having problems finding the correct format for the timestamp.
Here is what I'm using
osql.exe -S <server> -E -Q "EXEC <stored procedure> " -o "c:\filename_%date:~-0,10%_%time:~-0,10%.txt"
The error I get is:
Cannot open output file - x:\filename_Thu 06/25/_16:26:43.1.txt
No such file or directory
I can't find the documentation and I've played around with it but can't find the correct format.