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!

Recent content by skipizza

  1. skipizza

    Timestamp conversion

    Yes, the SELECT TO_DATE('31-SEP-02') - TO_DATE('01-SEP-01) FROM DUAL; works fine. Thanks. However, I could not get the UTC date, actually a UNIX timestamp based on standard UNIX epoch of 01/01/1970 at 00:00:00 GMT, to convert. SELECT TO_CHAR(1001000000, 'MM-DD-YY') FROM DUAL...
  2. skipizza

    Timestamp conversion

    How does one convert UTC timestamps to human readable form? I could not find a function to do this. Also, is there a function to calculate days between dates? Thanks!
  3. skipizza

    How to query from somewhere in the middle of table

    carp, I think most of the time it does. I suppose Oracle does not guarantee the same order every time because some select statments process in parallel.
  4. skipizza

    How to query from somewhere in the middle of table

    Thanks, both methods work. The inline view works well on a very large table, too.
  5. skipizza

    How to query from somewhere in the middle of table

    How does one query starting from the middle of a table? Suppose there is table with 500 rows and the first 250 rows were selected. SELECT * FROM table1 WHERE rownum < 251; How can the second 250 rows be selected? How does one select the 300th to 399th row?
  6. skipizza

    Combine tables, duplicate key rows

    All 3 tables have same columns. SQL> desc acma1 Name Null? Type -------------------- ------------------ k$$oid NOT NULL VARCHAR2(20) seq$$ NOT NULL NUMBER(11) value VARCHAR2(20) The key fields would be k$$oid and value.
  7. skipizza

    Combine tables, duplicate key rows

    I would like to combine three Oracle 8i tables into one. However, when combined there are duplicate key rows. How can I delete them or create the combined table without allowing the dupes? Thanks.
  8. skipizza

    SQLLDR, specify database

    The sqlldr statement should read: sqlldr uid@host/pwd
  9. skipizza

    Combining Tables, Deleting Duplicates

    I would like to combine three Oracle 8i tables, but when the tables are combined there are duplicate key rows. How can I create a combined table without the duplicate key rows or how can I delete the duplicate key rows?

Part and Inventory Search

Back
Top