all groups > sql server dts > december 2005 >
You're in the

sql server dts

group:

producing a date time report in SQL/DTS


RE: producing a date time report in SQL/DTS Christian Donner
12/28/2005 10:56:03 AM
sql server dts:
"Blasting Cap" schrieb:
[quoted text, click to view]

Try it with two jobs, one for Tuesday, one for Friday, and set the execution
time of the job appropriately. Search for your data by difference:
select * from MyTable where datefield > dateadd(d, -3, GetDate()) -- Friday
and
Re: producing a date time report in SQL/DTS Andrew J. Kelly
12/28/2005 2:13:53 PM
Just use the DATEPART() or DATENAME() functions to determine which day it
is. Then use DATEADD() with the appropriate days to get the from and to
that you need for your WHERE clause.

--
Andrew J. Kelly SQL MVP


[quoted text, click to view]

producing a date time report in SQL/DTS Blasting Cap
12/28/2005 6:26:18 PM
I have need to produce a report (excel sheet actually) from SQL that
would run each Tuesday and each Friday of every week.

What needs to be on the Tuesday report is everything that came in from
the Friday midnight time, until the Monday midnight time. The friday
report(sheet) would have everything that came in from Midnight Monday
evening, thru midnight Thursday. The next Tuesday report would have
everything from Midnight Thursday thru midnight Monday, and so on.

I know I can schedule the jobs to run on that interval, but how do I
selectively pick the records I want? There is a datetime field on the
table, "submit date" and what I am basically doing is a select * from
tbl_literature_orders where date > x.

Any ideas?

Thanks,

AddThis Social Bookmark Button