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 TimGoff

  1. TimGoff

    Reading all the filenames in a directory

    Dave, I'm only calling the procedure from SQL*Plus as a test. Normally it will be called from within another stored procedure. I'm looking to get the directory contents of a folder which sits on the Oracle server rather though - don't know if that makes a difference? Thanks for your continued...
  2. TimGoff

    Reading all the filenames in a directory

    Dave I would like to run the routine from inside a PL/SQL stored procedure (the files are passed to another routine, and the data imported into the db.) Tim
  3. TimGoff

    Reading all the filenames in a directory

    Hi I tried running it and receive the following error. Would you have any idea what the problem is? SQL> exec get_dir_list( '/MRU_MUSIC_FILE' ); begin get_dir_list( '/MRU_MUSIC_FILE' ); end; ORA-29532: Java call terminated by uncaught Java exception: java.lang.NullPointerException ORA-06512...
  4. TimGoff

    Reading all the filenames in a directory

    Thanks, never tried it before but will give it a go...
  5. TimGoff

    Reading all the filenames in a directory

    jimirvine, Thanks for your quick response. I'm running 9i unfortunately at the moment - I believe I read dbms_backup_restore.searchfiles is only available in 10g? Thanks, Tim
  6. TimGoff

    Reading all the filenames in a directory

    Hello, Does anyone know how I could use PL/SQL to find all the file names that are in a specific folder? Thanks, Tim
  7. TimGoff

    Using Proxy server with FtpWebRequest

    Hello, I'm using FtpWebRequest - I can succesfully FTP files, but can't find a way to set the Proxy server. I've got this far and got stuck: Dim ProxyServer As IWebProxy Dim webProxyUri As New Uri("ftp://my_ftp_proxy") ProxyServer.Credentials = webProxyUri result.Proxy = ProxyServer Any...
  8. TimGoff

    Adding ID as index in Listbox

    Kalisto, Thanks for your reply. Where can I find the Listitem object? Tim
  9. TimGoff

    Adding ID as index in Listbox

    Hello all, I'm currently migrating some code from VB6 to .NET v2. In VB6 I populated the list box with the code below, using Channel_ID as the index. I can't find a way though to do this in .NET. Has anyone any thoughts? lstListBox.AddItem !Channel_Name...
  10. TimGoff

    Reading XML doc using PL/SQL

    Hi Has anyone got sample code on how to read an XML file using PL/SQL? Thanks in advance Tim
  11. TimGoff

    Out of memory error in Access VBA editor

    Hi I have a fairly large Access db (about 1GB) that has been working absolutely fine. Now everytime i attempt to edit some code, or insert new code it deletes the line and gives me an 'out of memory' error Looking at the help it says reduce the amount of public variables - I have 10 of them...
  12. TimGoff

    ADODB Recordset returns NULL, Access Query Returns Records?

    Hello, I open a ADODB recordset using the following SQL (using the connection string CurrentProject.Connection), and the recordset is NULL. If a paste the SQL into an Access query and run - it returns 4 records. I don't understand - is anybody able to shed light on this please? Thanks in...
  13. TimGoff

    Function doesn't return value...but does not throw error

    Tharg, Many thanks for all your comments, I've read through a few times and I've learnt alot from what you've said. The reason I wrote the code with SELECT DISINCT is that SELECT DISTINCT READY_FOR_TX_CODE INTO v_ready_for_tx FROM PROG_MEDIA_SEGMENT WHERE PROG_MEDIA_ID =...
  14. TimGoff

    Function doesn't return value...but does not throw error

    Hello, I use the following function in a query. It doesn't return any result in the field - but also doesn't return an error. Can you see what's wrong? Thanks in advance Tim create or replace package body UKTV_TOOLS_PKG is FUNCTION Get_Ready_For_TX_Flag(v_prog_media_id NUMBER) RETURN...

Part and Inventory Search

Back
Top