Connecting to Adobe Analytics 2.0 via SQL
You can use SQL to connect to Adobe Analytics in the CData Virtuality Studio or the Code Editor in the Web UI.
Pre-requisites
You need the ClientID, PrivateKey.
How to Connect
Before you start retrieving data, you need to run the connector script for Adobe Analytics in the CData Virtuality Studio or the Web UI and input your credentials in the following line:
CALL SYSADMIN.createConnection (
name => 'adobe_analytics_src'
,jbossCLITemplateName => 'ws'
,connectionOrResourceAdapterProperties => 'EndPoint=https://api.omniture.com/admin/1.4'
);;
CALL SYSADMIN.createDataSource (
name => 'adobe_analytics_src'
,translator => 'adobe_analytics'
,modelProperties => 'clientSecret=<clientSecret>,clientID=<clientID>'
,translatorProperties => ''
);;