<?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: Connection to MSSQL returns tablename with spaces between each letter in Administration and Deployment</title>
    <link>https://communities.sas.com/t5/Administration-and-Deployment/Connection-to-MSSQL-returns-tablename-with-spaces-between-each/m-p/715619#M21371</link>
    <description>Then you need specify a SCHEMA in libname statement.&lt;BR /&gt;&lt;BR /&gt;libname x odbc ...........  schema=xxxx ;&lt;BR /&gt;&lt;BR /&gt;Or using the following to get schema and table name.&lt;BR /&gt;&lt;BR /&gt;proc sql;&lt;BR /&gt;connect to odbc(dsn=xx user=xx passwrod=xx) ;&lt;BR /&gt;select *&lt;BR /&gt; from connection to odbc(ODBC:SQLTables);&lt;BR /&gt;quit;</description>
    <pubDate>Sun, 31 Jan 2021 11:08:49 GMT</pubDate>
    <dc:creator>Ksharp</dc:creator>
    <dc:date>2021-01-31T11:08:49Z</dc:date>
    <item>
      <title>Connection to MSSQL returns tablename with spaces between each letter</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Connection-to-MSSQL-returns-tablename-with-spaces-between-each/m-p/715214#M21348</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I connect to a MSSQL Server 2016 using ODBC Driver 13.1 for SQL Server on RHEL7.&lt;BR /&gt;Connection works but return the tablename with spaces between any letter.&lt;BR /&gt;&lt;BR /&gt;In the odbc.ini are definied:&lt;BR /&gt;Driver&lt;BR /&gt;Server&lt;BR /&gt;Database&lt;BR /&gt;AutoTranslate=Yes&lt;BR /&gt;AnsiNPW=Yes&lt;BR /&gt;DriverUnicodeType=1&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Register Table returns like this - using the Windows 10 odbcad32 returns the correct table name with the same driver. So seems to be a problem that is Linux or SAS-Server relatet.&amp;nbsp;&lt;/P&gt;
&lt;DIV id="tinyMceEditorDanielKaiser_0" class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV id="tinyMceEditorDanielKaiser_1" class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2021-01-29_10h40_27.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/54064iD5FFA2E8A2F0E428/image-size/medium?v=v2&amp;amp;px=400" role="button" title="2021-01-29_10h40_27.png" alt="2021-01-29_10h40_27.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 29 Jan 2021 09:42:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Connection-to-MSSQL-returns-tablename-with-spaces-between-each/m-p/715214#M21348</guid>
      <dc:creator>DanielKaiser</dc:creator>
      <dc:date>2021-01-29T09:42:44Z</dc:date>
    </item>
    <item>
      <title>Re: Connection to MSSQL returns tablename with spaces between each letter</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Connection-to-MSSQL-returns-tablename-with-spaces-between-each/m-p/715224#M21349</link>
      <description>Use the following code to check table name ?&lt;BR /&gt;&lt;BR /&gt;options validmemname=extend ;&lt;BR /&gt;libname x odbc  ...........  ;  /* preserve_col_name=yes; */&lt;BR /&gt;proc sql;&lt;BR /&gt;select memname &lt;BR /&gt; from dictionary.tables&lt;BR /&gt; where libname='X';&lt;BR /&gt;quit;&lt;BR /&gt;</description>
      <pubDate>Fri, 29 Jan 2021 11:15:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Connection-to-MSSQL-returns-tablename-with-spaces-between-each/m-p/715224#M21349</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2021-01-29T11:15:59Z</dc:date>
    </item>
    <item>
      <title>Re: Connection to MSSQL returns tablename with spaces between each letter</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Connection-to-MSSQL-returns-tablename-with-spaces-between-each/m-p/715233#M21350</link>
      <description>&lt;P&gt;Results in this pretty long error message and&amp;nbsp;&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-inline" image-alt="2021-01-29_13h04_02.png" style="width: 1637px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/54067i411D2352DA3051C0/image-dimensions/1637x58?v=v2" width="1637" height="58" role="button" title="2021-01-29_13h04_02.png" alt="2021-01-29_13h04_02.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And Log says "No rows were selected". The library also does not show any tables&lt;/P&gt;</description>
      <pubDate>Fri, 29 Jan 2021 12:06:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Connection-to-MSSQL-returns-tablename-with-spaces-between-each/m-p/715233#M21350</guid>
      <dc:creator>DanielKaiser</dc:creator>
      <dc:date>2021-01-29T12:06:01Z</dc:date>
    </item>
    <item>
      <title>Re: Connection to MSSQL returns tablename with spaces between each letter</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Connection-to-MSSQL-returns-tablename-with-spaces-between-each/m-p/715242#M21351</link>
      <description>Can you show your code and full log ?</description>
      <pubDate>Fri, 29 Jan 2021 12:34:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Connection-to-MSSQL-returns-tablename-with-spaces-between-each/m-p/715242#M21351</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2021-01-29T12:34:59Z</dc:date>
    </item>
    <item>
      <title>Re: Connection to MSSQL returns tablename with spaces between each letter</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Connection-to-MSSQL-returns-tablename-with-spaces-between-each/m-p/715244#M21352</link>
      <description>&lt;P&gt;Sure&lt;/P&gt;
