SAS Connectivity to MySQL
In order to process tables froim MySQL tables, a number of steps must be taken.
First, you must install SAS with the ACCESS/MySQL module. If SAS is already installed on your system you may check what is installed by running the following SAS code:
proc setinit noalias;
run;
If you do not see MySQL listed in the output, you will need to install that module by running the setup program again.
The next step is to install MySQL server with the client extensions. Unfortunately you must install the server even thuough you will not be using the local server. It is necessary for you to have an Oracle Login to be able to download the MySQL software. Once ready to download go to the following link: http://www.mysql.com/downloads/mysql/5.5.html
Download the correct install file for the version of Windows running on your system.
Install MySQL with all of the defaults.
once installed you will need to add the following to your global path if it is not already on the path:
;C:\Program Files\MySQL\MySQL Server 5.5\lib;C:\Program Files\MySQL\MySQL Server 5.5\bin
The following steps may be followed to edit the path.
Reboot your system. You should now have access to your mysql tables through SAS.