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 bkrike 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: acct98
  • Content: Threads
  • Order by date
  1. acct98

    Concatenation (Too Many Records)

    I'm have a question. When I execute the following script I get too many records. In the F887rpt table there is only 20,000 records. However when I run the script below 20,100 are selected. I was only expecting to get 20,000 records. Can someone please tell me why I am getting more than...
  2. acct98

    SQL Loader Control Files (Log)

    I had all my control files on a floppy and the floppy went bad. Anyway, Is there a log file in Oracle the maintains executed SQL Loader scripts?
  3. acct98

    Code Needed for Accounts Receivable Aging Report

    Im not try to recreate the wheel. Does anyone have SQL code to create an aging report?
  4. acct98

    Cursor: Not updating null fields

    I have yet another question. I can get the cursor (below) to work. However, if the field is null it will not update the record(s). Does anyone have any ideas on how to get the cursor to update the records whether it's null or not? DECLARE v_ssn_update...
  5. acct98

    Comparing Names [with space and without space]

    I have two tables: TABLE A TABLE B SSN 123456789 SSN 123456789 NAME DOE, JOHN VNAME DOE,JOHN I would like to seleced all records from both tables where the SSN & NAME are the same. However, in the example above there is a space between the last name and first name in...
  6. acct98

    Delete Statement

    Does anyone know a simple way to get this delete statement to work? SQL> DELETE 2 FROM Z 3 WHERE SSN||VENDORID = (SELECT SSN||VENDORID 4 FROM F) 5 / WHERE SSN||VENDORID = (SELECT SSN||VENDORID * ERROR at line 3: ORA-01427: single-row subquery returns more...
  7. acct98

    PL/SQL CURSOR COMPARISON/LOOKUP

    Desired output: Doe, John E 1234567891234567 Yes Doe, Johnnie R 1234567891234567 No Im trying to look up/loop to see it the credit card number in table_A can be found in table_B -- If I can find the credit card nubmer then Yes otherwise No DECLARE...
  8. acct98

    Reserved Words in Oracle

    Does anyone know if "Hidden" and "Visible" are reserved words in Oracle 9I?
  9. acct98

    Script to See the Before and After Update

    Does anyone have a scrip that will provide the before and after results of an update statement?
  10. acct98

    Deleting Password

    Does anyone know of a backway into access that i can use to delete the current password.
  11. acct98

    Where Clause ?

    Does anyone have an ideal how to do get this to work? SELECT ACCT_STRING,LASTNAME, FIRSTNAME FROM zeg_user_def_string where ((STN > '300' and stn < '500') AND rpad(SUBSTR(ACCT_STRING,20,6),6,' ')||rpad(SUBSTR(ACCT_STRING,16,2),4,' ')||rpad(SUBSTR(ACCT_STRING,31,4),4,' ') NOT IN ('0129A140 04...
  12. acct98

    Concatenation ?

    What happens to the leading or trailing spaces when you concatenation two fields?
  13. acct98

    Nested IF Script

    Does anyone have a nested if script that they can provide as an example? Im trying to do nested if one column.
  14. acct98

    Lower Case Letters

    Does anyone have a script to search for lowercase letters in a sting?
  15. acct98

    Oracle Backup using Windows Scheduler

    Has anyone tryied to backup an oracla db using Window scheduler? I have oracle installed on Windows XP.
  16. acct98

    ORA-1033 Error (Advanced Question)

    This one will make you laugh and me cry! Well lets begin - I am now receiving and ORA-1033 Error. I know why this is happening. This is because I can connect to the database which is on an external drive. Anyway here is where it gets interesting -- I physically dropped the hard drive...
  17. acct98

    Lookup within a VLookup in Execl

    Has any tried to use a lookup function within a vlookup functions?
  18. acct98

    Counting Actual Characters

    Does anyone know the syntax or code that will count characters and not spaces? i.e &quot;t w&quot; should = 2 length = 3
  19. acct98

    Spool out question

    How do you stop printing the same record over again when spooling the output? I would just like to see the first record of the like records only.
  20. acct98

    TEXT SHIFTING DURING IMPORT

    I have viewed a text file using textpad and all of the columns line up. Nevertheless, after doing an import of the text file into Access the position of the previous lined up columns have shifted. Does anyone have any ideas why this is happending? I tried the import specifications and the...

Part and Inventory Search

Back
Top