<?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: LIBNAME SQLSVR with Personal Login Manager server info in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/LIBNAME-SQLSVR-with-Personal-Login-Manager-server-info/m-p/946613#M45357</link>
    <description>&lt;P&gt;Looks like your LIBNAME is using an AUTHDOMAIN to define the credentials to connect to SQL Server. Ask your SAS administrator to explain the setup. This is done in SAS metadata via SAS Management Console.&lt;/P&gt;</description>
    <pubDate>Mon, 07 Oct 2024 22:52:10 GMT</pubDate>
    <dc:creator>SASKiwi</dc:creator>
    <dc:date>2024-10-07T22:52:10Z</dc:date>
    <item>
      <title>LIBNAME SQLSVR with Personal Login Manager server info</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/LIBNAME-SQLSVR-with-Personal-Login-Manager-server-info/m-p/946119#M45322</link>
      <description>&lt;P&gt;team is using:&lt;/P&gt;
&lt;P&gt;SAS EG 8.2&lt;/P&gt;
&lt;P&gt;Personal Login Manager 9.4&lt;BR /&gt;I inherited this code, and it works on the old server.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Our server is updating in the next week, so I'm going through all our queries to make sure they are pointed to the correct new server.&amp;nbsp; (New server is live now, so we can connect. work is still being done in old server until final cutover and then new server will have the most current data.)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This query connects through a libname.&amp;nbsp;&lt;BR /&gt;LIBNAME COBSPROD SQLSVR authdomain=SQLSVR database=COBS SCHEMA=DBO;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It's been a while since I've had to set up a libname for sql server.&lt;/P&gt;
&lt;P&gt;I can't figure out how/where to check it's connected to the correct server.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Oct 2024 14:28:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/LIBNAME-SQLSVR-with-Personal-Login-Manager-server-info/m-p/946119#M45322</guid>
      <dc:creator>SVoldrich</dc:creator>
      <dc:date>2024-10-03T14:28:38Z</dc:date>
    </item>
    <item>
      <title>Re: LIBNAME SQLSVR with Personal Login Manager server info</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/LIBNAME-SQLSVR-with-Personal-Login-Manager-server-info/m-p/946428#M45343</link>
      <description>&lt;P&gt;You can extract information to validate what's there, like:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
  connect using COBSPROD;
  select * from connection to COBSPROD (select * from  sys.sysdatabases);
quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Extract the information that will make you confident you are using the correct server.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 05 Oct 2024 19:56:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/LIBNAME-SQLSVR-with-Personal-Login-Manager-server-info/m-p/946428#M45343</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2024-10-05T19:56:50Z</dc:date>
    </item>
    <item>
      <title>Re: LIBNAME SQLSVR with Personal Login Manager server info</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/LIBNAME-SQLSVR-with-Personal-Login-Manager-server-info/m-p/946429#M45344</link>
      <description>&lt;P&gt;You can also execute commands such as:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;execute by COBSPROD (drop table test_table1) ;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 05 Oct 2024 19:59:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/LIBNAME-SQLSVR-with-Personal-Login-Manager-server-info/m-p/946429#M45344</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2024-10-05T19:59:19Z</dc:date>
    </item>
    <item>
      <title>Re: LIBNAME SQLSVR with Personal Login Manager server info</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/LIBNAME-SQLSVR-with-Personal-Login-Manager-server-info/m-p/946508#M45349</link>
      <description>&lt;P&gt;Thanks.&lt;BR /&gt;Right now the old server is still up (we are confirming that things are working in the new server) so the 2 servers should be identical.&amp;nbsp;&lt;BR /&gt;Just trying to know how to know which server it's connected to.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;is it based on our ODBC connection?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Oct 2024 12:09:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/LIBNAME-SQLSVR-with-Personal-Login-Manager-server-info/m-p/946508#M45349</guid>
      <dc:creator>SVoldrich</dc:creator>
      <dc:date>2024-10-07T12:09:50Z</dc:date>
    </item>
    <item>
      <title>Re: LIBNAME SQLSVR with Personal Login Manager server info</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/LIBNAME-SQLSVR-with-Personal-Login-Manager-server-info/m-p/946513#M45350</link>
      <description>&lt;P&gt;Are you using ODBC? I'd expect a &lt;EM&gt;dsn&lt;/EM&gt; option in the &lt;EM&gt;libname&lt;/EM&gt; statement if you are.&lt;/P&gt;
