<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: SAS/MySQL connects to MySQL server db, but I cannot see the tables in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/SAS-MySQL-connects-to-MySQL-server-db-but-I-cannot-see-the/m-p/500932#M133480</link>
    <description>&lt;P&gt;Thank you very much all: &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp&lt;/a&gt; for your help, &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/51161"&gt;@JBailey&lt;/a&gt; for finding the final solution, and &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/237579"&gt;@oswin_fox&lt;/a&gt; for following up on this issue while I was off.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Have a nice day!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 02 Oct 2018 19:54:14 GMT</pubDate>
    <dc:creator>chipican</dc:creator>
    <dc:date>2018-10-02T19:54:14Z</dc:date>
    <item>
      <title>SAS/MySQL connects to MySQL server db, but I cannot see the tables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-MySQL-connects-to-MySQL-server-db-but-I-cannot-see-the/m-p/500343#M133232</link>
      <description>&lt;P&gt;Hello all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was able to connect to a MySQL server using ssh and a terminal, and was able to see all the tables in my database.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, when I assign a libname in SAS to access the MySQL tables from within SAS, the libname is correctly assigned but no table is visible in the library.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The libname statement I used is:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname mydb mysql SERVER='cp-dmz-wps' PORT=23074 DATABASE=ract_RAVE_XXXX_PROD
USER=ract PASSWORD=xxxxxxxxxxxxx
INSERTBUFF=100 DBMAX_TEXT=255 access=readonly;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;This statement returns no error, only a note indicating that the library was assigned:&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;&amp;nbsp;NOTE: Libref MYDB was successfully assigned as follows:&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Engine:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MYSQL&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Physical Name: cp-dmz-wps&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Has anyone already experienced this issue of being able to connect to a MySQL server but not seeing the tables?&lt;/P&gt;&lt;P&gt;Any help would be greatly appreciated.&lt;/P&gt;</description>
      <pubDate>Mon, 01 Oct 2018 13:26:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-MySQL-connects-to-MySQL-server-db-but-I-cannot-see-the/m-p/500343#M133232</guid>
      <dc:creator>chipican</dc:creator>
      <dc:date>2018-10-01T13:26:13Z</dc:date>
    </item>
    <item>
      <title>Re: SAS/MySQL connects to MySQL server db, but I cannot see the tables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-MySQL-connects-to-MySQL-server-db-but-I-cannot-see-the/m-p/500495#M133304</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/237368"&gt;@chipican&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/237579"&gt;@oswin_fox&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Typically this is due to an issue with SCHEMA= not matching up but...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;MySQL has some quirks. Keep in mind, I am no MySQL expert but it seems odd that your ssh and terminal connection works while connecting from SAS does not.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It can also be a case where the USER= is slightly different.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Connect to your database using ssh and terminal. Run the following SQL commands:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;select user();&lt;BR /&gt;select current_user();&lt;BR /&gt;select database();&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Now do the same thing from SAS:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname mydb mysql SERVER='cp-dmz-wps' PORT=23074 DATABASE=ract_RAVE_XXXX_PROD
USER=ract PASSWORD=xxxxxxxxxxxxx
INSERTBUFF=100 DBMAX_TEXT=255 access=readonly;

proc sql;&lt;BR /&gt; 
   connect using mydb;&lt;BR /&gt; 
   select * from connection to mydb 
      (select user());
   select * from connection to mydb 
      (select current_user());
   select * from connection to mydb
      (select database());
quit;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;Hopefully, they don't match and that will help you solve the problem. Feel free to post the results to this thread and perhaps we can help you sort it out.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best wishes,&lt;/P&gt;
&lt;P&gt;Jeff&lt;/P&gt;</description>
      <pubDate>Tue, 02 Oct 2018 13:14:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-MySQL-connects-to-MySQL-server-db-but-I-cannot-see-the/m-p/500495#M133304</guid>
      <dc:creator>JBailey</dc:creator>
      <dc:date>2018-10-02T13:14:50Z</dc:date>
    </item>
    <item>
      <title>Re: SAS/MySQL connects to MySQL server db, but I cannot see the tables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-MySQL-connects-to-MySQL-server-db-but-I-cannot-see-the/m-p/500647#M133357</link>
      <description>&lt;P&gt;Hi &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/51161"&gt;@JBailey&lt;/a&gt; and &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/237368"&gt;@chipican&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried as you ask with ssh and in SAS.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;From ssh:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;mysql&amp;gt; select user();
+----------------+
| user()         |
+----------------+
| ract@localhost |
+----------------+
1 row in set (0.00 sec)

mysql&amp;gt; select current_user();
+----------------+
| current_user() |
+----------------+
| ract@localhost |
+----------------+
1 row in set (0.00 sec)