&lt;LI-SPOILER&gt;&lt;BR /&gt;
&lt;PRE&gt;1                                                          Das SAS System                          Freitag, 29. Januar 2021 10:15:00

1          ;*';*";*/;quit;run;
2          OPTIONS PAGENO=MIN;
3          %LET _CLIENTTASKLABEL='Programm';
4          %LET _CLIENTPROCESSFLOWNAME='Standalone Not In Project';
5          %LET _CLIENTPROJECTPATH='';
6          %LET _CLIENTPROJECTPATHHOST='';
7          %LET _CLIENTPROJECTNAME='';
8          %LET _SASPROGRAMFILE='';
9          %LET _SASPROGRAMFILEHOST='';
10         
11         ODS _ALL_ CLOSE;
12         OPTIONS DEV=SVG;
13         GOPTIONS XPIXELS=0 YPIXELS=0;
14         %macro HTML5AccessibleGraphSupported;
15             %if %_SAS_VERCOMP_FV(9,4,4, 0,0,0) &amp;gt;= 0 %then ACCESSIBLE_GRAPH;
16         %mend;
17         FILENAME EGHTML TEMP;
18         ODS HTML5(ID=EGHTML) FILE=EGHTML
19             OPTIONS(BITMAP_MODE='INLINE')
20             %HTML5AccessibleGraphSupported
21             ENCODING='utf-8'
22             STYLE=HtmlBlue
23             NOGTITLE
24             NOGFOOTNOTE
25             GPATH=&amp;amp;sasworklocation
26         ;
NOTE: Writing HTML5(EGHTML) Body file: EGHTML
27         
28         options validmemname=extend;
29         LIBNAME ebox2 ODBC DS=H25_EBOX USER=IT25_TATMHIST_XXXX PASSWORD=XXXXXXXXXXXXXXXXXXXXXXX;
NOTE: Libref EBOX2 was successfully assigned as follows: 
      Engine:        ODBC 
      Physical Name: H25_EBOX
30         proc sql;
31         select memname
32         from dictionary.tables where libname='ebox2';
NOTE: No rows were selected.
33         quit;
NOTE:  Verwendet wurde: PROZEDUR SQL - (Gesamtverarbeitungszeit):
      real time           0.00 seconds
      cpu time            0.00 seconds
      

34         
35         
36         %LET _CLIENTTASKLABEL=;
37         %LET _CLIENTPROCESSFLOWNAME=;
38         %LET _CLIENTPROJECTPATH=;
39         %LET _CLIENTPROJECTPATHHOST=;
40         %LET _CLIENTPROJECTNAME=;
41         %LET _SASPROGRAMFILE=;
42         %LET _SASPROGRAMFILEHOST=;
43         
44         ;*';*";*/;quit;run;
45         ODS _ALL_ CLOSE;
46         
47         
48         QUIT; RUN;
2                                                          Das SAS System                          Freitag, 29. Januar 2021 10:15:00

