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!

Search results for query: *

  • Users: lhugh
  • Content: Threads
  • Order by date
  1. lhugh

    how do you use Flashback query in Oracle9i

    if somebody deleted some records by mistake, is it possible for me to retreive the data using flashback query. If yes, how do i do that?
  2. lhugh

    who to find all jobs running in Oralce9i

    Is there a view to find out what jobs are scheduled in an Oracle database? And how do I turn off a job(s)? I think there is a DBMS package but I forgot which one it is Thanks
  3. lhugh

    set up Oracle networking from a private network

    if my oracle server has a private IP address and so does my oracle client, how do I set up those two computer so that the client can see the server? what is the easiest way to achieve this? This is only a test environment and has no sensitive data
  4. lhugh

    8i database vs 9i database

    I was asked at work for the difference between an Oracle8i database and an Oracle9i database I am not sure how to answer this question, any suggestions?
  5. lhugh

    how to force user to change his/her password on login?

    How do I force my user to change his/her password when the user login?
  6. lhugh

    How do I find all jobs running on my Oracle9i server

    and how do I shut down the job that I do not want to run? Thank you all
  7. lhugh

    is it possible to alter a column name?

    I would like to alter a column name of my table. Is it possible to do it?
  8. lhugh

    error oracle.jdbc.driver does not exist

    I got this error Generated servlet error: [javac] Compiling 1 source file C:\Program Files\Apache Software Foundation\Tomcat 5.0\work\Catalina\localhost\khoa\org\apache\jsp\MainOracleConnection_jsp.java:62: package oracle.jdbc.driver does not exist DriverManager.registerDriver(new...
  9. lhugh

    retreive XML data into a Java Bean

    does anybody have an example for this problem: retreiving data from an XML file into a JavaBean? I want to: ** Extract data from XML file ** Temporary store data into a bean ** Insert (bean) into MySQL database thanks
  10. lhugh

    java application to run a batch file

    I need to run a batch file (test.bat) in c:\windows\test.bat I would like to create a Java application to run my above batch file. Is it possible?
  11. lhugh

    how to create an XML file from a select statement?

    Is it possible to do that? For example can I create an XML file from the below select statement? SELECT firstname, lastname FROM employee
  12. lhugh

    get date in a specific format

    which function can I use to select the date in order to return date in this format YYYY-MMM-DD Thanks
  13. lhugh

    How do I use curdate() function

    Why curdate() does not work for my query? I would like to to find all softwares that are going to expire within the next 60 days. The query should have returned 3 rows, not 2. Here is the list of all records in my table: mysql> select title, expiry_date from license...
  14. lhugh

    change statspack default report location

    how do I change the default report location when you run spreport.sql? What is the default location and how do I change it? for some reason my reports are being saves to C:\ directory Thank you
  15. lhugh

    error while running statspack -"unable to exetend index"

    Does anybody know what this means? Thanks ---------------------------------------- SQL> variable snap number; SQL> begin 2 :snap := statspack.snap; 3 end; 4 / begin * ERROR at line 1: ORA-01654: unable to extend index PERFSTAT.STATS$SYSSTAT_PK by 256 in tablespace TOOLS ORA-06512...
  16. lhugh

    tutorial for creating a trigger in MySQL

    does anybody know where I can find a tutorial on creating trigger in MySQL I have a fied called expiry_date, I want to create a trigger on this field and that if the current date is a month prior to expiry date, my database will send an email to remind the system admin to do something. Where...
  17. lhugh

    XSLT multi conditions testing

    my XML has Year: Weight: Price: I would like to diplay all records with Year > 1980, Weight < 50 lbs and price < 5.00 How do I express this in XSL Thanks
  18. lhugh

    how to delete and re-create an SPFILE

    I need to reset some of my parameters. My database is using an SPFILE right now. I am thinking bout creating a pfile from spfile, edit the pfile and re-create the spfile I am able to create the pfile but I can't create the spfile. Oracle gives me an error saying that there is an spfile already...
  19. lhugh

    how to list all tables for a users?

    I would like to list all the table that belong to John Doe a regular user in my database. How do I do that in DB2? Thanks
  20. lhugh

    java JDBC connectivities to DB2

    does anybody know DB2 JDBC connectivities? i found a few sample codes on the net but i couldn't get anything to work

Part and Inventory Search

Back
Top