Build Data Flows from Vimeo to SQL Server using SSIS

Jerod Johnson
Jerod Johnson
Director, Technology Evangelism
Easily back up Vimeo data to SQL Server using the SSIS components for Vimeo.

Using SQL Server as a backup for critical business data provides an essential safety net against loss. Backing up data to SQL Server enables business users to more easily connect that data with features like reporting, analytics, and more.

This example demonstrates how to use the CData SSIS Tasks for Vimeo inside of a SQL Server SSIS workflow to transfer Vimeo data into a Microsoft SQL Server database.

Add the Components

To get started, add a new Vimeo source and SQL Server ADO.NET destination to a new data flow task.

Create a New Connection Manager

Follow the steps below to save Vimeo connection properties in a connection manager.

  1. In the Connection Manager window, right-click and then click New Connection. The Add SSIS Connection Manager dialog is displayed.
  2. In the Connection Manager type menu, select API. The CData Vimeo Connection Manager is displayed.
  3. Configure connection properties.

    Vimeo is a professional video hosting platform. The Vimeo API uses personal access tokens (bearer tokens) to enable secure access to video metadata, user information, channels, groups, categories, and related resources.

    Using API Key Authentication

    To authenticate to the Vimeo API, you will need to provide a personal access token. To obtain your access token:

    1. Log in to your Vimeo account at https://vimeo.com
    2. Navigate to https://developer.vimeo.com/apps
    3. Create a new app or select an existing app
    4. Under "Personal Access Tokens", click "Generate" to create a new token
    5. Select the required scopes: public and private for read access
    6. Copy the generated token

    After obtaining your access token, set the following connection properties:

    • AuthScheme: Set this to APIKey.
    • APIKey: Set this to your Vimeo personal access token.

    Example connection string

    Profile=C:\profiles\Vimeo.apip;ProfileSettings='APIKey=your_personal_access_token';
    

Configure the Vimeo Source

Follow the steps below to specify the query to be used to extract Vimeo data.

  1. Double-click the Vimeo source to open the source component editor.
  2. In the Connection Manager menu, select the connection manager previously created.
  3. Specify the query to use for the data extraction. For example:
    SELECT ,  FROM Videos WHERE UserUri = '/users/12345678'
    
  4. Close the Vimeo Source control and connect it to the ADO.NET Destination.

Configure the SQL Server Destination

Follow the steps below to specify the SQL server table to load the Vimeo data into.

  1. Open the ADO.NET Destination and add a New Connection. Enter your server and database information here.
  2. In the Data access mode menu, select "table or view".
  3. In the Table Or View menu, select the table or view to populate.
  4. Configure any properties you wish to on the Mappings screen.

Run the Project

You can now run the project. After the SSIS Task has finished executing, your database will be populated with Vimeo data.

Ready to get started?

Connect to live data from Vimeo with the API Driver

Connect to Vimeo