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

    Problems installing unixODBC on Linux

    ODBC is used to enable a large scope of applications to connect database without re-inventing the wheel for each database (e.g. Windows Office, OpenOffice, ... are able to connect *ALL* database through ODBC). It is not to avoid client licensing. I already ask the question on another thread...
  2. ThJ

    db2 remote access?

    What do you mean with connect? running DB2 commands line ? Use the conneciton with a language? Perl? Cobol? Java? .... For Java the solution is to use JDBC and the JDBC connector is coming with the DB2 server (no needs to buy something else) HH, Thierry
  3. ThJ

    Problems installing unixODBC on Linux

    There are some DB2 trial stuff but not sure for BSD OS (check at http://www6.software.ibm.com/devcon/devcon/cgi-bin/dccustom.cgi) If you want/can use Java, there is a JDBC connector (needs to be actived on your server) AND the jdbc library is coming when you install DB2 server (look for...
  4. ThJ

    Problems installing unixODBC on Linux

    More than a "client" it is the library used to access the remote DB. For DB2 I finally installed DB2 Connect which provide ODBC librairies and more. Actually I don't know how to get the ODBC librairies alone. Thierry
  5. ThJ

    What does this command do? find . -name cgi-bin -exec ls -la {} \;

    yes locate is very fast ... if the file's path is already stored in locatedb. If you are trying to locate a "new" file this db isn't updated and there is no result even if the file is there. I guess the update is run once a day, but you can force the update with the updatedb command.
  6. ThJ

    "new" Linux attack?

    Were you running Samba on this server? I've been hacked through Samba a while ago, and your script sounds familiar to me.
  7. ThJ

    Changing CVS host in Eclipse IDE

    I don't use Eclipse, but a way to turn around is to define your CVS server in the hosts file and update it when needed: 127.0.0.1 localhost www.xxx.yyy.zzz YourCVSServerName And target Eclipse on YourCVSServerName. HTH, Thierry
  8. ThJ

    Trying to browse to 8080

    VJ, it seems localhost is not resolved. Check your C:\Windows\System32\drivers\etc\hosts file. It should content at least: 127.0.0.1 localhost TJ
  9. ThJ

    what directory is top in?

    I guess you are looking for the "top" command /usr/bin/top Hope this help Thierry
  10. ThJ

    First Row in a table

    you can try: select 'Colums' from Table [order by ...] fetch first 1 rows only Thierry
  11. ThJ

    Slow TCP/IP Performance

    Another clue: Coming on a new site, I remember I got TCP/IP speed issues because /etc/hosts hadn't an entry for itself. Thierry
  12. ThJ

    how do I delimit a ')' charachter in the command line

    try with db2 "connect to test_db user test using 'bt)%r'" Hope this can resolve your problem Let us know Thierry
  13. ThJ

    Problems installing unixODBC on Linux

    I've got the same problem with Red Hat 7.3. But I've edited /etc/odbcinst.ini and /etc/odbc.ini with vi to create entries, copied /etc/odbc.ini as ~/.odbc.ini and it works. I'am able to run isql command. Actually ODBC works with a remote MySQL DB but I am not able (so far) to run it with a...
  14. ThJ

    opening a http:// from dos prompt ?

    I didn't find a way to turn around the alert message. Sorry
  15. ThJ

    opening a http:// from dos prompt ?

    Hi, you can try something as: C:\>"C:\Program Files\Plus!\Microsoft Internet\IEXPLORE.EXE" "Javascript:Test=wi ndow.open('http://google.com');setTimeout('Test.close();window.close()', 2000);" This will open a first window to execute the javascript. This Javascript will open...
  16. ThJ

    Where to get Samba?

    2 ways: sources: http://www.samba.org (need to be compiled) binaries: ftp://ftp.samba.org/pub/samba/Binary_Packages/AIX/

Part and Inventory Search

Back
Top