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: meridian99
  • Order by date
  1. meridian99

    Training records module

    Our IS grape vine is saying we'll be going to ellipse full suite package. I was wondering if ellipse HR module has a employee training records component, which records training courses taken by individual employees? thanks
  2. meridian99

    what record is the cursor on

    I was wondering if there's a way to determine in forms 10g on a window that displays 12 records in a tabular style if the cursor is sitting on record 1? Need to partially fill in data for record 1 then the remaining records get manually entered by the user. thanks for helping.....
  3. meridian99

    Stepping thru rows

    I have a oracle 10g form that displays 12 records in a tabular style. When a user select a record then I call another window for them to edit the details. when the user exits the 2nd window and returns to the 1st window is there a way to move the cursor to the next record automatically? Not...
  4. meridian99

    DBMS used for Eclipse

    I was wondering what the DBMS product is used on the backend server for eclipse software?
  5. meridian99

    Doing a substr in a select command

    Hello Oracle Vets, I was wondering if there a method for the select that would return records that do not have a value in a field of 'HST-'. Otherwords show me all courses that do not have 'HST-' in the course name. In vb you can do a substring to check for the values but not sure if oracle 8i...
  6. meridian99

    Querying records via a outer join

    Hi fellow SQlers... I'm trying to do a sql command that will return the records that are NOT in another associated oracle table. select * from employees where employeeid not found in employee_history Need to retrieve contractors which are in the employees file but do not exist in the...
  7. meridian99

    Calling a package function

    Hello, I was wondering if a function within a package can be executed from a call in a .BAT file? I'd like to use win scheduler to run a bat file that call a function. Just for testing purposes. Here's the syntax d:\oracle\ora81\BIN\SQLPLUS.EXE -S jobs/xxxx@dbase EXEC pkg_testing.bundles...
  8. meridian99

    Capture sql/pl error code

    I was wondering if there is a way in a script of sql/pl code within the 'exception' block to capture a oracle error code to assist in debugging. My code is failing on an INSERT. thanks
  9. meridian99

    Find a value based on a value

    Is there a technique in oracle sql/pl that I can lookup an associated value based on a numeric code? 1 = crew A, 2 = crew B, 3 = crew C Instead of having to use multi IF statements to determine the crew code based on the numeric value. thanks
  10. meridian99

    find a value based on a value

    Is there a technique in oracle sql/pl that I can lookup an associated value based on a code? 1 = crew A, 2 = crew B, 3 = crew C Instead of having to use multi IF statements to determine the crew code based on the numeric value. thanks!
  11. meridian99

    Date Conversion Fix

    I use the following fix to add the century values to a 2 digit year into a 4 digit year. I found that dates < 1950 are converted into 2048 instead of 1948. update employee_details set date_of_birth = to_char(to_date(date_of_birth,'mm/dd/rr'),'mm/dd/yyyy'); commit; Is there a number of...
  12. meridian99

    re-formatting a date

    Hi Mufasa, your right! my mistake. Works perfect now. thanks again
  13. meridian99

    re-formatting a date

    Hi Mufasa, thanks for the great help. The field size is ok. But when I 'confirm the correctness of the change' using select to_char(to_date(birth_date,'mm/dd/rr'),'mm/dd/yyyy') birth_date from <table_name>; I noticed that all years are prefixed with '20' as in old date = 06/28/64 now shows...
  14. meridian99

    re-formatting a date

    Hello all, I have a date formatting issue and would ask for some sql help. I have a oracle field that is a varchar2 in a table that stores a birth_date value as text in the format of mm/dd/yy as text. I would like to re-format the value into mm/dd/yyyy to include the century and leave it as...
  15. meridian99

    Export excel sheet to text file

    Aside from printing to a file, is there a option in excel2000 where I can export my sheet to a text file? thanks for your help
  16. meridian99

    show the sql for a procedure

    for viewing a stored procedure or function, I use Oracle DBStudio software utility that should reside on the oracle server.
  17. meridian99

    1toMany Records

    I would like to create a sql that provides a single row subquery to search 2 tables. 1 being a master linked to a details which contains 1/more transaction records for each master. for each unique piece of equipment, total up all its costs for a given year as in pump12345, main motor pump...
  18. meridian99

    SQL Loader error 127

    Hello, I'm trying to use oracle v8.1 sql loader utility to load records from a text file into a oracle table. I'm getting 'Return status from loader was 127' error message. No records loaded in table. Anyone run into this 1? thanks
  19. meridian99

    Getting charts to update

    Hello I have a excel2000 sheet with VBA code that retrieves data from oracle and automatically updates several graphs on the sheet. Works ok in excel97, but fails when being run in excel2000. Error message I get when I run the sheet: &quot;run-time error 1004 activate method of chartobject...
  20. meridian99

    FM Server 5.5 Mem Leak

    We recently installed filemaker server 5.5 onto a win2000 compaq server. We've had to reboot the server twice as it appears the FM service has become hung and does not accept any other guest sessions to log on. Once rebooted, the service runs ok for about 2 weeks then slowly performance slows...

Part and Inventory Search

Back
Top