49         
&lt;/PRE&gt;
&lt;/LI-SPOILER&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;options validmemname=extend;
LIBNAME ebox2 ODBC DS=H25_EBOX USER=IT25_TATMHIST_XXXXX  PASSWORD="XXXXXXXXXX";
proc sql;
select memname
from dictionary.tables where libname='ebox2';
quit;
&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This is the configuration in odbc.ini&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;[H25_EBOX]
Driver=/opt/microsoft/msodbcsql/lib64/libmsodbcsql-13.1.so.9.2
DriverUnicodeType=1
Server=vdb01234,1234
Database=IT25_TATMHIST
AutoTranslate=no
AnsiNPW=yes
&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 29 Jan 2021 12:45:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Connection-to-MSSQL-returns-tablename-with-spaces-between-each/m-p/715244#M21352</guid>
      <dc:creator>DanielKaiser</dc:creator>
      <dc:date>2021-01-29T12:45:55Z</dc:date>
    </item>
    <item>
      <title>Re: Connection to MSSQL returns tablename with spaces between each letter</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Connection-to-MSSQL-returns-tablename-with-spaces-between-each/m-p/715245#M21353</link>
      <description>Library names in SAS must be specified in uppercase. That's why you don't get any results.</description>
      <pubDate>Fri, 29 Jan 2021 12:47:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Connection-to-MSSQL-returns-tablename-with-spaces-between-each/m-p/715245#M21353</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2021-01-29T12:47:41Z</dc:date>
    </item>
    <item>
      <title>Re: Connection to MSSQL returns tablename with spaces between each letter</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Connection-to-MSSQL-returns-tablename-with-spaces-between-each/m-p/715246#M21354</link>
      <description>Didn't know that - but just tried it, does not change anything. The error keeps to be the transcode problem between utf-16le and utf-8</description>
      <pubDate>Fri, 29 Jan 2021 12:50:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Connection-to-MSSQL-returns-tablename-with-spaces-between-each/m-p/715246#M21354</guid>
      <dc:creator>DanielKaiser</dc:creator>
      <dc:date>2021-01-29T12:50:12Z</dc:date>
    </item>
    <item>
      <title>Re: Connection to MSSQL returns tablename with spaces between each letter</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Connection-to-MSSQL-returns-tablename-with-spaces-between-each/m-p/715249#M21355</link>
      <description>&lt;P&gt;Look if this post is helpful:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://communities.sas.com/t5/SAS-Enterprise-Guide/Encoding-Issue-UTF8-to-UTF-16-le/m-p/383475/highlight/true#M24720" target="_blank" rel="noopener"&gt;https://communities.sas.com/t5/SAS-Enterprise-Guide/Encoding-Issue-UTF8-to-UTF-16-le/m-p/383475/highlight/true#M24720&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 29 Jan 2021 12:52:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Connection-to-MSSQL-returns-tablename-with-spaces-between-each/m-p/715249#M21355</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2021-01-29T12:52:54Z</dc:date>
    </item>
    <item>
      <title>Re: Connection to MSSQL returns tablename with spaces between each letter</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Connection-to-MSSQL-returns-tablename-with-spaces-between-each/m-p/715251#M21356</link>
      <description>&lt;P&gt;It is utf-8 encoded.&amp;nbsp;&lt;BR /&gt;Problem occurs against local server and remote&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;LI-SPOILER&gt;
&lt;PRE&gt;Group=LANGUAGECONTROL
DATESTYLE=DMY     Specifies the sequence of month, day, and year when ANYDTDTE, ANYDTDTM, or ANYDTTME informat data is ambiguous.
DFLANG=GERMAN     Specifies the language for international date informats and formats.
DSCAS             Runs the DATA step on the CAS server.
EXTENDOBSCOUNTER=YES
                   Specifies whether to extend the maximum number of observations in a new SAS data file.
LOCALEDATA=SASLOCALE
                   Specifies the location of the locale database.
LOGLANGCHG        Enables changing the language of the SAS log when the LOCALE= option is changed.
NOLOGLANGENG      Write SAS log messages based on the values of the LOGLANGCHG, LSWLANG=, and LOCALE= options when SAS started.
LSWLANG=LOCALE    Specifies the language for SAS log and ODS messages when the LOCALE= option is set after SAS starts.
MAPEBCDICTOASCII= Specifies the transcoding table that is used to convert characters from ASCII to EBCDIC and EBCDIC to ASCII.
NONLDECSEPARATOR  Disables formatting of numeric output using the decimal separator for the locale.
ODSLANGCHG        Enables the language of the SAS message text in ODS output to change when the LOCALE option is set after start 
                   up.
PAPERSIZE=A4      Specifies the paper size to use for printing.
RSASIOTRANSERROR  Displays a transcoding error when illegal values are read from a remote application.
TIMEZONE="GMT+01:00"
                   Specifies a time zone.
TRANTAB=          Specifies the translation table catalog entries.
URLENCODING=SESSION
                   Specifies whether the argument to the URLENCODE function and to the URLDECODE function is interpreted using the 
                   SAS session encoding or UTF-8 encoding.
DBCS              Enables double-byte character sets for encoding values that support East Asian languages.
2                                                          Das SAS System                          Freitag, 29. Januar 2021 10:15:00

