I am looking to extract “human readable” schedule information from the ReportServer.dbo.Schedule table using t-sql.
An example of “human readable” follows.
At 6:02 AM every Sun, Mon, Tue, Wed, Thu, Fri, Sat of every week, starting 2/28/2011
There are a bunch of numeric fields in the table which are used to store the schedule, but I would like to convert those to words, as in my example.
Has anyone ever done this with reporting services?
SQL is not great for string manipulation or bitwise operations, and parsing this table requires a moderate bit of both. I’m sure SSRS doesn’t do this in SQL: I probably could have written this in half the time and half the lines in C#.