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 Chriss Miller 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 jgotthelf

  1. jgotthelf

    lost the use of shortcuts, desktop, start and quicklaunch

    Hi - FWIW, I have the same problem - but no NTP...
  2. jgotthelf

    How many rows affected by UPDATE statement?

    Hi, I'm accessing Oracle via ODBC Passthrough - and after and UPDATE or INSERT I need to find out how many records were updated. IN SQL Server I do: update table_name set value = 42 where key_field = 11 select @@rowcount If the update was successfull, @@rowcount returns a 1, else it...
  3. jgotthelf

    Function Based Indexes

    Using Oracle 8i, I am trying to create a function based index, as such:<br><br>create index ulname on member(upper(last_name));<br><br>I get the following response:<br><br>ORA-00439: feature not enabled: Function-based indexes<br><br>Does anybody know what I need to do to enable function-based...
  4. jgotthelf

    Timestamp - how to?

    Is there a way to get a Timestamp field in an Oracle table?
  5. jgotthelf

    SP Causing Misterious Compilation Error

    Hi,<br><br>I'm trying to create this SP:<br><br>create trigger test_addid before insert on mytest<br>for each row<br>begin<br>&nbsp;&nbsp;:new.fred_id := select get_my_id.NextVal from dual; <br>end;<br><br>I also tried:<br>:new.fred_id := get_my_id.NextVal<br><br>and some other...
  6. jgotthelf

    &quot;Identity&quot; in Oracle

    Eggselent - the sequence works fine, but I'm not sure how to build the trigger - I have:<br><br>create trigger test_addid before insert on mytest<br>for each row<br>begin<br>&nbsp;&nbsp;:new.fred_id := select get_my_id.NextVal from dual; <br>end;<br><br>I also tried:<br>:new.fred_id :=...
  7. jgotthelf

    &quot;Identity&quot; in Oracle

    Hello,<br><br>I'm just starting to work with Oracle, so forgive me if I'm asking too basic a thing here.<br><br>I am trying to figure the best way to populate the primary key field of tables.&nbsp;&nbsp;Using SQL Server I set the field up as an &quot;Identity&quot; field, which caused the server...

Part and Inventory Search

Back
Top