Viewing 4 posts - 1 through 4 (of 4 total)
Cheers - already raised a "ticket/issue" http://analyticssource.codeplex.com/workitem/15933
but if it's just Tillmann working on the project then it might be a while for any answer.
I'll ask our DBA to...
January 7, 2013 at 6:05 am
anthony.green (1/7/2013)
January 7, 2013 at 5:47 am
I've made a start with the SSIS DFT task that's mentioned on "http://analyticssource.codeplex.com/".
I can get the task to login to my google analytics account, and can successfully preview the data...
January 7, 2013 at 2:09 am
you could try....
DECLARE @today VARCHAR(10)
select @today = convert(varchar(10),getdate(),120)
then use the parameter in the where clause
AND T.TimeStarted like @today+'%'
or just use
AND T.TimeStarted like (select convert(varchar(10),getdate(),120))+'%'
March 7, 2011 at 2:48 am
Viewing 4 posts - 1 through 4 (of 4 total)