mysql&amp;gt; select database();
+------------------------------+
| database()                   |
+------------------------------+
|ract_RAVE_XXXX_PROD|
+------------------------------+&lt;/PRE&gt;&lt;P&gt;From SAS:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="Screenshot_2018-10-02_09-44-37.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/23689iF72FE4928D50BC4E/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot_2018-10-02_09-44-37.png" alt="Screenshot_2018-10-02_09-44-37.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As for SSH and SAS it use the user ract. Anything I am missing?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help would be greatly appreciated. Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Oct 2018 08:05:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-MySQL-connects-to-MySQL-server-db-but-I-cannot-see-the/m-p/500647#M133357</guid>
      <dc:creator>oswin_fox</dc:creator>
      <dc:date>2018-10-02T08:05:51Z</dc:date>
    </item>
    <item>
      <title>Re: SAS/MySQL connects to MySQL server db, but I cannot see the tables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-MySQL-connects-to-MySQL-server-db-but-I-cannot-see-the/m-p/500687#M133370</link>
      <description>&lt;P&gt;Add an option ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;SCHEMA=dbo&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Oct 2018 11:17:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-MySQL-connects-to-MySQL-server-db-but-I-cannot-see-the/m-p/500687#M133370</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2018-10-02T11:17:43Z</dc:date>
    </item>
    <item>
      <title>Re: SAS/MySQL connects to MySQL server db, but I cannot see the tables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-MySQL-connects-to-MySQL-server-db-but-I-cannot-see-the/m-p/500701#M133376</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/237579"&gt;@oswin_fox&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think we have a clue as to the problem. MySQL accounts can be tied to the location where the connection is coming from. This means that the LIBNAME statement isn't using the same credentials as SAS. You are able to connect from nnnnn@localhost but not from a remote connection nnnnn@some_IP_address.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Show this information to your DBA. Hopefully, they can grant access to the id coming from the SAS machine.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best wishes,&lt;/P&gt;
&lt;P&gt;Jeff&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Oct 2018 12:10:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-MySQL-connects-to-MySQL-server-db-but-I-cannot-see-the/m-p/500701#M133376</guid>
      <dc:creator>JBailey</dc:creator>
      <dc:date>2018-10-02T12:10:06Z</dc:date>
    </item>
    <item>
      <title>Re: SAS/MySQL connects to MySQL server db, but I cannot see the tables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-MySQL-connects-to-MySQL-server-db-but-I-cannot-see-the/m-p/500711#M133379</link>
      <description>&lt;P&gt;Hello &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/51161"&gt;@JBailey&lt;/a&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We checked the rights on MYSQL server:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;mysql&amp;gt; show grants for 'ract'@'%';
+--------------------------------------------------------------------------------------------------------------+
| Grants for ract@%                                                                                            |
+--------------------------------------------------------------------------------------------------------------+
| GRANT ALL PRIVILEGES ON *.* TO 'ract'@'%' IDENTIFIED BY PASSWORD '*XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX' |
+--------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)&lt;/PRE&gt;&lt;P&gt;the % mean any. The connection is working, because if we try to show all the tables we see them, the issue is that in the left &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/237368"&gt;@chipican&lt;/a&gt; cannot see the tables in the libraries menu, for example:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="Screenshot_2018-10-02_14-31-12.png" style="width: 578px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/23693i6A79AEB6DD1C1320/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot_2018-10-02_14-31-12.png" alt="Screenshot_2018-10-02_14-31-12.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So after use (for example) the code in SAS:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;libname mydb mysql SERVER='cp-dmz-wps' PORT=23074 DATABASE=ract_RAVE_XXXX_PROD
USER=ract PASSWORD=xxxxxxxxxxxxx
INSERTBUFF=100 DBMAX_TEXT=255 access=readonly;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;we expected to get in libraries -&amp;gt; mydb to see the tables...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp&lt;/a&gt;Can you please inform me about this option? &lt;SPAN&gt;SCHEMA=dbo &lt;/SPAN&gt;? Not familiar with SAS code.&lt;/P&gt;</description>
      <pubDate>Tue, 02 Oct 2018 12:38:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-MySQL-connects-to-MySQL-server-db-but-I-cannot-see-the/m-p/500711#M133379</guid>
      <dc:creator>oswin_fox</dc:creator>
      <dc:date>2018-10-02T12:38:36Z</dc:date>
    </item>
    <item>
      <title>Re: SAS/MySQL connects to MySQL server db, but I cannot see the tables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-MySQL-connects-to-MySQL-server-db-but-I-cannot-see-the/m-p/500724#M133383</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/237579"&gt;@oswin_fox&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For grins let's use this LIBNAME statement and see what happens.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname mydb mysql SERVER='cp-dmz-wps' PORT=23074 DATABASE=ract_RAVE_XXXX_PROD
