<?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: ERROR on Resetting Credentials on Imported SecuredLibrary Objects in Administration and Deployment</title>
    <link>https://communities.sas.com/t5/Administration-and-Deployment/ERROR-on-Resetting-Credentials-on-Imported-SecuredLibrary/m-p/967781#M30015</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've had similar issues in the past. If the tables are encrypted try:&lt;/P&gt;&lt;P&gt;libname test "/sas/data/test" authadmin=yes;&lt;/P&gt;&lt;P&gt;proc authlib lib=test;&lt;BR /&gt;&amp;nbsp; modify&lt;BR /&gt;&amp;nbsp; &amp;nbsp; pw=secret&lt;BR /&gt;&amp;nbsp; &amp;nbsp; require_encryption=yes&lt;BR /&gt;&amp;nbsp; &amp;nbsp;encrypt=aes&lt;BR /&gt;&amp;nbsp; &amp;nbsp;encryptkey=KEY;&lt;BR /&gt;run;&lt;BR /&gt;quit;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You might want to play around with the options. Also recommend deleting the entries from metadata and reimporting before. FYI SMC just runs the same code in the backgound so will give the same outcome.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 30 May 2025 13:17:10 GMT</pubDate>
    <dc:creator>Steve_Huggins</dc:creator>
    <dc:date>2025-05-30T13:17:10Z</dc:date>
    <item>
      <title>ERROR on Resetting Credentials on Imported SecuredLibrary Objects</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/ERROR-on-Resetting-Credentials-on-Imported-SecuredLibrary/m-p/967774#M30014</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;We just upgraded environment so we imported some metabound libs from old to new env.&lt;/P&gt;
&lt;P&gt;I tried to reset/modify the metadata bound lib password but I am getting ERROR/warning. I followed below link. am i missing anything?&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/proc/n0v3rcwp7bnkbyn1hpm9sprxfdpi.htm#:~:text=Use%20the%20MODIFY%20statement%20to,resets%20the%20encryption%20key%20value" target="_blank" rel="noopener"&gt;https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/proc/n0v3rcwp7bnkbyn1hpm9sprxfdpi.htm#:~:text=Use%20the%20MODIFY%20statement%20to,resets%20the%20encryption%20key%20value&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;step 1 .&lt;/P&gt;
&lt;PRE&gt;libname test "/sas/data/test" ;&lt;BR /&gt;ERROR: The secured library object information for the library test could not be obtained from the metadata server or has invalid data.&lt;BR /&gt;ERROR: There are no password associations for the secured library object. Perhaps the secured library object is newly imported. The Administrator must use the Authlib procedure to reset the passwords.&lt;BR /&gt;ERROR: Error in the LIBNAME statement.&lt;/PRE&gt;
&lt;P&gt;Step 2:&lt;/P&gt;
&lt;PRE&gt;libname test "/sas/data/test" authadmin=yes;
Note:Metadata permissions are not enabled.
WARNING: The secured library object information for library test could not be obtained  from the metadata server or has invalid data.&lt;BR /&gt;WARNING: There are no password associations for the secured library object. Perhaps the secured library object is newly imported. The Administrator must use the Authlib procedure to reset the passwords.&lt;BR /&gt;Note: Libref test was successfully assigned as follow:&lt;BR /&gt;Engine: V9&lt;BR /&gt;Physical path: /sas/data/test&lt;BR /&gt;secured Library: /System/Secured Libraries/test/test&lt;/PRE&gt;
&lt;P&gt;Step 3:&lt;/P&gt;
&lt;PRE&gt;proc authlib lib=test;
    modify  
        pw=secret 
        encrypt=aes ;
run;
quit;

Note: PROCEDURE AUTHLIB used (Total process time):
real time 0.02 seconds&lt;/PRE&gt;
&lt;P&gt;Step 4; run the lib statement again getting the below ERROR same as step1&lt;/P&gt;
&lt;PRE&gt;libname test "/sas/data/test" ;
ERROR: The secured library object information for the library test could not be obtained from the metadata server or has invalid data.
ERROR: There are no password associations for the secured library object. Perhaps the secured library object is newly imported. The Administrator must use the Authlib procedure to reset the passwords.
ERROR: Error in the LIBNAME statement.&lt;/PRE&gt;
&lt;P&gt;I tried to modify the password from SMC but getting the same ERROR as above&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 30 May 2025 12:28:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/ERROR-on-Resetting-Credentials-on-Imported-SecuredLibrary/m-p/967774#M30014</guid>
      <dc:creator>sathya66</dc:creator>
      <dc:date>2025-05-30T12:28:57Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR on Resetting Credentials on Imported SecuredLibrary Objects</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/ERROR-on-Resetting-Credentials-on-Imported-SecuredLibrary/m-p/967781#M30015</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've had similar issues in the past. If the tables are encrypted try:&lt;/P&gt;&lt;P&gt;libname test "/sas/data/test" authadmin=yes;&lt;/P&gt;&lt;P&gt;proc authlib lib=test;&lt;BR /&gt;&amp;nbsp; modify&lt;BR /&gt;&amp;nbsp; &amp;nbsp; pw=secret&lt;BR /&gt;&amp;nbsp; &amp;nbsp; require_encryption=yes&lt;BR /&gt;&amp;nbsp; &amp;nbsp;encrypt=aes&lt;BR /&gt;&amp;nbsp; &amp;nbsp;encryptkey=KEY;&lt;BR /&gt;run;&lt;BR /&gt;quit;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You might want to play around with the options. Also recommend deleting the entries from metadata and reimporting before. FYI SMC just runs the same code in the backgound so will give the same outcome.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 30 May 2025 13:17:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/ERROR-on-Resetting-Credentials-on-Imported-SecuredLibrary/m-p/967781#M30015</guid>
      <dc:creator>Steve_Huggins</dc:creator>
      <dc:date>2025-05-30T13:17:10Z</dc:date>
    </item>
  </channel>
</rss>

