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 wOOdy-Soft 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 listener22

  1. listener22

    Oracle Forms - insert text at current insertion point

    Forms are discussed in Oracle: Enterprise Developer Suite, but that's usually a pretty quiet forum. Jim oracle, vb
  2. listener22

    Inserting information into an access database

    Right before the execute statement, put in msgbox that displays SQL, and see if you can spot an error in the string. Also check if SQL is reserved. Jim oracle, vb
  3. listener22

    Return Length of a String

    Isn't it just len(the_string)? Jim oracle, vb
  4. listener22

    VB / SQL help with add records

    OK, forget my first suggestion. The error message seems to be indicating that "Test" is read only. Can you verify that? Can you write a short routine that opens up Test, reads it, and attempts to update it? Use debug and highlight the various variables to see their values, if...
  5. listener22

    NT operating system command from PL/SQL

    if all else fails, find code for a daemon that will listen for commands via a pipe. You can find code like that on the internet, or in oracle's book on your version of oracle. In the stored procedure, pipe the command to the daemon, which will execute it. Well, in unix it's called a daemon, in...
  6. listener22

    VB / SQL help with add records

    Try moving the addnew outside of the Do section, so that it is a stand-alone command. Jim oracle, vb
  7. listener22

    How to find table name/s if a column name is known

    try sys.dba_tab_columns Jim oracle, vb
  8. listener22

    NT operating system command from PL/SQL

    try host Jim oracle, vb
  9. listener22

    How to put SQL update into a procedure

    Although in an insert method, order by is not needed... Jim oracle, vb
  10. listener22

    Run-time error 2486 - Access 2000 VB error

    Which line in the module does debug highlight? Jim oracle, vb
  11. listener22

    Inserting Array Values into dbase

    I don't remember for sure, but don't you have to provide a break or some such statement to keep the case statement from continuing on to to the next choice? Jim oracle, vb
  12. listener22

    Auto insertion of sequence in tables

    Note that depending upon your sequence buffer setting, among others, that you may experience some gaps in your sequence(s). The buffer gets some number of sequences, say 10 or 20, but if they're not used in some period of time, the remaining are tossed and the sequence starts again at a higher...
  13. listener22

    Long data tye

    Isn't there a way to convert a long to a varchar2, assuming the long isn't over 32k or whatever the current limit is? You could then convert the varchar2 to a number. Jim oracle, vb
  14. listener22

    Create XML using PL/SQL

    There's a book something like XML and Oracle that shows how to generate XML using Oracle commands. I'll take a look at the title tonight if you can't locate it. Jim oracle, vb
  15. listener22

    Cannot find data after commit

    is your exe multi-thread? Jim oracle, vb

Part and Inventory Search

Back
Top