DBCSLANG=UNKNOWN  Specifies a double-byte character set language.
DBCSTYPE=UTF8     Specifies the encoding method that is used for a double-byte character set.
FSDBTYPE=DEFAULT  Specifies a full-screen double-byte character set (DBCS) encoding method.
FSIMM=            Specifies input method modules (IMMs) for full-screen double-byte character sets (DBCS).
FSIMMOPT=         Specifies options for input method modules (IMMs) that are used with a full-screen double-byte character set 
                   (DBCS).
ENCODING=UTF-8    Specifies the default character-set encoding for the SAS session.
LOCALE=DE_DE      Specifies a set of attributes in a SAS session that reflect the language, local conventions, and culture for a 
                   geographical region.
NONLSCOMPATMODE   Encodes data using the SAS session encoding.
&lt;/PRE&gt;
&lt;/LI-SPOILER&gt;</description>
      <pubDate>Fri, 29 Jan 2021 12:58:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Connection-to-MSSQL-returns-tablename-with-spaces-between-each/m-p/715251#M21356</guid>
      <dc:creator>DanielKaiser</dc:creator>
      <dc:date>2021-01-29T12:58:58Z</dc:date>
    </item>
    <item>
      <title>Re: Connection to MSSQL returns tablename with spaces between each letter</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Connection-to-MSSQL-returns-tablename-with-spaces-between-each/m-p/715253#M21357</link>
      <description>Or could try create a table ?&lt;BR /&gt;&lt;BR /&gt;proc sql;&lt;BR /&gt;create table want as&lt;BR /&gt;select memname&lt;BR /&gt;from dictionary.tables where libname='EBOX2';&lt;BR /&gt;quit;</description>
      <pubDate>Fri, 29 Jan 2021 13:00:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Connection-to-MSSQL-returns-tablename-with-spaces-between-each/m-p/715253#M21357</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2021-01-29T13:00:43Z</dc:date>
    </item>
    <item>
      <title>Re: Connection to MSSQL returns tablename with spaces between each letter</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Connection-to-MSSQL-returns-tablename-with-spaces-between-each/m-p/715254#M21358</link>
      <description>It's a readonly database, so I guess, this will not work, right?</description>
      <pubDate>Fri, 29 Jan 2021 13:02:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Connection-to-MSSQL-returns-tablename-with-spaces-between-each/m-p/715254#M21358</guid>
      <dc:creator>DanielKaiser</dc:creator>
      <dc:date>2021-01-29T13:02:52Z</dc:date>
    </item>
    <item>
      <title>Re: Connection to MSSQL returns tablename with spaces between each letter</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Connection-to-MSSQL-returns-tablename-with-spaces-between-each/m-p/715257#M21359</link>
      <description>No. the table WANT created at your side , in WORK library .&lt;BR /&gt;You can check it by double click .</description>
      <pubDate>Fri, 29 Jan 2021 13:06:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Connection-to-MSSQL-returns-tablename-with-spaces-between-each/m-p/715257#M21359</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2021-01-29T13:06:42Z</dc:date>
    </item>
    <item>
      <title>Re: Connection to MSSQL returns tablename with spaces between each letter</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Connection-to-MSSQL-returns-tablename-with-spaces-between-each/m-p/715267#M21360</link>
      <description>Hm. Created with 0 Rows &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;</description>
      <pubDate>Fri, 29 Jan 2021 13:31:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Connection-to-MSSQL-returns-tablename-with-spaces-between-each/m-p/715267#M21360</guid>
      <dc:creator>DanielKaiser</dc:creator>
      <dc:date>2021-01-29T13:31:01Z</dc:date>
    </item>
    <item>
      <title>Re: Connection to MSSQL returns tablename with spaces between each letter</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Connection-to-MSSQL-returns-tablename-with-spaces-between-each/m-p/715526#M21362</link>
      <description>Double click library "EBOX2" and check if there are tables in it .</description>
      <pubDate>Sat, 30 Jan 2021 10:51:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Connection-to-MSSQL-returns-tablename-with-spaces-between-each/m-p/715526#M21362</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2021-01-30T10:51:00Z</dc:date>
    </item>
    <item>
      <title>Re: Connection to MSSQL returns tablename with spaces between each letter</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Connection-to-MSSQL-returns-tablename-with-spaces-between-each/m-p/715577#M21363</link>
      <description>&lt;P&gt;Sounds like your ODBC driver or your SQL Server instance is configured to use double byte encoding. So UTF16.&amp;nbsp; And nothing is transcoding the names so the two bytes needed to store a 16bit code are appearing to your SAS code like two separate characters.&amp;nbsp; You might be able to fix this with ODBC settings?&lt;/P&gt;</description>
      <pubDate>Sat, 30 Jan 2021 18:33:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Connection-to-MSSQL-returns-tablename-with-spaces-between-each/m-p/715577#M21363</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2021-01-30T18:33:51Z</dc:date>
    </item>
    <item>
      <title>Re: Connection to MSSQL returns tablename with spaces between each letter</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Connection-to-MSSQL-returns-tablename-with-spaces-between-each/m-p/715579#M21364</link>
      <description>No, no tables</description>
      <pubDate>Sat, 30 Jan 2021 19:47:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Connection-to-MSSQL-returns-tablename-with-spaces-between-each/m-p/715579#M21364</guid>
      <dc:creator>DanielKaiser</dc:creator>
      <dc:date>2021-01-30T19:47:02Z</dc:date>
    </item>
    <item>
      <title>Re: Connection to MSSQL returns tablename with spaces between each letter</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Connection-to-MSSQL-returns-tablename-with-spaces-between-each/m-p/715580#M21365</link>
      <description>Any Idea which setting might help? There is no real documentation for the settings of the Microsoft driver.</description>
      <pubDate>Sat, 30 Jan 2021 19:48:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Connection-to-MSSQL-returns-tablename-with-spaces-between-each/m-p/715580#M21365</guid>
      <dc:creator>DanielKaiser</dc:creator>
      <dc:date>2021-01-30T19:48:21Z</dc:date>
    </item>
    <item>
      <title>Re: Connection to MSSQL returns tablename with spaces between each letter</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Connection-to-MSSQL-returns-tablename-with-spaces-between-each/m-p/715589#M21366</link>
      <description>&lt;P&gt;So all table names have this problem? What is the exact name of the ODBC driver? Do you have any other ODBC drivers you can test?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I see you are also testing via EG and a local SAS server installed on the PC? If that is correct are you using a MS SQL Server Native Client driver? Again what is the name and version?&lt;/P&gt;</description>
      <pubDate>Sat, 30 Jan 2021 21:34:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Connection-to-MSSQL-returns-tablename-with-spaces-between-each/m-p/715589#M21366</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2021-01-30T21:34:34Z</dc:date>
    </item>
    <item>
      <title>Re: Connection to MSSQL returns tablename with spaces between each letter</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Connection-to-MSSQL-returns-tablename-with-spaces-between-each/m-p/715619#M21371</link>
      <description>Then you need specify a SCHEMA in libname statement.&lt;BR /&gt;&lt;BR /&gt;libname x odbc ...........  schema=xxxx ;&lt;BR /&gt;&lt;BR /&gt;Or using the following to get schema and table name.&lt;BR /&gt;&lt;BR /&gt;proc sql;&lt;BR /&gt;connect to odbc(dsn=xx user=xx passwrod=xx) ;&lt;BR /&gt;select *&lt;BR /&gt; from connection to odbc(ODBC:SQLTables);&lt;BR /&gt;quit;</description>
      <pubDate>Sun, 31 Jan 2021 11:08:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Connection-to-MSSQL-returns-tablename-with-spaces-between-each/m-p/715619#M21371</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2021-01-31T11:08:49Z</dc:date>
    </item>
    <item>
      <title>Re: Connection to MSSQL returns tablename with spaces between each letter</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Connection-to-MSSQL-returns-tablename-with-spaces-between-each/m-p/715712#M21372</link>
      <description>&lt;P&gt;Specifying the schema helped - sorry I dont do that much SAS programming.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2021-02-01_06h53_39.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/54196iF4A0C9426FC7B336/image-size/medium?v=v2&amp;amp;px=400" role="button" title="2021-02-01_06h53_39.png" alt="2021-02-01_06h53_39.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;So now, I have the dataset - you an see the MouseOver shows only "T" if I doubleclick it to edit the field I can only see "T" too.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2021-02-01_06h52_12.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/54197iD53CA05B8E277F34/image-size/medium?v=v2&amp;amp;px=400" role="button" title="2021-02-01_06h52_12.png" alt="2021-02-01_06h52_12.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;And this is&amp;nbsp; how the Library looks like now. This is the same behaviour I have when I use register table in SMC - I get an error that "T" could not be registered.&lt;BR /&gt;&lt;BR /&gt;Any ideas how we can force SAS to use the right encoding or remove the blanks before going on?&lt;/P&gt;</description>
      <pubDate>Mon, 01 Feb 2021 05:57:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Connection-to-MSSQL-returns-tablename-with-spaces-between-each/m-p/715712#M21372</guid>
      <dc:creator>DanielKaiser</dc:creator>
      <dc:date>2021-02-01T05:57:23Z</dc:date>
    </item>
  </channel>
</rss>

