Not totally sure this should be under admin or not. At my old job, I used SQL passthrough quite a lot for pushing operations to MS SQL Server without issue, but at my new job, I am a bit of an outcast for using SAS and local IT does not seem interested in digging into this issue. The attempted connection is now to AWS Redshift, and I'm using syntax like:
proc sql;
connect to redshift (user=XXXX password=XXXX
server=XXXX port=XXXX database=XXXX);
* .... ;
disconnect from redshift;
quit;
...and I'm getting the error:
ERROR: CLI error trying to establish connection: [DataDirect] [ODBC lib] Specified driver could not be loaded.
What I'd like to know is - is the solution to this something that the sys admin needs to resolve, or is it something I'm doing / not doing. Any help is greatly appreciated!