USER=ract PASSWORD=xxxxxxxxxxxxx
INSERTBUFF=100 DBMAX_TEXT=255 access=readonly
dbconinit="set names utf8";&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;STRONG&gt;Update! DBCONINIT= turned out to be the solution here!&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;dbo is a schema that exists in Microsoft SQL Server. It won't play into MySQL. It is so very easy to look at MySQL and see MSSQL. I do it all the time. All the time.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp&lt;/a&gt;&amp;nbsp;is probably saying try setting the SCHEMA= option to something pertinent to your environment and is using dbo (Database Owner) as an example.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Are your table names case-sensitive? The following SAS code will show the SQL that SAS is sending to MySQL. It may be worth trying it to see what is going on.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options sastrace=',,,d' sastraceloc=saslog nostsuffix;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Another thing to try is connecting from the remote machine using a different program - for example: MySQL Workbench.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best wishes,&lt;/P&gt;
&lt;P&gt;Jeff&lt;/P&gt;</description>
      <pubDate>Tue, 02 Oct 2018 14:16:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-MySQL-connects-to-MySQL-server-db-but-I-cannot-see-the/m-p/500724#M133383</guid>
      <dc:creator>JBailey</dc:creator>
      <dc:date>2018-10-02T14:16:11Z</dc:date>
    </item>
    <item>
      <title>Re: SAS/MySQL connects to MySQL server db, but I cannot see the tables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-MySQL-connects-to-MySQL-server-db-but-I-cannot-see-the/m-p/500747#M133389</link>
      <description>&lt;P&gt;Hey &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/51161"&gt;@JBailey&lt;/a&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;this option was the solution:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;dbconinit="set names utf8";&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Thank you so much :-0 and thank you too for this debug option:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options sastrace=',,,d' sastraceloc=saslog nostsuffix;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Surly one I will use in the future for other SAS problem &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Oct 2018 14:09:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-MySQL-connects-to-MySQL-server-db-but-I-cannot-see-the/m-p/500747#M133389</guid>
      <dc:creator>oswin_fox</dc:creator>
      <dc:date>2018-10-02T14:09:17Z</dc:date>
    </item>
    <item>
      <title>Re: SAS/MySQL connects to MySQL server db, but I cannot see the tables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-MySQL-connects-to-MySQL-server-db-but-I-cannot-see-the/m-p/500749#M133390</link>
      <description>&lt;P&gt;Hey &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/51161"&gt;@JBailey&lt;/a&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;this option was the solution:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;dbconinit="set names utf8";&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;CODE class=" language-sas"&gt;&lt;/CODE&gt;Thank you so much :-0 and thank you too for this debug option:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;CODE class=" language-sas"&gt;&lt;/CODE&gt;&lt;/P&gt;&lt;PRE&gt;options sastrace=',,,d' sastraceloc=saslog nostsuffix;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Surly one I will use in the future for other SAS problem &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Oct 2018 14:10:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-MySQL-connects-to-MySQL-server-db-but-I-cannot-see-the/m-p/500749#M133390</guid>
      <dc:creator>oswin_fox</dc:creator>
      <dc:date>2018-10-02T14:10:51Z</dc:date>
    </item>
    <item>
      <title>Re: SAS/MySQL connects to MySQL server db, but I cannot see the tables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-MySQL-connects-to-MySQL-server-db-but-I-cannot-see-the/m-p/500753#M133391</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/237579"&gt;@oswin_fox&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/237368"&gt;@chipican&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This is great news! I may write a communities article on this. There is a lot of goodness in the thread...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/237368"&gt;@chipican&lt;/a&gt;, If you don't mind, can you make my response as the solution so that it will help others?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for the learning opportunity!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best wishes,&lt;/P&gt;
&lt;P&gt;Jef&lt;/P&gt;</description>
      <pubDate>Tue, 02 Oct 2018 14:13:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-MySQL-connects-to-MySQL-server-db-but-I-cannot-see-the/m-p/500753#M133391</guid>
      <dc:creator>JBailey</dc:creator>
      <dc:date>2018-10-02T14:13:28Z</dc:date>
    </item>
    <item>
      <title>Re: SAS/MySQL connects to MySQL server db, but I cannot see the tables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-MySQL-connects-to-MySQL-server-db-but-I-cannot-see-the/m-p/500932#M133480</link>
      <description>&lt;P&gt;Thank you very much all: &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp&lt;/a&gt; for your help, &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/51161"&gt;@JBailey&lt;/a&gt; for finding the final solution, and &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/237579"&gt;@oswin_fox&lt;/a&gt; for following up on this issue while I was off.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Have a nice day!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Oct 2018 19:54:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-MySQL-connects-to-MySQL-server-db-but-I-cannot-see-the/m-p/500932#M133480</guid>
      <dc:creator>chipican</dc:creator>
      <dc:date>2018-10-02T19:54:14Z</dc:date>
    </item>
  </channel>
</rss>

