<?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: PROC EXPORT bug? Placement of WHERE and KEEP in dataset options in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/PROC-EXPORT-bug-Placement-of-WHERE-and-KEEP-in-dataset-options/m-p/988680#M380152</link>
    <description>&lt;P&gt;This looks like some kind of a bug, report it to SAS tech support.&lt;/P&gt;</description>
    <pubDate>Wed, 27 May 2026 07:08:30 GMT</pubDate>
    <dc:creator>LinusH</dc:creator>
    <dc:date>2026-05-27T07:08:30Z</dc:date>
    <item>
      <title>PROC EXPORT bug? Placement of WHERE and KEEP in dataset options</title>
      <link>https://communities.sas.com/t5/SAS-Programming/PROC-EXPORT-bug-Placement-of-WHERE-and-KEEP-in-dataset-options/m-p/988678#M380151</link>
      <description>&lt;P&gt;Hi all&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have just experienced a weird situation that I cannot find documentation on.&lt;/P&gt;
&lt;P&gt;The focus is on the log, which is really all you should need, but because I know _someone_ is going to complain about me not posting code, consider these two SAS statements:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;PROC EXPORT DATA=CHE.cohort
                  (WHERE=(InAPDC) KEEP=PPN NumRecsPerCaseAPDC InAPDC NumRecsPerCaseCOD InCOD NumRecsPerCaseRBDM InRBDM APDC_TXY_case N_APDC_TXY_events COD_TXY_case PoisoningSubcohort Sex BirthDate death_dateCOD death_dateRBDM)
      OUTFILE="l:\Cohort.csv"
      DBMS=CSV
      REPLACE;
RUN;

PROC EXPORT DATA=CHE.cohort
                  (KEEP=PPN NumRecsPerCaseAPDC InAPDC NumRecsPerCaseCOD InCOD NumRecsPerCaseRBDM InRBDM APDC_TXY_case N_APDC_TXY_events COD_TXY_case PoisoningSubcohort Sex BirthDate death_dateCOD death_dateRBDM
  WHERE=(InAPDC))
      OUTFILE="l:\Cohort.csv"
      DBMS=CSV
      REPLACE;
