<?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: How to convert .dat files to sas dataset using sas studio in Viya4 in SAS Studio</title>
    <link>https://communities.sas.com/t5/SAS-Studio/How-to-convert-dat-files-to-sas-dataset-using-sas-studio-in/m-p/929031#M11278</link>
    <description>I didnt even ran the data step yet. Just by running my filename statement I got the error.</description>
    <pubDate>Mon, 20 May 2024 14:05:20 GMT</pubDate>
    <dc:creator>bhaskarkothavt</dc:creator>
    <dc:date>2024-05-20T14:05:20Z</dc:date>
    <item>
      <title>How to convert .dat files to sas dataset using sas studio in Viya4</title>
      <link>https://communities.sas.com/t5/SAS-Studio/How-to-convert-dat-files-to-sas-dataset-using-sas-studio-in/m-p/929012#M11274</link>
      <description>&lt;P&gt;Hello SAS Community,&lt;/P&gt;&lt;P&gt;Our team recently transitioned from Base SAS 9.4 to SAS Studio using Viya 4. We're encountering some challenges adapting our existing program that converts .dat files into SAS datasets for further analysis.&lt;/P&gt;&lt;P&gt;These .dat files, received quarterly from IT, act as snapshots of our database on specific dates. We use them to generate numerous datasets used across various departments.&lt;/P&gt;&lt;P&gt;Previously, in Base SAS 9.4, we successfully used the following code&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;%let tm = sp124; /*update term*/&lt;/P&gt;&lt;P&gt;filename extract "X:\ircensus\scf extracts from ISC\&amp;amp;tm\_syra600ro_cron_gr.dat";&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;data bgx&amp;amp;tm;&lt;/P&gt;&lt;P&gt;attrib&lt;BR /&gt;bstuid informat=$char9. /* spriden_id */&lt;BR /&gt;SEXAPPL informat=$char1. /* spbpers_sex */&lt;BR /&gt;ethnic informat=$char33. /* combination of spbpers_ethn_cde &amp;amp; gorprac_race_cde */&lt;BR /&gt;byrtmapp informat=$char6. /* saradap_term_code_entry */&lt;BR /&gt;bapplnum informat=$char2. /* saradap_appl_num */&lt;BR /&gt;RELCODE1 informat=$char2. /* spbpers_lgcy_code=Y */&lt;BR /&gt;bhonors informat=$char4. /* saraatt_atts_code=HNRE */&lt;BR /&gt;natnbirth informat= $char3. /* sabsupl_natn_code_birth */&lt;BR /&gt;firstgen informat =$char1. /* first gen from ug admissions */&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;;&lt;/P&gt;&lt;P&gt;infile extract length=linelen delimiter='^' lrecl=1000 ls=1200 firstobs=2 missover;&lt;/P&gt;&lt;P&gt;format&lt;BR /&gt;bstupidm 8. JUNORGPA 5.2 satverb satmath satm satr 3.&lt;BR /&gt;bbirthdt bdtaprec bdtapent bstactdt badactdt date9.&lt;BR /&gt;;&lt;/P&gt;&lt;P&gt;input&lt;BR /&gt;bstuid&lt;BR /&gt;SEXAPPL&lt;BR /&gt;ethnic&lt;BR /&gt;byrtmapp&lt;BR /&gt;bapplnum.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;;&lt;/P&gt;&lt;P&gt;label&lt;BR /&gt;bstuid = 'spriden_id'&lt;BR /&gt;bstutype = 'saradap_styp_code'&lt;BR /&gt;SEXAPPL = 'spbpers_sex'&lt;BR /&gt;ethnic = 'spbpers_ethn_cde=NH,2=H,gorprac_race_cde=W,2=B,3=H,4=A,5=N,6=U'&lt;BR /&gt;satm = 'sortest_test_score, sortest_tesc_code=SATM, SAT Math 2016'&lt;BR /&gt;satr = 'sortest_test_score, sortest_tesc_code=SATR, SAT Reading 2016'&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;We'd greatly appreciate any guidance on replicating this functionality or converting the code for use within SAS Studio. Any insights or suggestions would be immensely helpful!&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Bhaskar&lt;/P&gt;</description>
      <pubDate>Mon, 20 May 2024 12:59:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/How-to-convert-dat-files-to-sas-dataset-using-sas-studio-in/m-p/929012#M11274</guid>
      <dc:creator>bhaskarkothavt</dc:creator>
      <dc:date>2024-05-20T12:59:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert .dat files to sas dataset using sas studio in Viya4</title>
      <link>https://communities.sas.com/t5/SAS-Studio/How-to-convert-dat-files-to-sas-dataset-using-sas-studio-in/m-p/929013#M11275</link>
      <description>&lt;P&gt;It's basically Base code, so it could/should work to execute in SAS Compute, given that you place in a location you can reach from your Viya workspace.&lt;/P&gt;
