Back Up Vimeo data to SQL Server through SSIS
This article illustrates using the Vimeo ADO.NET Data Provider within a SQL Server SSIS workflow for the direct transfer of Vimeo data to a Microsoft SQL Server database. It's worth noting that the identical process detailed below is applicable to any CData ADO.NET Data Providers, enabling the direct connection of SQL Server with remote data through SSIS.
- Open Visual Studio and create a new Integration Services project.
- Add a new Data Flow task from the toolbox onto the Control Flow screen.
In the Data Flow screen, add an ADO.NET Source and an OLE DB Destination from the toolbox.

- Add a new connection and select .NET Providers\CData ADO.NET Provider for Vimeo.
In the connection manager, enter the connection details for Vimeo data.
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:
- Log in to your Vimeo account at https://vimeo.com
- Navigate to https://developer.vimeo.com/apps
- Create a new app or select an existing app
- Under "Personal Access Tokens", click "Generate" to create a new token
- Select the required scopes: public and private for read access
- 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';

Open the DataReader editor and set the following information:
- ADO.NET connection manager: In the Connection Managers menu, select the Data Connection you just created.
- Data access mode: Select 'SQL command'.
- SQL command text: In the DataReader Source editor, open the Component Properties tab and enter a SELECT command, such as the one below:
SELECT , FROM Videos WHERE UserUri = '/users/12345678'
- Close the DataReader editor and drag the arrow below the DataReader Source to connect it to the OLE DB Destination.
Open the OLE DB Destination and enter the following information in the Destination Component Editor.
- Connection manager: Add a new connection. Enter your server and database information here. In this example, SQLExpress is running on a separate machine.
- Data access mode: Set your data access mode to "table or view" and select the table or view to populate in your database.
Configure any properties you wish on the Mappings screen.

- Close the OLE DB Destination Editor and run the project. After the SSIS task has finished executing, your database will be populated with data obtained from Vimeo data.