<?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: Can't see the dataset after Libname OLEDB? in SAS Data Management</title>
    <link>https://communities.sas.com/t5/SAS-Data-Management/Can-t-see-the-dataset-after-Libname-OLEDB/m-p/505674#M15694</link>
    <description>&lt;P&gt;Run this bit of code:&lt;/P&gt;
&lt;PRE&gt;proc options option=validmemname;
run;&lt;/PRE&gt;
&lt;P&gt;If the log does not show something like&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt; VALIDMEMNAME=EXTEND&lt;/PRE&gt;
&lt;P&gt;Then you need to set the validmemname option to extend:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;options validmemname=EXTEND;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;to allow non-standard dataset names.&lt;/P&gt;
&lt;P&gt;Check the documentation on the option for details on restrictions to special characters and such.&lt;/P&gt;</description>
    <pubDate>Thu, 18 Oct 2018 17:55:16 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2018-10-18T17:55:16Z</dc:date>
    <item>
      <title>Can't see the dataset after Libname OLEDB?</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Can-t-see-the-dataset-after-Libname-OLEDB/m-p/505594#M15692</link>
      <description>&lt;P&gt;Hello:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I ran the follow codes below.&amp;nbsp; I found out that I can't open the table "18RSV" in the library RSV properly with error message after running the codes.&amp;nbsp;&amp;nbsp; Please see the details below.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;Libname RSV OLEDB 
		provider="sqloledb" 
		properties=("Data Source"="Inquire/2018"
					"Persist Security Info"="True" 
					"User ID"="test" 
					"Password"="&amp;amp;pin" 
					"Initial Catalog"="RSV")
		schema=dbo;

PROC CONTENTS DATA=RSV."18RSV"n OUT=RSV18 NOPRINT;RUN;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So the error message is shown that The table RSV."18RSV"n either does not exist or cannot be displayed.&amp;nbsp;&amp;nbsp; However, I checked the RSV18 table is existed.&amp;nbsp;&amp;nbsp; In addition, I found all of the variables&amp;nbsp;properties&amp;nbsp;in "18RSV" are shown after right clicking the "View Columns".&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I found out the RSV is in OLEDB engine instead of V9.&amp;nbsp;&amp;nbsp; I am not sure whether it cause the problem.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I tried pull the data from RSV to work library, the table doesn't work.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data work.RSV18;
	set RSV."18RSV"n; 
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;Please advise how to fix it, thanks.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Oct 2018 14:51:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Can-t-see-the-dataset-after-Libname-OLEDB/m-p/505594#M15692</guid>
      <dc:creator>ybz12003</dc:creator>
      <dc:date>2018-10-18T14:51:45Z</dc:date>
    </item>
    <item>
      <title>Re: Can't see the dataset after Libname OLEDB?</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Can-t-see-the-dataset-after-Libname-OLEDB/m-p/505674#M15694</link>
      <description>&lt;P&gt;Run this bit of code:&lt;/P&gt;
&lt;PRE&gt;proc options option=validmemname;
run;&lt;/PRE&gt;
&lt;P&gt;If the log does not show something like&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt; VALIDMEMNAME=EXTEND&lt;/PRE&gt;
&lt;P&gt;Then you need to set the validmemname option to extend:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;options validmemname=EXTEND;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;to allow non-standard dataset names.&lt;/P&gt;
&lt;P&gt;Check the documentation on the option for details on restrictions to special characters and such.&lt;/P&gt;</description>
      <pubDate>Thu, 18 Oct 2018 17:55:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Can-t-see-the-dataset-after-Libname-OLEDB/m-p/505674#M15694</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-10-18T17:55:16Z</dc:date>
    </item>
    <item>
      <title>Re: Can't see the dataset after Libname OLEDB?</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Can-t-see-the-dataset-after-Libname-OLEDB/m-p/505913#M15700</link>
      <description>&lt;P&gt;So I run the proc option after libname OLEDB, the log window show notes below.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;9 LIBNAME&amp;nbsp;RSV OLEDB&lt;/P&gt;
&lt;P&gt;10 provider="sqloledb"&lt;/P&gt;
&lt;P&gt;11 properties=("Data Source"="Inquire\2018"&lt;/P&gt;
&lt;P&gt;12 "Persist Security Info"="True"&lt;/P&gt;
&lt;P&gt;13 XXXXXXXXX=XXXXXXX&lt;/P&gt;
&lt;P&gt;14 XXXXXXXXXX="&amp;amp;pin"&lt;/P&gt;
&lt;P&gt;15 X XXXXXXXXXXXXXXXXX=XXXXXX)&lt;/P&gt;
&lt;P&gt;16 schema=dbo;&lt;/P&gt;
&lt;P&gt;NOTE: Libref&amp;nbsp;RSV was successfully assigned as follows:&lt;/P&gt;
&lt;P&gt;Engine: OLEDB&lt;/P&gt;
&lt;P&gt;Physical Name: sqloledb&lt;/P&gt;
&lt;P&gt;17 proc options option=validmemname;&lt;/P&gt;
&lt;P&gt;18 run;&lt;/P&gt;
&lt;P&gt;SAS (r) Proprietary Software Release 9.4 TS1M3&lt;/P&gt;
&lt;P&gt;VALIDMEMNAME=COMPAT&lt;/P&gt;
&lt;P&gt;Specifies the rules for naming SAS data sets, SAS data views, and item stores.&lt;/P&gt;
&lt;P&gt;NOTE: PROCEDURE OPTIONS used (Total process time):&lt;/P&gt;
&lt;P&gt;real time 0.03 seconds&lt;/P&gt;
&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Oct 2018 15:25:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Can-t-see-the-dataset-after-Libname-OLEDB/m-p/505913#M15700</guid>
      <dc:creator>ybz12003</dc:creator>
      <dc:date>2018-10-19T15:25:53Z</dc:date>
    </item>
    <item>
      <title>Re: Can't see the dataset after Libname OLEDB?</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Can-t-see-the-dataset-after-Libname-OLEDB/m-p/506179#M15704</link>
      <description>&lt;P&gt;Are you using Enterprise Guide? If so expand the RSV library listed in the Server List window. Do you see any table names?&lt;/P&gt;</description>
      <pubDate>Fri, 19 Oct 2018 22:10:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Can-t-see-the-dataset-after-Libname-OLEDB/m-p/506179#M15704</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2018-10-19T22:10:07Z</dc:date>
    </item>
  </channel>
</rss>

