Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: jawon
  • Order by date
  1. jawon

    Stopping automated program upon error

    Is there a way to set up a sas program to stop when it encounters an error? And a secondary question is whether there is some kind of error notification capability directly in sas. This is for an automated sas program on linux.
  2. jawon

    Leveling groups

    For example... GroupA=100 GroupB=50 GroupC=20 Etc. I need to distribute these groups into the 9 cells. Then I would get a total sum for each cell. The standard deviation of the cell totals should be as small as possible (ie, the range between the largest and smallest cell should be as small as...
  3. jawon

    Leveling groups

    I don't even know correct terminology for this type of work so I'll try to explain... 1. I have about 50 groups that each have a varying number of people in them. For example, GroupA=100, GroupB=50, etc. 2. I would like to assign them each into one panel within a 3x3 matrix in a way where all...
  4. jawon

    Protecting fields in a template

    Thanks for that response. I was afraid of that. By the way, I also can't seem to figure out the best way to make my own template available to others. In other words, how do you make a template that you've created available in the template section when someone does a File > New? Or is there...
  5. jawon

    Protecting fields in a template

    I have template with a customized field that uses a formula and graphical indicators. Is there a way to protect specific fields of a template so that a proj mgr cannot change the customized field?
  6. jawon

    Protecting a resource pool

    I am using Project 2000 and trying to set up a master project plan that is linked to multiple subprojects plus a resource pool that includes our internal dept. Ideally, I'd like the RESOURCE POOL TO BE PROTECTED but also allow the subproject mgr to ADD OTHER RESOURCES TO THEIR SUBPROJECT. How...
  7. jawon

    forwarding unix mail

    No no no... my "regular" company email is on outlook. On unix, is there a way to find out which mail software it is? I'm on SunOS 5.9, if that helps.
  8. jawon

    forwarding unix mail

    What's MTA? And if you're asking about the email software, it's MS Outlook.
  9. jawon

    forwarding unix mail

    I know cron jobs will send me mail to my unix account with any error messages. Plus I send out email via programs running on unix. In both cases, I receive unix mail containing the error messages or a response from my original email. But I'd like to forward all this to my company email since I...
  10. jawon

    where to find half-height firewire card?

    I'm trying to find a firewire card but my computer is a Gateway micro tower (compact in size) and therefore requires a "half-height" firewire card. I guess this size is no longer a standard and so I can't seem to find one. Anyone know where I should look?
  11. jawon

    add text at end of each line

    I have a pipe-delimited flat file (say, myfile.txt) that looks something like... 2004-03-16 | user | action Within a shell script, I'd like to add some text at the end of each line so that the resulting file would look like... 2004-03-16 | user | action | 1 What is the easiest way to...
  12. jawon

    show possible non-printing characters

    I have a flat file and am trying to figure out if it is delimited with any non-printing characters (like tabs). In vi, I just see blanks between the fields, so is there a way to show ALL characters to determine the delimiter?
  13. jawon

    stopping mail from a script

    I have a script that contains something like the following in order to ftp in some files... ftp << EndFTP open thatserver ascii prompt get newfile.log close EndFTP I have it set to run daily in crontab and it works fine. However, I receive an email in my unix mailbox each time this script...
  14. jawon

    Identify first Monday of the month

    I'd like a script to complete only if it is the first Monday of the month. Can this be done in the crontab file or do I have to do an if/then within the script? If the latter, how?
  15. jawon

    lpr for long lines of text

    I'm using the &quot;lpr&quot; command to print to a network printer but the file contains long lines of text between line breaks so the lines bleed off the page and do not get printed. So how can I get all the text printed?
  16. jawon

    windows status code

    Not HTTP status codes. WINDOWS status codes. As I understand it, the IIS logs include status codes that are specific to Windows. There doesn't seem to be any documentation from MS.
  17. jawon

    windows status code

    In the IIS log, there is a variable called &quot;windows status code&quot;. What are the values and definitions?
  18. jawon

    .netrc to connect from unix to windows

    I am trying to autoconnect using .netrc from unix to a windows machine. The access has been set up but when I set up the .netrc file with... machine windowshost login domain\mylogin password mypassword ...I get the error... User domainmylogin cannot log in. Login failed. Please login with...
  19. jawon

    Can't ftp within if statement

    Nope, that doesn't do it. Same error. And I do want to auto login. Any other ideas? Thanks.
  20. jawon

    Can't ftp within if statement

    I'm trying to ftp in a file if it doesn't already exist on my local host. The code is something like this... mydir=/mydir if [[ ! -s myfile ]] then ftp << EndFTP open remotehost ascii prompt cd /opt/newdir get remotefile.log $mydir/myfile close...

Part and Inventory Search

Back
Top