<?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 Lost write priveleges when upgraded to SAS EG 8.2 (ODBC Connect SQL database) in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Lost-write-priveleges-when-upgraded-to-SAS-EG-8-2-ODBC-Connect/m-p/677816#M36795</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have just upgraded from EG 8.1 to EG 8.2 when my connection to SQL database started to fuss. First, it does not load all tables, especially not the new once. Secondly, I lost the write/read and now I have just read access.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is the code I use to set up the connection.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;libname mydata odbc noprompt="driver=ODBC Driver 17 for SQL Server;&lt;BR /&gt;server=xxxxxxxxxx;&lt;BR /&gt;Trusted_Connection=Yes;&lt;BR /&gt;DATABASE=mydata;" read_lock_type=NOLOCK bcp=yes schema=dbo;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So, a lot of tables seems to be missing and I cant write to the database any longer.&lt;/P&gt;&lt;P&gt;Nota bene: With MS SQL Server Management studio I can see all tables and I can write to the database so it's nothing wrong there.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have googled a lot but can't find an answer to this problem.&lt;/P&gt;&lt;P&gt;Please help me out.&lt;/P&gt;&lt;P&gt;Best Regards Stefan Backlin&lt;/P&gt;</description>
    <pubDate>Wed, 19 Aug 2020 14:48:44 GMT</pubDate>
    <dc:creator>StefanBacklin</dc:creator>
    <dc:date>2020-08-19T14:48:44Z</dc:date>
    <item>
      <title>Lost write priveleges when upgraded to SAS EG 8.2 (ODBC Connect SQL database)</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Lost-write-priveleges-when-upgraded-to-SAS-EG-8-2-ODBC-Connect/m-p/677816#M36795</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have just upgraded from EG 8.1 to EG 8.2 when my connection to SQL database started to fuss. First, it does not load all tables, especially not the new once. Secondly, I lost the write/read and now I have just read access.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is the code I use to set up the connection.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;libname mydata odbc noprompt="driver=ODBC Driver 17 for SQL Server;&lt;BR /&gt;server=xxxxxxxxxx;&lt;BR /&gt;Trusted_Connection=Yes;&lt;BR /&gt;DATABASE=mydata;" read_lock_type=NOLOCK bcp=yes schema=dbo;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So, a lot of tables seems to be missing and I cant write to the database any longer.&lt;/P&gt;&lt;P&gt;Nota bene: With MS SQL Server Management studio I can see all tables and I can write to the database so it's nothing wrong there.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have googled a lot but can't find an answer to this problem.&lt;/P&gt;&lt;P&gt;Please help me out.&lt;/P&gt;&lt;P&gt;Best Regards Stefan Backlin&lt;/P&gt;</description>
      <pubDate>Wed, 19 Aug 2020 14:48:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Lost-write-priveleges-when-upgraded-to-SAS-EG-8-2-ODBC-Connect/m-p/677816#M36795</guid>
      <dc:creator>StefanBacklin</dc:creator>
      <dc:date>2020-08-19T14:48:44Z</dc:date>
    </item>
    <item>
      <title>Re: Lost write priveleges when upgraded to SAS EG 8.2 (ODBC Connect SQL database)</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Lost-write-priveleges-when-upgraded-to-SAS-EG-8-2-ODBC-Connect/m-p/677890#M36800</link>
      <description>&lt;P&gt;By "&lt;SPAN&gt;it does not load all tables&lt;/SPAN&gt;", do you mean the tables do not appear in the Servers pane or file open dialog in EG?&lt;/P&gt;