RUN;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The only difference is that in the first, the WHERE statement is before the KEEP and after in the second.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Now look at the two logs below.&lt;/P&gt;
&lt;P&gt;For the first PROC EXPORT statement, the first variable (ppn) is not exported. I can't understand why the placement of the WHERE statement should cause one variable to be dropped?&lt;/P&gt;
&lt;P&gt;Has anyone seen this, or can explain it?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1271 PROC EXPORT DATA=CHE.COHORT&lt;BR /&gt;1272 (WHERE=(InAPDC) KEEP=PPN NumRecsPerCaseAPDC InAPDC NumRecsPerCaseCOD InCOD&lt;BR /&gt;1272! NumRecsPerCaseRBDM InRBDM APDC_TXY_case N_APDC_TXY_events COD_TXY_case PoisoningSubcohort Sex&lt;BR /&gt;1272! BirthDate death_dateCOD death_dateRBDM)&lt;BR /&gt;1273 OUTFILE="l:\Cohort.csv"&lt;BR /&gt;1274 DBMS=CSV&lt;BR /&gt;1275 REPLACE;&lt;BR /&gt;1276 RUN;&lt;/P&gt;
&lt;P&gt;1277 /**********************************************************************&lt;BR /&gt;1278 * PRODUCT: SAS&lt;BR /&gt;1279 * VERSION: 9.4&lt;BR /&gt;1280 * CREATOR: External File Interface&lt;BR /&gt;1281 * DATE: 27MAY26&lt;BR /&gt;1282 * DESC: Generated SAS Datastep Code&lt;BR /&gt;1283 * TEMPLATE SOURCE: (None Specified.)&lt;BR /&gt;1284 ***********************************************************************/&lt;BR /&gt;1285 data _null_;&lt;BR /&gt;1286 %let _EFIERR_ = 0; /* set the ERROR detection macro variable */&lt;BR /&gt;1287 %let _EFIREC_ = 0; /* clear export record count macro variable */&lt;BR /&gt;1288 file 'l:\Cohort.csv' delimiter=',' DSD DROPOVER&lt;BR /&gt;1288! lrecl=32767;&lt;BR /&gt;1289 if _n_ = 1 then /* write column names or labels */&lt;BR /&gt;1290 do;&lt;BR /&gt;1291 put&lt;BR /&gt;1292 ','&lt;BR /&gt;1293 "NumRecsPerCaseAPDC"&lt;BR /&gt;1294 ','&lt;BR /&gt;1295 "InAPDC"&lt;BR /&gt;1296 ','&lt;BR /&gt;1297 "NumRecsPerCaseCOD"&lt;BR /&gt;1298 ','&lt;BR /&gt;1299 "InCOD"&lt;BR /&gt;1300 ','&lt;BR /&gt;1301 "NumRecsPerCaseRBDM"&lt;BR /&gt;1302 ','&lt;BR /&gt;1303 "InRBDM"&lt;BR /&gt;1304 ','&lt;BR /&gt;1305 "APDC_TXY_case"&lt;BR /&gt;1306 ','&lt;BR /&gt;1307 "N_APDC_TXY_events"&lt;BR /&gt;1308 ','&lt;BR /&gt;1309 "COD_TXY_case"&lt;BR /&gt;1310 ','&lt;BR /&gt;1311 "PoisoningSubcohort"&lt;BR /&gt;1312 ','&lt;BR /&gt;1313 "Sex"&lt;BR /&gt;1314 ','&lt;BR /&gt;1315 "BirthDate"&lt;BR /&gt;1316 ','&lt;BR /&gt;1317 "death_dateCOD"&lt;BR /&gt;1318 ','&lt;BR /&gt;1319 "death_dateRBDM"&lt;BR /&gt;1320 ;&lt;BR /&gt;1321 end;&lt;BR /&gt;1322 set CHE.COHORT(WHERE=(InAPDC) KEEP=PPN NumRecsPerCaseAPDC InAPDC&lt;BR /&gt;1322! NumRecsPerCaseCOD InCOD NumRecsPerCaseRBDM InRBDM APDC_TXY_case N_APDC_TXY_events&lt;BR /&gt;1322! COD_TXY_case PoisoningSubcohort Sex&lt;BR /&gt;1323 BirthDate death_dateCOD death_dateRBDM) end=EFIEOD;&lt;BR /&gt;1324 format NumRecsPerCaseAPDC best12. ;&lt;BR /&gt;1325 format InAPDC best12. ;&lt;BR /&gt;1326 format NumRecsPerCaseCOD best12. ;&lt;BR /&gt;1327 format InCOD best12. ;&lt;BR /&gt;1328 format NumRecsPerCaseRBDM best12. ;&lt;BR /&gt;1329 format InRBDM best12. ;&lt;BR /&gt;1330 format APDC_TXY_case best12. ;&lt;BR /&gt;1331 format N_APDC_TXY_events best12. ;&lt;BR /&gt;1332 format COD_TXY_case best12. ;&lt;BR /&gt;1333 format PoisoningSubcohort best12. ;&lt;BR /&gt;1334 format Sex bestx12. ;&lt;BR /&gt;1335 format BirthDate date9. ;&lt;BR /&gt;1336 format death_dateCOD date9. ;&lt;BR /&gt;1337 format death_dateRBDM date9. ;&lt;BR /&gt;1338 do;&lt;BR /&gt;1339 EFIOUT + 1;&lt;BR /&gt;1340 put NumRecsPerCaseAPDC @;&lt;BR /&gt;1341 put InAPDC @;&lt;BR /&gt;1342 put NumRecsPerCaseCOD @;&lt;BR /&gt;1343 put InCOD @;&lt;BR /&gt;1344 put NumRecsPerCaseRBDM @;&lt;BR /&gt;1345 put InRBDM @;&lt;BR /&gt;1346 put APDC_TXY_case @;&lt;BR /&gt;1347 put N_APDC_TXY_events @;&lt;BR /&gt;1348 put COD_TXY_case @;&lt;BR /&gt;1349 put PoisoningSubcohort @;&lt;BR /&gt;1350 put Sex @;&lt;BR /&gt;1351 put BirthDate @;&lt;BR /&gt;1352 put death_dateCOD @;&lt;BR /&gt;1353 put death_dateRBDM ;&lt;BR /&gt;1354 ;&lt;BR /&gt;1355 end;&lt;BR /&gt;1356 if _ERROR_ then call symputx('_EFIERR_',1); /* set ERROR detection macro variable */&lt;BR /&gt;1357 if EFIEOD then call symputx('_EFIREC_',EFIOUT);&lt;BR /&gt;1358 run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1372 PROC EXPORT DATA=CHE.cohort&lt;BR /&gt;1373 (KEEP=PPN NumRecsPerCaseAPDC InAPDC NumRecsPerCaseCOD InCOD&lt;BR /&gt;1373! NumRecsPerCaseRBDM InRBDM APDC_TXY_case N_APDC_TXY_events COD_TXY_case PoisoningSubcohort Sex&lt;BR /&gt;1373! BirthDate death_dateCOD death_dateRBDM&lt;BR /&gt;1374 WHERE=(InAPDC))&lt;BR /&gt;1375 OUTFILE="l:\Cohort.csv"&lt;BR /&gt;1376 DBMS=CSV&lt;BR /&gt;1377 REPLACE;&lt;BR /&gt;1378 RUN;&lt;/P&gt;
&lt;P&gt;1379 /**********************************************************************&lt;BR /&gt;1380 * PRODUCT: SAS&lt;BR /&gt;1381 * VERSION: 9.4&lt;BR /&gt;1382 * CREATOR: External File Interface&lt;BR /&gt;1383 * DATE: 27MAY26&lt;BR /&gt;1384 * DESC: Generated SAS Datastep Code&lt;BR /&gt;1385 * TEMPLATE SOURCE: (None Specified.)&lt;BR /&gt;1386 ***********************************************************************/&lt;BR /&gt;1387 data _null_;&lt;BR /&gt;1388 %let _EFIERR_ = 0; /* set the ERROR detection macro variable */&lt;BR /&gt;1389 %let _EFIREC_ = 0; /* clear export record count macro variable */&lt;BR /&gt;1390 file 'l:\Cohort.csv' delimiter=',' DSD DROPOVER&lt;BR /&gt;1390! lrecl=32767;&lt;BR /&gt;1391 if _n_ = 1 then /* write column names or labels */&lt;BR /&gt;1392 do;&lt;BR /&gt;1393 put&lt;BR /&gt;1394 "PPN"&lt;BR /&gt;1395 ','&lt;BR /&gt;1396 "NumRecsPerCaseAPDC"&lt;BR /&gt;1397 ','&lt;BR /&gt;1398 "InAPDC"&lt;BR /&gt;1399 ','&lt;BR /&gt;1400 "NumRecsPerCaseCOD"&lt;BR /&gt;1401 ','&lt;BR /&gt;1402 "InCOD"&lt;BR /&gt;1403 ','&lt;BR /&gt;1404 "NumRecsPerCaseRBDM"&lt;BR /&gt;1405 ','&lt;BR /&gt;1406 "InRBDM"&lt;BR /&gt;1407 ','&lt;BR /&gt;1408 "APDC_TXY_case"&lt;BR /&gt;1409 ','&lt;BR /&gt;1410 "N_APDC_TXY_events"&lt;BR /&gt;1411 ','&lt;BR /&gt;1412 "COD_TXY_case"&lt;BR /&gt;1413 ','&lt;BR /&gt;1414 "PoisoningSubcohort"&lt;BR /&gt;1415 ','&lt;BR /&gt;1416 "Sex"&lt;BR /&gt;1417 ','&lt;BR /&gt;1418 "BirthDate"&lt;BR /&gt;1419 ','&lt;BR /&gt;1420 "death_dateCOD"&lt;BR /&gt;1421 ','&lt;BR /&gt;1422 "death_dateRBDM"&lt;BR /&gt;1423 ;&lt;BR /&gt;1424 end;&lt;BR /&gt;1425 set CHE.COHORT(KEEP=PPN NumRecsPerCaseAPDC InAPDC NumRecsPerCaseCOD InCOD&lt;BR /&gt;1425! NumRecsPerCaseRBDM InRBDM APDC_TXY_case N_APDC_TXY_events COD_TXY_case PoisoningSubcohort Sex&lt;BR /&gt;1425! BirthDate&lt;BR /&gt;1426 death_dateCOD death_dateRBDM WHERE=(InAPDC)) end=EFIEOD;&lt;BR /&gt;1427 format PPN $14. ;&lt;BR /&gt;1428 format NumRecsPerCaseAPDC best12. ;&lt;BR /&gt;1429 format InAPDC best12. ;&lt;BR /&gt;1430 format NumRecsPerCaseCOD best12. ;&lt;BR /&gt;1431 format InCOD best12. ;&lt;BR /&gt;1432 format NumRecsPerCaseRBDM best12. ;&lt;BR /&gt;1433 format InRBDM best12. ;&lt;BR /&gt;1434 format APDC_TXY_case best12. ;&lt;BR /&gt;1435 format N_APDC_TXY_events best12. ;&lt;BR /&gt;1436 format COD_TXY_case best12. ;&lt;BR /&gt;1437 format PoisoningSubcohort best12. ;&lt;BR /&gt;1438 format Sex bestx12. ;&lt;BR /&gt;1439 format BirthDate date9. ;&lt;BR /&gt;1440 format death_dateCOD date9. ;&lt;BR /&gt;1441 format death_dateRBDM date9. ;&lt;BR /&gt;1442 do;&lt;BR /&gt;1443 EFIOUT + 1;&lt;BR /&gt;1444 put PPN $ @;&lt;BR /&gt;1445 put NumRecsPerCaseAPDC @;&lt;BR /&gt;1446 put InAPDC @;&lt;BR /&gt;1447 put NumRecsPerCaseCOD @;&lt;BR /&gt;1448 put InCOD @;&lt;BR /&gt;1449 put NumRecsPerCaseRBDM @;&lt;BR /&gt;1450 put InRBDM @;&lt;BR /&gt;1451 put APDC_TXY_case @;&lt;BR /&gt;1452 put N_APDC_TXY_events @;&lt;BR /&gt;1453 put COD_TXY_case @;&lt;BR /&gt;1454 put PoisoningSubcohort @;&lt;BR /&gt;1455 put Sex @;&lt;BR /&gt;1456 put BirthDate @;&lt;BR /&gt;1457 put death_dateCOD @;&lt;BR /&gt;1458 put death_dateRBDM ;&lt;BR /&gt;1459 ;&lt;BR /&gt;1460 end;&lt;BR /&gt;1461 if _ERROR_ then call symputx('_EFIERR_',1); /* set ERROR detection macro variable */&lt;BR /&gt;1462 if EFIEOD then call symputx('_EFIREC_',EFIOUT);&lt;BR /&gt;1463 run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 27 May 2026 01:21:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/PROC-EXPORT-bug-Placement-of-WHERE-and-KEEP-in-dataset-options/m-p/988678#M380151</guid>
      <dc:creator>JacquesR</dc:creator>
      <dc:date>2026-05-27T01:21:24Z</dc:date>
    </item>
    <item>
      <title>Re: PROC EXPORT bug? Placement of WHERE and KEEP in dataset options</title>
      <link>https://communities.sas.com/t5/SAS-Programming/PROC-EXPORT-bug-Placement-of-WHERE-and-KEEP-in-dataset-options/m-p/988680#M380152</link>
      <description>&lt;P&gt;This looks like some kind of a bug, report it to SAS tech support.&lt;/P&gt;</description>
      <pubDate>Wed, 27 May 2026 07:08:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/PROC-EXPORT-bug-Placement-of-WHERE-and-KEEP-in-dataset-options/m-p/988680#M380152</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2026-05-27T07:08:30Z</dc:date>
    </item>
    <item>
      <title>Re: PROC EXPORT bug? Placement of WHERE and KEEP in dataset options</title>
      <link>https://communities.sas.com/t5/SAS-Programming/PROC-EXPORT-bug-Placement-of-WHERE-and-KEEP-in-dataset-options/m-p/988920#M380156</link>
      <description>Ok. I did that. Thanks.</description>
      <pubDate>Sun, 31 May 2026 22:34:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/PROC-EXPORT-bug-Placement-of-WHERE-and-KEEP-in-dataset-options/m-p/988920#M380156</guid>
      <dc:creator>JacquesR</dc:creator>
      <dc:date>2026-05-31T22:34:19Z</dc:date>
    </item>
    <item>
      <title>Re: PROC EXPORT bug? Placement of WHERE and KEEP in dataset options</title>
      <link>https://communities.sas.com/t5/SAS-Programming/PROC-EXPORT-bug-Placement-of-WHERE-and-KEEP-in-dataset-options/m-p/988921#M380157</link>
      <description>&lt;P&gt;I cannot re-create your issue using SAS 9.4M8.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How was the CHE libref defined? Is it pointing to a directory with SAS datasets? Or something else, like a foreign database?&amp;nbsp; What happens if you change them both to using the same case for the dataset name (one is using CHE.COHORT and the other has CHE.cohort (lowercase)?&amp;nbsp; It should matter, but perhaps if your libref CHE is not pointing at a library of SAS datasets then perhaps it does matter.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also is there anything strange about the name of the variable that seems to go missing?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt; 73         %put &amp;amp;=sysvlong ;
 SYSVLONG=9.04.01M8P022223
 74         filename csv1 temp;
 75         filename csv2 temp;
 76         
 77         PROC EXPORT
 78           DATA=sashelp.class(where=(age=12) keep=name age sex)
 79           DBMS=CSV
 80           OUTFILE=csv1 replace
 81         ;
 82         RUN;
 
 NOTE: Unable to open parameter catalog: SASUSER.PARMS.PARMS.SLIST in update mode. Temporary parameter values will be saved to 
 WORK.PARMS.PARMS.SLIST.
 83          /**********************************************************************
 84          *   PRODUCT:   SAS
 85          *   VERSION:   9.4
 86          *   CREATOR:   External File Interface
 87          *   DATE:      01JUN26
 88          *   DESC:      Generated SAS Datastep Code
 89          *   TEMPLATE SOURCE:  (None Specified.)
 90          ***********************************************************************/
 91             data _null_;
 92             %let _EFIERR_ = 0; /* set the ERROR detection macro variable */
 93             %let _EFIREC_ = 0;     /* clear export record count macro variable */
 94             file CSV1 delimiter=',' DSD DROPOVER ;
 95             if _n_ = 1 then        /* write column names or labels */
 96              do;
 97                put
 98                   "Name"
 99                ','
 100                  "Sex"
 101               ','
 102                  "Age"
 103               ;
 104             end;
 105           set  SASHELP.CLASS(where=(age=12) keep=name age sex)   end=EFIEOD;
 106               format Name $8. ;
 107               format Sex $1. ;
 108               format Age best12. ;
 109             do;
 110               EFIOUT + 1;
 111               put Name $ @;
 112               put Sex $ @;
 113               put Age ;
 114               ;
 115             end;
 116            if _ERROR_ then call symputx('_EFIERR_',1);  /* set ERROR detection macro variable */
 117            if EFIEOD then call symputx('_EFIREC_',EFIOUT);
 118            run;
 
 NOTE: The file CSV1 is:
       Filename=/saswork/SAS_work7E2E0001F819_odaws02-usw2.oda.sas.com/#LN00192,
       Owner Name=tom.abernathy,Group Name=oda,
       Access Permission=-rw-r--r--,
       Last Modified=31May2026:21:51:56
 
 NOTE: 6 records were written to the file CSV1.
       The minimum record length was 9.
       The maximum record length was 12.
 NOTE: There were 5 observations read from the data set SASHELP.CLASS.
       WHERE age=12;
 NOTE: DATA statement used (Total process time):
       real time           0.00 seconds
       cpu time            0.00 seconds
       
 
 5 records created in CSV1 from SASHELP.CLASS.
   
   
 NOTE: "CSV1" file was successfully created.
 NOTE: PROCEDURE EXPORT used (Total process time):
       real time           0.02 seconds
       cpu time            0.02 seconds
       
 
 119        
 120        PROC EXPORT
 121          DATA=sashelp.class(keep=name age sex where=(age=12) )
 122          DBMS=CSV
 123          OUTFILE=csv2 replace
 124        ;
 125        RUN;
 
 NOTE: Unable to open parameter catalog: SASUSER.PARMS.PARMS.SLIST in update mode. Temporary parameter values will be saved to 
 WORK.PARMS.PARMS.SLIST.
 126         /**********************************************************************
 127         *   PRODUCT:   SAS
 128         *   VERSION:   9.4
 129         *   CREATOR:   External File Interface
 130         *   DATE:      01JUN26
 131         *   DESC:      Generated SAS Datastep Code
 132         *   TEMPLATE SOURCE:  (None Specified.)
 133         ***********************************************************************/
 134            data _null_;
 135            %let _EFIERR_ = 0; /* set the ERROR detection macro variable */
 136            %let _EFIREC_ = 0;     /* clear export record count macro variable */
 137            file CSV2 delimiter=',' DSD DROPOVER ;
 138            if _n_ = 1 then        /* write column names or labels */
 139             do;
 140               put
 141                  "Name"
 142               ','
 143                  "Sex"
 144               ','
 145                  "Age"
 146               ;
 147             end;
 148           set  SASHELP.CLASS(keep=name age sex where=(age=12) )   end=EFIEOD;
 149               format Name $8. ;
 150               format Sex $1. ;
 151               format Age best12. ;
 152             do;
 153               EFIOUT + 1;
 154               put Name $ @;
 155               put Sex $ @;
 156               put Age ;
 157               ;
 158             end;
 159            if _ERROR_ then call symputx('_EFIERR_',1);  /* set ERROR detection macro variable */
 160            if EFIEOD then call symputx('_EFIREC_',EFIOUT);
 161            run;
 
 NOTE: The file CSV2 is:
       Filename=/saswork/SAS_work7E2E0001F819_odaws02-usw2.oda.sas.com/#LN00193,
       Owner Name=tom.abernathy,Group Name=oda,
       Access Permission=-rw-r--r--,
       Last Modified=31May2026:21:51:56
 
 NOTE: 6 records were written to the file CSV2.
       The minimum record length was 9.
       The maximum record length was 12.
 NOTE: There were 5 observations read from the data set SASHELP.CLASS.
       WHERE age=12;
 NOTE: DATA statement used (Total process time):
       real time           0.00 seconds
       cpu time            0.00 seconds
       
 
 5 records created in CSV2 from SASHELP.CLASS.
   
   
 NOTE: "CSV2" file was successfully created.
 NOTE: PROCEDURE EXPORT used (Total process time):
       real time           0.02 seconds
       cpu time            0.03 seconds
       
 &lt;/PRE&gt;</description>
      <pubDate>Mon, 01 Jun 2026 02:01:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/PROC-EXPORT-bug-Placement-of-WHERE-and-KEEP-in-dataset-options/m-p/988921#M380157</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2026-06-01T02:01:17Z</dc:date>
    </item>
  </channel>
</rss>

