3

Is there a way that will remove

the sas system

from Log? title; or title ''; i still can see this lable in log

Joe
  • 62,789
  • 6
  • 49
  • 67
deweweb
  • 41
  • 4
  • In Log, or in Output? `title;` or `title ' ';` (with a space) should remove the `The SAS System` title from the output. – Joe Mar 24 '14 at 13:53
  • Yep, the question how to remove it from the log? – deweweb Mar 25 '14 at 15:59
  • I don't see it in the log, so I don't know what you're asking. Moreover, why would you need to remove it from the log? – Joe Mar 25 '14 at 15:59
  • The sas program stores log in a file and it cosists of many line, can be about of million... But after each 40 lines i recieve this senseless message "The SAS System" – deweweb Mar 25 '14 at 16:06
  • Ah, okay; in EG there is such a thing, didn't notice that tag originally. – Joe Mar 25 '14 at 16:10
  • yep, you can find it in eg also when using scl language – deweweb Mar 25 '14 at 16:20

1 Answers1

2

You can limit how frequently the page breaks occur by going to Tools -> Options -> Results General and setting the PS (page size) to 32767 (the max legal value). That will reduce them significantly. Not sure if there's a way to remove it entirely.

Joe
  • 62,789
  • 6
  • 49
  • 67
  • can i do it in sas code that i will use it not ony with EG? – deweweb Mar 25 '14 at 16:26
  • Also a good idea to post this q to communities.sas.com as some of the Devs post there – Joe Mar 25 '14 at 16:28
  • To change the PAGESIZE (alias PS) or LINESIZE (alias LS) option use the OPTIONS statement in SAS code. `options ps=32767;` – Tom Aug 29 '22 at 13:14