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 SkipVought 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
  • Order by date
  1. lhugh

    handling multiple values in result set

    Good point. Another way to do it is to create a class for the sample table public class Sample { private int field1; private string field2; some getter and setter } * Create an array, list of the type Sample * iterate through your object with a while loop and while (object.hasnext() )...
  2. lhugh

    handling multiple values in result set

    why can't you write a sql statement like this SELECT * FROM sampe WHERE name IN (SELECT DISTINCT(name) FROM sample)
  3. lhugh

    UTL_FILE utility

    How can you get to the file from SQLPLUS sqlplus > $ <enter> c:\cat filename when you are done viewing c:\exit sqlplus>
  4. lhugh

    Oracle 9i Newbie

    Greg, you do all the work in the command prompt in windows or unix/linux c:>sqlplus/nolog sqlplus> connect sys as sysdba password: <enter password > sqlplus> {do your work here}
  5. 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?
  6. 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
  7. 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
  8. lhugh

    Taking and 8.1.6 hot backup and recovering to 9.2

    I totally agree with Dave that it's best to use the same version. I do not think that a backup from 9i will work with 9i Here is my question, if we are to re-create a database on 9i, re-use the controlfile and datafiles from the 8i database, what will happen? We can change the compatibility in...
  9. lhugh

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

    The application that we use mostly is SQLPlus All my team members do not change their passwords. I want to force them to change it Thanks
  10. lhugh

    8i database vs 9i database

    thank you Dave. You are THE man :)
  11. 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?
  12. 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?
  13. lhugh

    Statspack

    I am sorry I didn't understand where DBA studio comes from? How do I find it? I also would love to know more about statpacks so please post anything that you find helpful thanks
  14. 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
  15. lhugh

    error oracle.jdbc.driver does not exist

    thalak did you get everything to work? if you can not complile using NetBeans, try to compile your project straight from the command line (using javac and java) I was not able to get my NetBeans to work with the Oracle thin driver, however, I was able to compile my project from the command line
  16. lhugh

    XML Reality Check

    simon are there any good DOM and SAX tutorial that can help me learn these technology?
  17. lhugh

    is it possible to alter a column name?

    thanks

Part and Inventory Search

Back
Top