<?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: Wild character question in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Wild-character-question/m-p/155615#M40856</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A __default_attr="5068" __jive_macro_name="user" class="jive_macro jive_macro_user" data-objecttype="3" href="https://communities.sas.com/"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I believe a "find()" couldn't get passed to the database but it should work with a "contains".&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 Jun 2014 13:46:01 GMT</pubDate>
    <dc:creator>Patrick</dc:creator>
    <dc:date>2014-06-25T13:46:01Z</dc:date>
    <item>
      <title>Wild character question</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Wild-character-question/m-p/155609#M40850</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is there a reason why this is not getting me any data ?..&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Select&amp;nbsp; a.*&lt;/P&gt;&lt;P&gt;from Mainframe.data&lt;/P&gt;&lt;P&gt;where APP_ID = ('%61738495%')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is just a test on one account, but I need to do it for 1000's of accounts and in the above case the actual APP_ID is 6005617384952 , I have a file with the acct number stripped in the middle (as shown above), and need to make sure I capture it as it is embedded in the mainframe data.&amp;nbsp; When I run the above query I get no results.&amp;nbsp; If I put&lt;/P&gt;&lt;P&gt;where APP_ID = ('%6005617384952%'), I get the result, but that doesn't help, since I don't know the full acct number for all 1000's accts.&amp;nbsp; Isn't the meaning of the % to capture any possible value in it's place, if you don't know it?&amp;nbsp; Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jun 2014 13:13:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Wild-character-question/m-p/155609#M40850</guid>
      <dc:creator>podarum</dc:creator>
      <dc:date>2014-06-25T13:13:25Z</dc:date>
    </item>
    <item>
      <title>Re: Wild character question</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Wild-character-question/m-p/155610#M40851</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yep, you want to change your equals sign to a like:&lt;/P&gt;&lt;P&gt;where APP_ID&amp;nbsp; like '%61738495%';&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jun 2014 13:29:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Wild-character-question/m-p/155610#M40851</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2014-06-25T13:29:19Z</dc:date>
    </item>
    <item>
      <title>Re: Wild character question</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Wild-character-question/m-p/155611#M40852</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try:&lt;/P&gt;&lt;P&gt;where APP_ID like '%6005617384952%'&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jun 2014 13:31:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Wild-character-question/m-p/155611#M40852</guid>
      <dc:creator>slchen</dc:creator>
      <dc:date>2014-06-25T13:31:47Z</dc:date>
    </item>
    <item>
      <title>Re: Wild character question</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Wild-character-question/m-p/155612#M40853</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried that as well, no avail&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jun 2014 13:33:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Wild-character-question/m-p/155612#M40853</guid>
      <dc:creator>podarum</dc:creator>
      <dc:date>2014-06-25T13:33:04Z</dc:date>
    </item>
    <item>
      <title>Re: Wild character question</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Wild-character-question/m-p/155613#M40854</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In SQL &lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;the '%' is the placeholder for 0 to n characters&lt;/SPAN&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: line-through;"&gt;The syntax you've posted&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;STRONG&gt;where APP_ID = ('%61738495%&lt;/STRONG&gt;') worked for me in a SAS9.4 Windows 7 environment. &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;Sorry, looked at the wrong table. The '=' sign looks for an exact match so there you won't get a result. You need to use a '&lt;STRONG&gt;LIKE&lt;/STRONG&gt;', so&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;STRONG&gt;where APP_ID like '%61738495%&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;'&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;It's now a rather long time ago but I've used such syntax in the past many many times in a SAS Mainframe environment and it always returned the expected result. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;Are you running your code against a SAS dataset or against a database table?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;Alternative syntax you could try:&lt;SPAN style="text-decoration: line-through;"&gt;&lt;STRONG&gt; where APP_ID =: '61738495'&lt;/STRONG&gt; or&lt;/SPAN&gt; &lt;STRONG&gt;where APP_ID contains '61738495'&lt;/STRONG&gt; . &lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jun 2014 13:39:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Wild-character-question/m-p/155613#M40854</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2014-06-25T13:39:38Z</dc:date>
    </item>
    <item>
      <title>Re: Wild character question</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Wild-character-question/m-p/155614#M40855</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't know if you are pass-thru, if not,&amp;nbsp; Would you be able to use SAS function, such as "where find(APP_ID, '61738495') &amp;gt;0" ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Haikuo &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jun 2014 13:43:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Wild-character-question/m-p/155614#M40855</guid>
      <dc:creator>Haikuo</dc:creator>
      <dc:date>2014-06-25T13:43:43Z</dc:date>
    </item>
    <item>
      <title>Re: Wild character question</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Wild-character-question/m-p/155615#M40856</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A __default_attr="5068" __jive_macro_name="user" class="jive_macro jive_macro_user" data-objecttype="3" href="https://communities.sas.com/"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I believe a "find()" couldn't get passed to the database but it should work with a "contains".&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jun 2014 13:46:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Wild-character-question/m-p/155615#M40856</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2014-06-25T13:46:01Z</dc:date>
    </item>
    <item>
      <title>Re: Wild character question</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Wild-character-question/m-p/155616#M40857</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This works fine&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data have;&lt;/P&gt;&lt;P&gt;input APP_ID $ 15.;&lt;/P&gt;&lt;P&gt;datalines; &lt;/P&gt;&lt;P&gt;6005617384952&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;proc sql;&lt;/P&gt;&lt;P&gt;select * from have&lt;/P&gt;&lt;P&gt;where APP_ID like '%61738495%';&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jun 2014 13:50:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Wild-character-question/m-p/155616#M40857</guid>
      <dc:creator>stat_sas</dc:creator>
      <dc:date>2014-06-25T13:50:15Z</dc:date>
    </item>
    <item>
      <title>Re: Wild character question</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Wild-character-question/m-p/155617#M40858</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A __default_attr="12296" __jive_macro_name="user" class="jive_macro jive_macro_user" data-objecttype="3" href="https://communities.sas.com/"&gt;&lt;/A&gt;,&lt;/P&gt;&lt;P&gt; "Alternative syntax you could try: where APP_ID =: '61738495' "&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If my memory servers me right, you can't do that. Colon modifier =: is only good for data step, it is not supported in Proc SQL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Haikuo &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jun 2014 13:52:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Wild-character-question/m-p/155617#M40858</guid>
      <dc:creator>Haikuo</dc:creator>
      <dc:date>2014-06-25T13:52:16Z</dc:date>
    </item>
    <item>
      <title>Re: Wild character question</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Wild-character-question/m-p/155618#M40859</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;True. Correct me if I am wrong, but if not "pass-thru", meaning there is a libname statement in action, then it seems to me that the data is first pulled into SAS, then SAS functions is supported?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Haikuo &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jun 2014 13:55:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Wild-character-question/m-p/155618#M40859</guid>
      <dc:creator>Haikuo</dc:creator>
      <dc:date>2014-06-25T13:55:21Z</dc:date>
    </item>
    <item>
      <title>Re: Wild character question</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Wild-character-question/m-p/155619#M40860</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To test all this I'm using Teradata SQL .. could that be the reason ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jun 2014 13:55:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Wild-character-question/m-p/155619#M40860</guid>
      <dc:creator>podarum</dc:creator>
      <dc:date>2014-06-25T13:55:27Z</dc:date>
    </item>
    <item>
      <title>Re: Wild character question</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Wild-character-question/m-p/155620#M40861</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your memory works perfect.&lt;/P&gt;&lt;P&gt;It was me messing up my testing - still had proc printto active directing my log to somewhere else after answering another post. Hmmm...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jun 2014 13:56:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Wild-character-question/m-p/155620#M40861</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2014-06-25T13:56:49Z</dc:date>
    </item>
    <item>
      <title>Re: Wild character question</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Wild-character-question/m-p/155621#M40862</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It shouldn't make much difference the SQL engine in questions as:&lt;/P&gt;&lt;P&gt;where APP_ID&amp;nbsp; like '%61738495%';&lt;/P&gt;&lt;P&gt;Is basic SQL syntax.&amp;nbsp; Did you try that and are still getting no results, have you looked at the data on the database/run the SQL through a tool designed for SQL, e.g. (and this is for Oracle but hey) Toad, and seeing what is returned.&amp;nbsp; Do you get results if you remove the where clause.&amp;nbsp; If you get nothing without a where clause you may be lacking read access, or missing connection, if you do get results then maybe the number is not found.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jun 2014 13:59:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Wild-character-question/m-p/155621#M40862</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2014-06-25T13:59:20Z</dc:date>
    </item>
    <item>
      <title>Re: Wild character question</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Wild-character-question/m-p/155622#M40863</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The variable APP_ID - is it character variable? If it is then the below code is working in my 9.2 version of base SAS to find any number which has the value '&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;61738495&lt;/SPAN&gt;' in the string - &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;WHERE APP_ID CONTAINS '&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;61738495&lt;/SPAN&gt;' ;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it the above code does not work then please let me know if the variable APP_ID is numeric.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;Rafi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jun 2014 14:01:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Wild-character-question/m-p/155622#M40863</guid>
      <dc:creator>RafiRahi</dc:creator>
      <dc:date>2014-06-25T14:01:46Z</dc:date>
    </item>
    <item>
      <title>Re: Wild character question</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Wild-character-question/m-p/155623#M40864</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Basically I have a field in my local data that is chopped (eg.&amp;nbsp; '61738495') and am trying to match it to another field in my data warehouse that is not chopped (eg.&amp;nbsp; '6005617384952') .&amp;nbsp; Have been using&lt;/P&gt;&lt;P&gt; on INDEX (TRIM(a.APP_ID_DW), TRIM(put(b.APP_ID_FILE, 12.))) &amp;gt; 0&amp;nbsp;&amp;nbsp; that didn't work, I get an error like Function TRIM requires a character expression as arguement 1.. Even if I make APP_ID_FILE a character or numeric.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jun 2014 14:03:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Wild-character-question/m-p/155623#M40864</guid>
      <dc:creator>podarum</dc:creator>
      <dc:date>2014-06-25T14:03:16Z</dc:date>
    </item>
    <item>
      <title>Re: Wild character question</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Wild-character-question/m-p/155624#M40865</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If the data lives in a database the SAS access engine will try and push processing to the database. This is also true if you're using implicit pass-through meaning that you define a libname with the access engine and then use the table in a SAS SQL flavour.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You then can find for every SAS Access engine and version a list of SAS functions documented which can get pushed to the database - and using &lt;STRONG&gt;&lt;SPAN style="color: #545454; font-family: arial, sans-serif; font-size: small; background-color: #ffffff;"&gt;options sastrace=",,,d" sastraceloc=saslog &lt;/SPAN&gt;&lt;SPAN style="color: #545454; font-family: arial, sans-serif; font-size: small; background-color: #ffffff;"&gt;nostsuffix&lt;/SPAN&gt;&lt;SPAN style="color: #545454; font-family: arial, sans-serif; font-size: small; background-color: #ffffff;"&gt;; &lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN style="color: #545454; font-family: arial, sans-serif; font-size: small; background-color: #ffffff;"&gt;then shows you in the log hos SAS tries to convert the SAS SQL flavor to database SQL flavor and if the database could deal with the sent SQL.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jun 2014 14:07:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Wild-character-question/m-p/155624#M40865</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2014-06-25T14:07:56Z</dc:date>
    </item>
    <item>
      <title>Re: Wild character question</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Wild-character-question/m-p/155625#M40866</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The error I get with CONTAINS is this :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;7989: Invalid operand for the CONTAINS operator. The operand must have a Period data type that is comparable to the other operand.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jun 2014 14:09:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Wild-character-question/m-p/155625#M40866</guid>
      <dc:creator>podarum</dc:creator>
      <dc:date>2014-06-25T14:09:24Z</dc:date>
    </item>
    <item>
      <title>Re: Wild character question</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Wild-character-question/m-p/155626#M40867</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;APP_ID is numeric.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jun 2014 14:11:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Wild-character-question/m-p/155626#M40867</guid>
      <dc:creator>podarum</dc:creator>
      <dc:date>2014-06-25T14:11:44Z</dc:date>
    </item>
    <item>
      <title>Re: Wild character question</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Wild-character-question/m-p/155627#M40868</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So what are the data types of the variables in your 2 tables. They must be character in order for a LIKE or CONTAINS to work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jun 2014 14:13:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Wild-character-question/m-p/155627#M40868</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2014-06-25T14:13:53Z</dc:date>
    </item>
    <item>
      <title>Re: Wild character question</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Wild-character-question/m-p/155628#M40869</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Then you would need to (Oracle sytax again) cast the numeric into a character string to use the like % syntax.&amp;nbsp; In SAS it would be put(variable,best.).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jun 2014 14:14:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Wild-character-question/m-p/155628#M40869</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2014-06-25T14:14:30Z</dc:date>
    </item>
  </channel>
</rss>