&lt;P&gt;That ODBC manager's DSN entry would contain the ODBC connection parameters.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'd just create a test table on the new server and check that I can see it.&lt;/P&gt;</description>
      <pubDate>Mon, 07 Oct 2024 12:37:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/LIBNAME-SQLSVR-with-Personal-Login-Manager-server-info/m-p/946513#M45350</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2024-10-07T12:37:38Z</dc:date>
    </item>
    <item>
      <title>Re: LIBNAME SQLSVR with Personal Login Manager server info</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/LIBNAME-SQLSVR-with-Personal-Login-Manager-server-info/m-p/946539#M45351</link>
      <description>&lt;P&gt;I would echo ChrisNZ's suggestion and use ODBC.&amp;nbsp; In pretty much every MS/SAS consulting client, I would always encourage ODBC. It just works and is easier to configure.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;OleDB is similar but ODBC is more widely used. I don't believe I used the SQLSRVR engine and I did dozens of SAS/SQL Server engagements. IIRC, it was difficult to get setup with modern SQL Server engines due to security.&amp;nbsp; I am working off of memories so it certainly may have changed.&lt;/P&gt;</description>
      <pubDate>Mon, 07 Oct 2024 14:26:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/LIBNAME-SQLSVR-with-Personal-Login-Manager-server-info/m-p/946539#M45351</guid>
      <dc:creator>AlanC</dc:creator>
      <dc:date>2024-10-07T14:26:15Z</dc:date>
    </item>
    <item>
      <title>Re: LIBNAME SQLSVR with Personal Login Manager server info</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/LIBNAME-SQLSVR-with-Personal-Login-Manager-server-info/m-p/946613#M45357</link>
      <description>&lt;P&gt;Looks like your LIBNAME is using an AUTHDOMAIN to define the credentials to connect to SQL Server. Ask your SAS administrator to explain the setup. This is done in SAS metadata via SAS Management Console.&lt;/P&gt;</description>
      <pubDate>Mon, 07 Oct 2024 22:52:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/LIBNAME-SQLSVR-with-Personal-Login-Manager-server-info/m-p/946613#M45357</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2024-10-07T22:52:10Z</dc:date>
    </item>
    <item>
      <title>Re: LIBNAME SQLSVR with Personal Login Manager server info</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/LIBNAME-SQLSVR-with-Personal-Login-Manager-server-info/m-p/947396#M45406</link>
      <description>&lt;P&gt;Please select a reply as an answer if you answered your question.&lt;/P&gt;</description>
      <pubDate>Mon, 14 Oct 2024 15:53:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/LIBNAME-SQLSVR-with-Personal-Login-Manager-server-info/m-p/947396#M45406</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2024-10-14T15:53:38Z</dc:date>
    </item>
    <item>
      <title>Re: LIBNAME SQLSVR with Personal Login Manager server info</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/LIBNAME-SQLSVR-with-Personal-Login-Manager-server-info/m-p/947894#M45412</link>
      <description>&lt;P&gt;Hello&lt;BR /&gt;Your server appears to be connecting to the server defined by&lt;STRONG&gt; authdomain=SQLSVR .&lt;/STRONG&gt; Your SAS Admin should be able to provide the details.&lt;BR /&gt;You can try a direct libname statement to connect to the new server. This link has the details.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/acreldb/n0gz66qe8msnkyn1jgnhrr0l2k8y.htm" target="_blank"&gt;https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/acreldb/n0gz66qe8msnkyn1jgnhrr0l2k8y.htm&lt;/A&gt; &lt;/P&gt;</description>
      <pubDate>Thu, 17 Oct 2024 15:45:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/LIBNAME-SQLSVR-with-Personal-Login-Manager-server-info/m-p/947894#M45412</guid>
      <dc:creator>Sajid01</dc:creator>
      <dc:date>2024-10-17T15:45:24Z</dc:date>
    </item>
  </channel>
</rss>

