Since 5/4/2012 8:26:59 PM, bracyr has written 5 articles and participated in 7 conversations. bracyr signature: bracyr
bracyr's articles:
Items(5) /1
SAS/IntrNet Long Execution and Timeout024 (4/10/2009 6:28:19 PM) comp.soft-sys.sas In order to get a report to a web page that pulls data from Oracle that takes more than 60 seconds. I had to break the query into a batch program and keep the connection to the browser alive by passes back a f... Bracy
Check mark in Proc Report121 (4/11/2008 4:21:13 PM) comp.soft-sys.sas I had a request to use a check mark for a RTF document. I used the Wingdings font, character number 252. It did look right as a HTML document. Here is an example of it. PROC FORMAT; value chkMark low-99.99... bracyr
FTP Binary File and Verify347 (11/2/2006 1:52:12 PM) comp.soft-sys.sas I am trying to write a program to download a binary file from the mainframe to a pc and verify it. The pc file does not match the original. Any suggestion would be appreciated. FILENAME A ' main.report.PDF' ... bracyr
Reading a Outlook or Exchange folder with SAS1139 (9/21/2006 3:21:48 PM) comp.soft-sys.sas Step 1 - Create Access table Create table in Access with the new table button and choose "Link Table" Change the file extension to Exchange() or Outlook() Follow the prompts to the folder you desire. Step 2 - ... bracyr
ODS RTF Title Date045 (8/19/2005 6:46:10 PM) comp.soft-sys.sas When I create a RTF document with ODS the title date by the page number is not the date when the report was created. It is the date when someone opens the report with Word. The print date could weeks later. ... bracyr
bracyr's replies:
Items(6) /1
data sets used in the program324 (8/5/2005 2:04:09 PM) comp.soft-sys.sas Hi I wonder if there is a way to retrieve list of all data sets used in SAS program. For example [PROGRAM BEGIN] data x; set sashelp.class; if age>5; run; proc print data=x;run; [PROGRAM END] there shoul... pprimak(29)
reading LOG file of the currently running program745 (8/5/2005 5:49:43 PM) comp.soft-sys.sas Hi SAS users Another problem I ran into is: how to read (I mean assign filename and read in using data _null_) LOG file of the currently running program. In another words I have to include to my "nowrun.sas" s... pprimak(29)
Saving to a CSV File in Mainframe SAS931 (9/21/2006 2:34:26 PM) comp.soft-sys.sas Hi, I know it's possible to write data from a data step to a CSV file in PC SAS, but is it possible to do this in Mainframe SAS? If so, how? Thanks, Joe This e-mail is confidential, if you are not the inten... joe_clarke(14)
FTP Binary File and Verify347 (11/2/2006 1:52:12 PM) comp.soft-sys.sas I am trying to write a program to download a binary file from the mainframe to a pc and verify it. The pc file does not match the original. Any suggestion would be appreciated. FILENAME A ' main.report.PDF' ... bracyr(12)
merge with by VAR but434 (3/7/2007 3:59:06 PM) comp.soft-sys.sas I need to merge two datasets together like below, I need to merge by id but I need every combination of var and var16 and var and var16 are not a common variable is this possible? If so I am not finding what I ... gscsrc(139)