&lt;P&gt;If so, first I recommend running this code to make sure the tables you expect to see in that library are in fact in the library from the server's point-of-view:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
select * from sashelp.vtable
where libname eq "MYDATA";
quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;If all the tables you expect to see are in the results from running that code, then it may be a display issue in EG 8.2.&amp;nbsp; There were a couple bugs related to library and table population in the EG 8.2 Servers pane and file open dialog that were fixed in EG 8.2 Update 4.&amp;nbsp; If you don't already have 8.2 Update 4 (check in Help-&amp;gt;About), I *highly* recommend you install it.&amp;nbsp; (You can install the latest update via &lt;STRONG&gt;Help-&amp;gt;Check for updates&lt;/STRONG&gt; or the more traditional SAS Deployment Manager method by downloading and install the update here:&amp;nbsp;&lt;A href="http://ftp.sas.com/techsup/download/hotfix/HF2/G5J.html" target="_blank"&gt;http://ftp.sas.com/techsup/download/hotfix/HF2/G5J.html&lt;/A&gt;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Casey&lt;/P&gt;</description>
      <pubDate>Wed, 19 Aug 2020 19:43:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Lost-write-priveleges-when-upgraded-to-SAS-EG-8-2-ODBC-Connect/m-p/677890#M36800</guid>
      <dc:creator>CaseySmith</dc:creator>
      <dc:date>2020-08-19T19:43:38Z</dc:date>
    </item>
    <item>
      <title>Re: Lost write priveleges when upgraded to SAS EG 8.2 (ODBC Connect SQL database)</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Lost-write-priveleges-when-upgraded-to-SAS-EG-8-2-ODBC-Connect/m-p/678014#M36811</link>
      <description>Thank you for reaching out.&lt;BR /&gt;&lt;BR /&gt;I liked that snippet of code you sent. Unfortunately, the same tables are also "missing" in sashelp.vtable. The funny part is that tables created after April are missing, it seems so anyway.&lt;BR /&gt;EG 8.2 update 4 is installed.&lt;BR /&gt;&lt;BR /&gt;My fellow colleague has the same installation, run the same code to connect via odbc to SQL server and he can read and write and has access to all table in the library "MYDATA". Strange&lt;BR /&gt;</description>
      <pubDate>Thu, 20 Aug 2020 09:25:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Lost-write-priveleges-when-upgraded-to-SAS-EG-8-2-ODBC-Connect/m-p/678014#M36811</guid>
      <dc:creator>StefanBacklin</dc:creator>
      <dc:date>2020-08-20T09:25:58Z</dc:date>
    </item>
    <item>
      <title>Re: Lost write priveleges when upgraded to SAS EG 8.2 (ODBC Connect SQL database)</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Lost-write-priveleges-when-upgraded-to-SAS-EG-8-2-ODBC-Connect/m-p/678278#M36824</link>
      <description>&lt;P&gt;Get your colleague to log in on your computer and repeat the same test. If that fixes the problem then the issue is user-related and nothing to do with SAS or EG.&lt;/P&gt;
&lt;P&gt;Alternatively ask to log on to your colleague's computer and if you still have the same problem then it is definitely user-related - check with your SQL Server DBA.&lt;/P&gt;</description>
      <pubDate>Thu, 20 Aug 2020 21:39:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Lost-write-priveleges-when-upgraded-to-SAS-EG-8-2-ODBC-Connect/m-p/678278#M36824</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2020-08-20T21:39:44Z</dc:date>
    </item>
    <item>
      <title>Re: Lost write priveleges when upgraded to SAS EG 8.2 (ODBC Connect SQL database)</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Lost-write-priveleges-when-upgraded-to-SAS-EG-8-2-ODBC-Connect/m-p/678559#M36829</link>
      <description>&lt;P&gt;I agree, it sounds related to the user-permissions set in your DBMS, unrelated to SAS or EG.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Casey&lt;/P&gt;</description>
      <pubDate>Fri, 21 Aug 2020 19:26:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Lost-write-priveleges-when-upgraded-to-SAS-EG-8-2-ODBC-Connect/m-p/678559#M36829</guid>
      <dc:creator>CaseySmith</dc:creator>
      <dc:date>2020-08-21T19:26:11Z</dc:date>
    </item>
  </channel>
</rss>

