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: *

  1. fsnyder

    UNIX environment variables for Oracle login

    Thanks, all The last two are options for setting the Oracle login in the .profile of a production UNIX ID instead of hardcoding it in multiple shell scripts. Whether it's good practice or not, I don't know.
  2. fsnyder

    UNIX environment variables for Oracle login

    I'm looking for environment shell variables to be created within my .profile that would provide the user ID and password for the Oracle instance on that server. These would be in additon to ORACLE_HOME and ORACLE_BASE. I seem to remember having these at a previous job a few years back. Then...
  3. fsnyder

    Import Logon Statement for FastLoad

    Problem Description: I inherited a job stream consisting of ten fastload jobs. They all have the logon hardcoded at the beginning. I would like to import the logon statements using .RUN but get the following unexplained error : = FASTLOAD UTILITY VERSION 07.05.00...
  4. fsnyder

    Disk Space by Table

    A group of users maintains tables in a database with a limited disk space ... Is there a way to determine the absolute and/or relative amounts of disk space each table is taking up within the database ? Hopefully there's an SQL based solution. Thanks
  5. fsnyder

    access SAS from Queryman

    I know that there is a SAS ODBC driver that would allow applications such as Excel and Queryman to read a SAS dataset using SQL syntax. You would need to use the documentation from SAS Institute to set this up. Don't know how complicated that is. Good luck.
  6. fsnyder

    Merge Vs Proc sql

    Aside from performance times, you won't always get the same result from proc SQL, merge. If there are duplicate values in the fields you are joining/merging on for more than one fo the datasets, proc sql will provide the more predictable result.
  7. fsnyder

    Basic Javascript Navigation Function

    Thanks, Glen I got this to work using the history object : window.history.go(-1); Fred
  8. fsnyder

    Basic Javascript Navigation Function

    I have an HTML page that uses javascript to open a Java applet in a full sized new window. That's all it does. After the new window opens, I would like the parent window to go back to the previous URL. Is there a JavaScript function that accomplishes the same thing as the browser back button ?
  9. fsnyder

    How to catch the NT envirentment variable

    Mike, Try to use a pipe filename statement with the dos 'SET' command. You will return info about system variables to a data step and then can parse out the ones you want : filename env pipe 'set'; data _null_; infile env; length vars $ 500; infile env lrecl=2000; input vars &; varname =...
  10. fsnyder

    Downloading to SAS from Unisys mainframe

    I will assume you are running PC SAS and the data needs to come back to you PC. Does the mainframe have SAS installed? Can you remote connect to it? If so then track down a mainframe SAS program that connects to the database and retrieves data using a pass thru query. Remote connect to the...
  11. fsnyder

    VBA to login to Teradata and bring table back to Excel

    Create and test a file DSN to access your teradata database. From excel, choose data-> get external data-> new database query and select the name of the DSN you just created. Follow the prompts to create and run a query. After you have that working, start recording an excel macro and repeat the...

Part and Inventory Search

Back
Top