Hello @jitinsethi07,
according to this license, you have ODBC, but not MySQL, hence no in-database processing.
You can connect with libname and pass queries with passthrough (with a few contraints), though.
Please read: http://documentation.sas.com/?docsetId=acreldb&docsetTarget=p1f29m86u65hken1deqcybowtgma.htm&docsetVersion=9.4&locale=en
Please mind this: I would highly recommend to first prepare your data well, filtered and sorted, into SAS tables, that can be easily and quickly loaded into LASR (RAM memory), to not lose the great performance that SAS Visual Analytics can provide you.
If you do otherwise, every time you query and join tables from external data sources (such as MySQL), SAS will try to first download the full table/s into WORK tables and then do the join/query, hence, losing performance and efficiency.
... View more