Google Analytics SQL Import

  • I recently developed a Data Processing Extension for SSRS which lets you read data from Google Analytics and push to SSRS to create reports.

    https://github.com/farzadpanahi/GoogleAnalyticsDataProcessingExtension

    I just thought you guys may find it interesting : >

  • Sounds very exciting. Does this work for YouTube Analytics? Looking for similar plugin for YouTube Analytics

  • I think with some minor changes to the source code it can be made to work with YouTube analytics api.

  • Do you know similar SSIS plugin for YouTube Analytics?

  • farzad.panahi (8/19/2013)


    I think with some minor changes to the source code it can be made to work with YouTube analytics api.

    Hi Farzad,

    Can you let me know what changes need to be made to make it work for YouTube Analytics?

    Thanks in advance

    -Ram

  • ram_model (8/26/2013)


    farzad.panahi (8/19/2013)


    I think with some minor changes to the source code it can be made to work with YouTube analytics api.

    Hi Farzad,

    Can you let me know what changes need to be made to make it work for YouTube Analytics?

    Thanks in advance

    -Ram

    You need to install YouTube Analytics nuget package https://www.nuget.org/packages/Google.Apis.youtubeAnalytics.v1 for the C# solution.

    Then by reading the api or taking a look at samples like https://code.google.com/p/youtube-api-samples/source/browse/samples/dotnet/my_uploads.cs modify https://github.com/farzadpanahi/GoogleAnalyticsDataProcessingExtension/blob/master/src/GoogleAnalyticsDataProcessingExtension/GoogleAnalyticsDataProcessingExtension/GoogleAnalytics/GAService.cs file to use YouTubeService instead of AnalyticsService.

    You can start modifying this method:

    private AnalyticsService GetAnalyticsService(IAuthenticator authenticator)

    {

    return new AnalyticsService(new BaseClientService.Initializer() { Authenticator = authenticator, GZipEnabled = true });

    }

  • Extracting data from Google Analytics requires some programming skills.. specially with OAuth 2.0. If you are comfortable with C# or other language .. use their official SDK found on github.

    If you prefer not to re-invent the wheel then try some 3rd-party Google Analytics Connector like this one[/url]

    There is another method of connecting to Google API too.. use of *.p12 file (Certificate file) ..

  • summerpet39 (1/14/2016)


    Extracting data from Google Analytics requires some programming skills.. specially with OAuth 2.0. If you are comfortable with C# or other language .. use their official SDK found on github.

    If you prefer not to re-invent the wheel then try some 3rd-party Google Analytics Connector like this one[/url]

    There is another method of connecting to Google API too.. use of *.p12 file (Certificate file) ..

    I was able to import on SSIS 2005 of all versions, without any programming tasks needed. It is a task within SSIS that you register in SSIS , after downloading. See the prior link in this thread.

    ----------------------------------------------------

  • Hello,

    I have worked for SSIS Google Analytics Source[/url] in past and got success . I have complete package with sample work and had used in past and really It was helpful. I am going to share link of the page. Kindly have a look.

    http://zappysys.com/products/ssis-powerpack/ssis-google-analytics-source-connector/

    Hope It will be helpful.

    🙂

    SSIS Json source[/url] : The Json file soure is used to to read data from Json file. We have mentioned source code with example.

  • Hello anthony,

    Here , I would like to answer about the query, I have already worked with Google Analytics import to SQL via SSIS . We have a specific resource of this , Where You will get the proper guide of work. To know more about this , Please follow this link

    More about SSIS Google Analytics

    Hope It will be helpful.

    🙂

    SSIS Json source[/url] : The Json file soure is used to to read data from Json file. We have mentioned source code with example.

  • Hello anthony,

    I have did the same using ssis. I am sharing a link where you will get the proper guide. To know more about google analytic task go through SSIS google analytic here[/url]

    Hope it will be helpful for you.

    If you have any query, Feel free to discuss.

    🙂

    SSIS Json source[/url] : The Json file soure is used to to read data from Json file. We have mentioned source code with example.

Viewing 11 posts - 16 through 25 (of 25 total)

You must be logged in to reply to this topic. Login to reply