&lt;P&gt;Why not try and see what happens?&lt;/P&gt;</description>
      <pubDate>Mon, 20 May 2024 13:03:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/How-to-convert-dat-files-to-sas-dataset-using-sas-studio-in/m-p/929013#M11275</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2024-05-20T13:03:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert .dat files to sas dataset using sas studio in Viya4</title>
      <link>https://communities.sas.com/t5/SAS-Studio/How-to-convert-dat-files-to-sas-dataset-using-sas-studio-in/m-p/929017#M11276</link>
      <description>I copied one of the .dat file to a location accessible from my SAS Viya workspace. When I ran&lt;BR /&gt;&lt;BR /&gt;filename hat filesrvc folderpath="/AAI/Census/SCF Extracts from ISC" filename="_syra600ro_cron_gr.dat";&lt;BR /&gt;%include hat;&lt;BR /&gt;&lt;BR /&gt;I am getting multiple errors which I didnt encounter while running in base sas.&lt;BR /&gt;ERROR: The token currently being processed is in an incomplete state. You might have an unbalanced single quoted string or a token&lt;BR /&gt;exceeding the maximum length of 65535 characters.&lt;BR /&gt;</description>
      <pubDate>Mon, 20 May 2024 13:11:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/How-to-convert-dat-files-to-sas-dataset-using-sas-studio-in/m-p/929017#M11276</guid>
      <dc:creator>bhaskarkothavt</dc:creator>
      <dc:date>2024-05-20T13:11:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert .dat files to sas dataset using sas studio in Viya4</title>
      <link>https://communities.sas.com/t5/SAS-Studio/How-to-convert-dat-files-to-sas-dataset-using-sas-studio-in/m-p/929030#M11277</link>
      <description>&lt;P&gt;%include is for SAS script and not for data.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;From the looks of it you've got in your SAS9.4 code a filename and then an infile statement using the fileref. The only thing that should need change in your Viya environment is the filename.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 May 2024 14:03:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/How-to-convert-dat-files-to-sas-dataset-using-sas-studio-in/m-p/929030#M11277</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2024-05-20T14:03:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert .dat files to sas dataset using sas studio in Viya4</title>
      <link>https://communities.sas.com/t5/SAS-Studio/How-to-convert-dat-files-to-sas-dataset-using-sas-studio-in/m-p/929031#M11278</link>
      <description>I didnt even ran the data step yet. Just by running my filename statement I got the error.</description>
      <pubDate>Mon, 20 May 2024 14:05:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/How-to-convert-dat-files-to-sas-dataset-using-sas-studio-in/m-p/929031#M11278</guid>
      <dc:creator>bhaskarkothavt</dc:creator>
      <dc:date>2024-05-20T14:05:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert .dat files to sas dataset using sas studio in Viya4</title>
      <link>https://communities.sas.com/t5/SAS-Studio/How-to-convert-dat-files-to-sas-dataset-using-sas-studio-in/m-p/929036#M11279</link>
      <description>Please share the actual log.</description>
      <pubDate>Mon, 20 May 2024 14:20:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/How-to-convert-dat-files-to-sas-dataset-using-sas-studio-in/m-p/929036#M11279</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2024-05-20T14:20:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert .dat files to sas dataset using sas studio in Viya4</title>
      <link>https://communities.sas.com/t5/SAS-Studio/How-to-convert-dat-files-to-sas-dataset-using-sas-studio-in/m-p/929038#M11280</link>
      <description>Here is the log &lt;BR /&gt;85    %let tm = fs124; /*update term*/&lt;BR /&gt;86    &lt;BR /&gt;87    filename creds filesrvc folderpath = "/AAI/Connections/bhaskarkotha/" filename="credential.sas";&lt;BR /&gt;88    %include creds;&lt;BR /&gt;133   &lt;BR /&gt;134   /*CAS S3Transit*/&lt;BR /&gt;135   libname s3 cas caslib ="S3Transit" datalimit = All;&lt;BR /&gt;NOTE: The session CASAUTO connected successfully to Cloud Analytic Services sas-cas-server-default-client using port 5570. The UUID &lt;BR /&gt;      is 1f8d54d3-9b65-8f49-81b2-9118d4a8bce5. The user is bhaskarkotha and the active caslib is CASUSER(bhaskarkotha).&lt;BR /&gt;NOTE: The SAS option SESSREF was updated with the value CASAUTO.&lt;BR /&gt;NOTE: The SAS macro _SESSREF_ was updated with the value CASAUTO.&lt;BR /&gt;NOTE: The session is using 0 workers.&lt;BR /&gt;NOTE: Libref S3 was successfully assigned as follows: &lt;BR /&gt;      Engine:        CAS &lt;BR /&gt;      Physical Name: 1f8d54d3-9b65-8f49-81b2-9118d4a8bce5&lt;BR /&gt;136   &lt;BR /&gt;137   filename hat filesrvc folderpath="/AAI/Census/SCF Extracts from ISC" filename="_syra600ro_cron_gr.dat";&lt;BR /&gt;138   %include hat;&lt;BR /&gt;139  +STUPIDM,STUID,STUIDNUM,UPLWLAST,UPLWFRST,UPLWMIDL,UPLWINIT,GENENAME,SEXAPPL,RACEAPPL,BIRTHDTE,YRTMAPPL,APPLNUM,RELCODE1,HONORS&lt;BR /&gt;      -------&lt;BR /&gt;      180&lt;BR /&gt;139 !+,HONORFLG,CADETFLG,ROTCBRNC,APSTACDE,ADMACTON,STUACTON,DTAPLREC,DTAPLENT,STUACTDT,ADMACTDT,CURRFRST,CURRSCND,CURROFFD,COLCODE,&lt;BR /&gt;139 !+TOEFLAGG,SATVERB,SATMATH,ACTCOMP,ACTENG,ACTMATH,ACHENGL,JUNORGPA,HSCODE,HSNAME,CLASRANK,CLASSIZE,INOUTSTA,ADDR1LN1,ADDR2LN1,AD&lt;BR /&gt;139 !+RCITY1,ADRSTAT1,ADRZIP1,ADRCTRY1,ADDR1LN2,ADDR2LN2,ADRCITY2,ADRSTAT2,ADRZIP2,ADRCTRY2,ADREMAL1,ADREMALP,HOMEARE1,HOMEPRE1,HOME&lt;BR /&gt;139 !+NUM1,HOMEARE2,HOMEPRE2,HOMENUM2,FIRSPORT,SPTDESC1,SECSPORT,SPTDESC2,CITZCODE,CTRYCITZ,ADMTYPE,STUTYPE,DORMFLG,COLLMAJ,LEVEL,TO&lt;BR /&gt;139 !+EFL1,TOEFL2,TOEFL3,VISATYPE,COLFRST,HSSTATE,OPT1OFFD,APDCCODE,SITECODE,CAMPCODE,GREVERB,GREQUAN,GREANAL,GMAT,COLLNOW,CURRTHRD,&lt;BR /&gt;139 !+CURRFRTH,CURRFFTH,DECSNNO,WTHDRWCD,WTHDRWNM,OTHRCOLL,OTHRTITL,GR04,GR05,TOEFL5,TOEFLE,NATNADM,NATNBIRTH,FIRSTGEN,SATM,SATR,SAT&lt;BR /&gt;139 !+NCAV&lt;BR /&gt;NOTE: The quoted string currently being processed has become more than 262 bytes long.  You might have unbalanced quotation marks.&lt;BR /&gt;NOTE: The quoted string currently being processed has become more than 262 bytes long.  You might have unbalanced quotation marks.&lt;BR /&gt;ERROR: The token currently being processed is in an incomplete state. You might have an unbalanced single quoted string or a token &lt;BR /&gt;       exceeding the maximum length of 65535 characters.&lt;BR /&gt;NOTE: The quoted string currently being processed has become more than 262 bytes long.  You might have unbalanced quotation marks.&lt;BR /&gt;NOTE: The meaning of an identifier after a quoted string might change in a future SAS release.  Inserting white space between a &lt;BR /&gt;      quoted string and the succeeding identifier is recommended.&lt;BR /&gt;NOTE: The quoted string currently being processed has become more than 262 bytes long.  You might have unbalanced quotation marks.&lt;BR /&gt;NOTE: The quoted string currently being processed has become more than 262 bytes long.  You might have unbalanced quotation marks.&lt;BR /&gt;NOTE: The quoted string currently being processed has become more than 262 bytes long.  You might have unbalanced quotation marks.&lt;BR /&gt;NOTE: The meaning of an identifier after a quoted string might change in a future SAS release.  Inserting white space between a &lt;BR /&gt;      quoted string and the succeeding identifier is recommended.&lt;BR /&gt;NOTE: The quoted string currently being processed has become more than 262 bytes long.  You might have unbalanced quotation marks.&lt;BR /&gt;NOTE: The meaning of an identifier after a quoted string might change in a future SAS release.  Inserting white space between a &lt;BR /&gt;      quoted string and the succeeding identifier is recommended.&lt;BR /&gt;NOTE: The quoted string currently being processed has become more than 262 bytes long.  You might have unbalanced quotation marks.&lt;BR /&gt;NOTE: The meaning of an identifier after a quoted string might change in a future SAS release.  Inserting white space between a &lt;BR /&gt;      quoted string and the succeeding identifier is recommended.&lt;BR /&gt;NOTE: The quoted string currently being processed has become more than 262 bytes long.  You might have unbalanced quotation marks.&lt;BR /&gt;NOTE: The meaning of an identifier after a quoted string might change in a future SAS release.  Inserting white space between a &lt;BR /&gt;      quoted string and the succeeding identifier is recommended.&lt;BR /&gt;NOTE: The quoted string currently being processed has become more than 262 bytes long.  You might have unbalanced quotation marks.&lt;BR /&gt;ERROR: The token currently being processed is in an incomplete state. You might have an unbalanced single quoted string or a token &lt;BR /&gt;       exceeding the maximum length of 65535 characters.&lt;BR /&gt;NOTE: The meaning of an identifier after a quoted string might change in a future SAS release.  Inserting white space between a &lt;BR /&gt;      quoted string and the succeeding identifier is recommended.&lt;BR /&gt;NOTE: The quoted string currently being processed has become more than 262 bytes long.  You might have unbalanced quotation marks.&lt;BR /&gt;NOTE: The meaning of an identifier after a quoted string might change in a future SAS release.  Inserting white space between a &lt;BR /&gt;      quoted string and the succeeding identifier is recommended.&lt;BR /&gt;NOTE: The quoted string currently being processed has become more than 262 bytes long.  You might have unbalanced quotation marks.&lt;BR /&gt;NOTE: The meaning of an identifier after a quoted string might change in a future SAS release.  Inserting white space between a &lt;BR /&gt;      quoted string and the succeeding identifier is recommended.&lt;BR /&gt;NOTE: The meaning of an identifier after a quoted string might change in a future SAS release.  Inserting white space between a &lt;BR /&gt;      quoted string and the succeeding identifier is recommended.&lt;BR /&gt;NOTE: The quoted string currently being processed has become more than 262 bytes long.  You might have unbalanced quotation marks.&lt;BR /&gt;ERROR: The token currently being processed is in an incomplete state. You might have an unbalanced single quoted string or a token &lt;BR /&gt;       exceeding the maximum length of 65535 characters.&lt;BR /&gt;NOTE: The meaning of an identifier after a quoted string might change in a future SAS release.  Inserting white space between a &lt;BR /&gt;      quoted string and the succeeding identifier is recommended.&lt;BR /&gt;NOTE: The quoted string currently being processed has become more than 262 bytes long.  You might have unbalanced quotation marks.&lt;BR /&gt;NOTE: The quoted string currently being processed has become more than 262 bytes long.  You might have unbalanced quotation marks.&lt;BR /&gt;NOTE: The quoted string currently being processed has become more than 262 bytes long.  You might have unbalanced quotation marks.&lt;BR /&gt;NOTE: The meaning of an identifier after a quoted string might change in a future SAS release.  Inserting white space between a &lt;BR /&gt;      quoted string and the succeeding identifier is recommended.&lt;BR /&gt;NOTE: The quoted string currently being processed has become more than 262 bytes long.  You might have unbalanced quotation marks.&lt;BR /&gt;NOTE: The meaning of an identifier after a quoted string might change in a future SAS release.  Inserting white space between a &lt;BR /&gt;      quoted string and the succeeding identifier is recommended.&lt;BR /&gt;NOTE: The quoted string currently being processed has become more than 262 bytes long.  You might have unbalanced quotation marks.&lt;BR /&gt;NOTE: The meaning of an identifier after a quoted string might change in a future SAS release.  Inserting white space between a &lt;BR /&gt;      quoted string and the succeeding identifier is recommended.&lt;BR /&gt;NOTE: The meaning of an identifier after a quoted string might change in a future SAS release.  Inserting white space between a &lt;BR /&gt;      quoted string and the succeeding identifier is recommended.&lt;BR /&gt;WARNING: Apparent symbolic reference S not resolved.&lt;BR /&gt;NOTE: The quoted string currently being processed has become more than 262 bytes long.  You might have unbalanced quotation marks.&lt;BR /&gt;NOTE: The meaning of an identifier after a quoted string might change in a future SAS release.  Inserting white space between a &lt;BR /&gt;      quoted string and the succeeding identifier is recommended.&lt;BR /&gt;NOTE: The meaning of an identifier after a quoted string might change in a future SAS release.  Inserting white space between a &lt;BR /&gt;      quoted string and the succeeding identifier is recommended.&lt;BR /&gt;ERROR 180-322: Statement is not valid or it is used out of proper order.&lt;BR /&gt;180: LINE and COLUMN cannot be determined.&lt;BR /&gt;NOTE: NOSPOOL is on. Rerunning with OPTION SPOOL might allow recovery of the LINE and COLUMN where the error has occurred.&lt;BR /&gt;ERROR 180-322: Statement is not valid or it is used out of proper order.&lt;BR /&gt;NOTE: Enter RUN; to continue or QUIT; to end the procedure.&lt;BR /&gt;NOTE: The quoted string currently being processed has become more than 262 bytes long.  You might have unbalanced quotation marks.&lt;BR /&gt;NOTE: The quoted string currently being processed has become more than 262 bytes long.  You might have unbalanced quotation marks.&lt;BR /&gt;NOTE: The meaning of an identifier after a quoted string might change in a future SAS release.  Inserting white space between a &lt;BR /&gt;      quoted string and the succeeding identifier is recommended.&lt;BR /&gt;NOTE: The meaning of an identifier after a quoted string might change in a future SAS release.  Inserting white space between a &lt;BR /&gt;      quoted string and the succeeding identifier is recommended.&lt;BR /&gt;NOTE: The meaning of an identifier after a quoted string might change in a future SAS release.  Inserting white space between a &lt;BR /&gt;      quoted string and the succeeding identifier is recommended.&lt;BR /&gt;NOTE: The quoted string currently being processed has become more than 262 bytes long.  You might have unbalanced quotation marks.&lt;BR /&gt;NOTE: The meaning of an identifier after a quoted string might change in a future SAS release.  Inserting white space between a &lt;BR /&gt;      quoted string and the succeeding identifier is recommended.&lt;BR /&gt;NOTE: The quoted string currently being processed has become more than 262 bytes long.  You might have unbalanced quotation marks.&lt;BR /&gt;NOTE: The meaning of an identifier after a quoted string might change in a future SAS release.  Inserting white space between a &lt;BR /&gt;      quoted string and the succeeding identifier is recommended.&lt;BR /&gt;NOTE: The quoted string currently being processed has become more than 262 bytes long.  You might have unbalanced quotation marks.&lt;BR /&gt;NOTE: The meaning of an identifier after a quoted string might change in a future SAS release.  Inserting white space between a &lt;BR /&gt;      quoted string and the succeeding identifier is recommended.&lt;BR /&gt;NOTE: The quoted string currently being processed has become more than 262 bytes long.  You might have unbalanced quotation marks.&lt;BR /&gt;NOTE: The quoted string currently being processed has become more than 262 bytes long.  You might have unbalanced quotation marks.&lt;BR /&gt;NOTE: The quoted string currently being processed has become more than 262 bytes long.  You might have unbalanced quotation marks.&lt;BR /&gt;NOTE: The meaning of an identifier after a quoted string might change in a future SAS release.  Inserting white space between a &lt;BR /&gt;      quoted string and the succeeding identifier is recommended.&lt;BR /&gt;NOTE: The quoted string currently being processed has become more than 262 bytes long.  You might have unbalanced quotation marks.&lt;BR /&gt;ERROR: The token currently being processed is in an incomplete state. You might have an unbalanced single quoted string or a token &lt;BR /&gt;       exceeding the maximum length of 65535 characters.&lt;BR /&gt;NOTE: The quoted string currently being processed has become more than 262 bytes long.  You might have unbalanced quotation marks.&lt;BR /&gt;NOTE: The meaning of an identifier after a quoted string might change in a future SAS release.  Inserting white space between a &lt;BR /&gt;      quoted string and the succeeding identifier is recommended.&lt;BR /&gt;NOTE: The quoted string currently being processed has become more than 262 bytes long.  You might have unbalanced quotation marks.&lt;BR /&gt;NOTE: The meaning of an identifier after a quoted string might change in a future SAS release.  Inserting white space between a &lt;BR /&gt;      quoted string and the succeeding identifier is recommended.&lt;BR /&gt;NOTE: The quoted string currently being processed has become more than 262 bytes long.  You might have unbalanced quotation marks.&lt;BR /&gt;NOTE: The meaning of an identifier after a quoted string might change in a future SAS release.  Inserting white space between a &lt;BR /&gt;      quoted string and the succeeding identifier is recommended.&lt;BR /&gt;WARNING: Apparent symbolic reference T not resolved.&lt;BR /&gt;WARNING: Apparent symbolic reference T not resolved.&lt;BR /&gt;NOTE: The quoted string currently being processed has become more than 262 bytes long.  You might have unbalanced quotation marks.&lt;BR /&gt;NOTE: The meaning of an identifier after a quoted string might change in a future SAS release.  Inserting white space between a &lt;BR /&gt;      quoted string and the succeeding identifier is recommended.&lt;BR /&gt;NOTE: The meaning of an identifier after a quoted string might change in a future SAS release.  Inserting white space between a &lt;BR /&gt;      quoted string and the succeeding identifier is recommended.&lt;BR /&gt;NOTE: The meaning of an identifier after a quoted string might change in a future SAS release.  Inserting white space between a &lt;BR /&gt;      quoted string and the succeeding identifier is recommended.&lt;BR /&gt;NOTE: The quoted string currently being processed has become more than 262 bytes long.  You might have unbalanced quotation marks.&lt;BR /&gt;NOTE: The meaning of an identifier after a quoted string might change in a future SAS release.  Inserting white space between a &lt;BR /&gt;      quoted string and the succeeding identifier is recommended.&lt;BR /&gt;NOTE: The meaning of an identifier after a quoted string might change in a future SAS release.  Inserting white space between a &lt;BR /&gt;      quoted string and the succeeding identifier is recommended.&lt;BR /&gt;NOTE: The meaning of an identifier after a quoted string might change in a future SAS release.  Inserting white space between a &lt;BR /&gt;      quoted string and the succeeding identifier is recommended.&lt;BR /&gt;NOTE: The quoted string currently being processed has become more than 262 bytes long.  You might have unbalanced quotation marks.&lt;BR /&gt;NOTE: The meaning of an identifier after a quoted string might change in a future SAS release.  Inserting white space between a &lt;BR /&gt;      quoted string and the succeeding identifier is recommended.&lt;BR /&gt;NOTE: The meaning of an identifier after a quoted string might change in a future SAS release.  Inserting white space between a &lt;BR /&gt;      quoted string and the succeeding identifier is recommended.&lt;BR /&gt;NOTE: The quoted string currently being processed has become more than 262 bytes long.  You might have unbalanced quotation marks.&lt;BR /&gt;ERROR: The token currently being processed is in an incomplete state. You might have an unbalanced single quoted string or a token &lt;BR /&gt;       exceeding the maximum length of 65535 characters.&lt;BR /&gt;NOTE: The meaning of an identifier after a quoted string might change in a future SAS release.  Inserting white space between a &lt;BR /&gt;      quoted string and the succeeding identifier is recommended.&lt;BR /&gt;NOTE: The meaning of an identifier after a quoted string might change in a future SAS release.  Inserting white space between a &lt;BR /&gt;      quoted string and the succeeding identifier is recommended.&lt;BR /&gt;NOTE: The meaning of an identifier after a quoted string might change in a future SAS release.  Inserting white space between a &lt;BR /&gt;      quoted string and the succeeding identifier is recommended.&lt;BR /&gt;WARNING: Apparent symbolic reference T not resolved.&lt;BR /&gt;WARNING: Apparent symbolic reference T not resolved.&lt;BR /&gt;NOTE: The quoted string currently being processed has become more than 262 bytes long.  You might have unbalanced quotation marks.&lt;BR /&gt;NOTE: The meaning of an identifier after a quoted string might change in a future SAS release.  Inserting white space between a &lt;BR /&gt;      quoted string and the succeeding identifier is recommended.&lt;BR /&gt;NOTE: The meaning of an identifier after a quoted string might change in a future SAS release.  Inserting white space between a &lt;BR /&gt;      quoted string and the succeeding identifier is recommended.&lt;BR /&gt;NOTE: The quoted string currently being processed has become more than 262 bytes long.  You might have unbalanced quotation marks.&lt;BR /&gt;NOTE: The meaning of an identifier after a quoted string might change in a future SAS release.  Inserting white space between a &lt;BR /&gt;      quoted string and the succeeding identifier is recommended.&lt;BR /&gt;NOTE: The meaning of an identifier after a quoted string might change in a future SAS release.  Inserting white space between a &lt;BR /&gt;      quoted string and the succeeding identifier is recommended.&lt;BR /&gt;NOTE: The quoted string currently being processed has become more than 262 bytes long.  You might have unbalanced quotation marks.&lt;BR /&gt;NOTE: The meaning of an identifier after a quoted string might change in a future SAS release.  Inserting white space between a &lt;BR /&gt;      quoted string and the succeeding identifier is recommended.&lt;BR /&gt;NOTE: The meaning of an identifier after a quoted string might change in a future SAS release.  Inserting white space between a &lt;BR /&gt;      quoted string and the succeeding identifier is recommended.&lt;BR /&gt;NOTE: The meaning of an identifier after a quoted string might change in a future SAS release.  Inserting white space between a &lt;BR /&gt;      quoted string and the succeeding identifier is recommended.&lt;BR /&gt;NOTE: The quoted string currently being processed has become more than 262 bytes long.  You might have unbalanced quotation marks.&lt;BR /&gt;NOTE: The meaning of an identifier after a quoted string might change in a future SAS release.  Inserting white space between a &lt;BR /&gt;      quoted string and the succeeding identifier is recommended.&lt;BR /&gt;NOTE: The quoted string currently being processed has become more than 262 bytes long.  You might have unbalanced quotation marks.&lt;BR /&gt;NOTE: The meaning of an identifier after a quoted string might change in a future SAS release.  Inserting white space between a &lt;BR /&gt;      quoted string and the succeeding identifier is recommended.&lt;BR /&gt;NOTE: The quoted string currently being processed has become more than 262 bytes long.  You might have unbalanced quotation marks.&lt;BR /&gt;NOTE: The meaning of an identifier after a quoted string might change in a future SAS release.  Inserting white space between a &lt;BR /&gt;      quoted string and the succeeding identifier is recommended.&lt;BR /&gt;NOTE: The meaning of an identifier after a quoted string might change in a future SAS release.  Inserting white space between a &lt;BR /&gt;      quoted string and the succeeding identifier is recommended.&lt;BR /&gt;NOTE: The meaning of an identifier after a quoted string might change in a future SAS release.  Inserting white space between a &lt;BR /&gt;      quoted string and the succeeding identifier is recommended.&lt;BR /&gt;NOTE: The quoted string currently being processed has become more than 262 bytes long.  You might have unbalanced quotation marks.&lt;BR /&gt;NOTE: The meaning of an identifier after a quoted string might change in a future SAS release.  Inserting white space between a &lt;BR /&gt;      quoted string and the succeeding identifier is recommended.&lt;BR /&gt;NOTE: The quoted string currently being processed has become more than 262 bytes long.  You might have unbalanced quotation marks.&lt;BR /&gt;NOTE: The meaning of an identifier after a quoted string might change in a future SAS release.  Inserting white space between a &lt;BR /&gt;      quoted string and the succeeding identifier is recommended.&lt;BR /&gt;NOTE: The quoted string currently being processed has become more than 262 bytes long.  You might have unbalanced quotation marks.&lt;BR /&gt;NOTE: The meaning of an identifier after a quoted string might change in a future SAS release.  Inserting white space between a &lt;BR /&gt;      quoted string and the succeeding identifier is recommended.&lt;BR /&gt;NOTE: The quoted string currently being processed has become more than 262 bytes long.  You might have unbalanced quotation marks.&lt;BR /&gt;ERROR: The token currently being processed is in an incomplete state. You might have an unbalanced single quoted string or a token &lt;BR /&gt;       exceeding the maximum length of 65535 characters.&lt;BR /&gt;NOTE: The meaning of an identifier after a quoted string might change in a future SAS release.  Inserting white space between a &lt;BR /&gt;      quoted string and the succeeding identifier is recommended.&lt;BR /&gt;NOTE: The meaning of an identifier after a quoted string might change in a future SAS release.  Inserting white space between a &lt;BR /&gt;      quoted string and the succeeding identifier is recommended.&lt;BR /&gt;NOTE: The quoted string currently being processed has become more than 262 bytes long.  You might have unbalanced quotation marks.&lt;BR /&gt;ERROR: The token currently being processed is in an incomplete state. You might have an unbalanced single quoted string or a token &lt;BR /&gt;       exceeding the maximum length of 65535 characters.&lt;BR /&gt;6769  &lt;BR /&gt;6770  /* region: Generated postamble */&lt;BR /&gt;6771  /* Close ODS destinations */&lt;BR /&gt;SYMBOLGEN:  Macro variable GRAPHTERM resolves to goptions noaccessible;&lt;BR /&gt;6772  &amp;amp;graphterm; ;*';*";*/;run;&lt;BR /&gt;NOTE: Enter RUN; to continue or QUIT; to end the procedure.&lt;BR /&gt;6772!                           quit;&lt;BR /&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;BR /&gt;NOTE: Due to ERROR(s) above, SAS set option OBS=0, enabling syntax check mode. &lt;BR /&gt;      This prevents execution of subsequent data modification statements.&lt;BR /&gt;NOTE: PROCEDURE DATASETS used (Total process time):&lt;BR /&gt;      real time           2.48 seconds&lt;BR /&gt;      cpu time            1.06 seconds&lt;BR /&gt;      &lt;BR /&gt;6773  quit;run;&lt;BR /&gt;6774  ods html5 (id=web) close;&lt;BR /&gt;6775  ods listing close;&lt;BR /&gt;6776  %if %sysfunc(fileref(_gsfname)) lt 0 %then %do;&lt;BR /&gt;6777      filename _gsfname clear;&lt;BR /&gt;NOTE: Fileref _GSFNAME has been deassigned.&lt;BR /&gt;6778  %end;&lt;BR /&gt;6779  %studio_capture_custom_output;&lt;BR /&gt;MLOGIC(STUDIO_CAPTURE_CUSTOM_OUTPUT):  Beginning execution.&lt;BR /&gt;SYMBOLGEN:  Macro variable _DATAOUT_NAME resolves to &lt;BR /&gt;SYMBOLGEN:  Macro variable _DATAOUT_MIME_TYPE resolves to &lt;BR /&gt;MLOGIC(STUDIO_CAPTURE_CUSTOM_OUTPUT):  %IF condition "&amp;amp;_dataout_name" ne "" and "&amp;amp;_dataout_mime_type" ne "" is FALSE&lt;BR /&gt;MLOGIC(STUDIO_CAPTURE_CUSTOM_OUTPUT):  Ending execution.&lt;BR /&gt;6780  /* endregion */&lt;BR /&gt;6781</description>
      <pubDate>Mon, 20 May 2024 14:22:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/How-to-convert-dat-files-to-sas-dataset-using-sas-studio-in/m-p/929038#M11280</guid>
      <dc:creator>bhaskarkothavt</dc:creator>
      <dc:date>2024-05-20T14:22:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert .dat files to sas dataset using sas studio in Viya4</title>
      <link>https://communities.sas.com/t5/SAS-Studio/How-to-convert-dat-files-to-sas-dataset-using-sas-studio-in/m-p/929039#M11281</link>
      <description>&lt;P&gt;Remove the %INCLUDE statement.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You caused SAS to try and execute the data file as SAS commands.&amp;nbsp; If the file is appropriate for being read by your data step then it does NOT contain SAS commands.&lt;/P&gt;</description>
      <pubDate>Mon, 20 May 2024 14:24:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/How-to-convert-dat-files-to-sas-dataset-using-sas-studio-in/m-p/929039#M11281</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2024-05-20T14:24:05Z</dc:date>
    </item>
  </channel>
</rss>

