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 dencom 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: pjeypal
  • Content: Threads
  • Order by date
  1. pjeypal

    Script to drop packages

    A simple one.I need a script to drop all packages in a schema where name starts with 'T_%'
  2. pjeypal

    Creating a user which is an exact copy of an existing user in a databs

    Hi For testing purposes i need to create a schema in an oracle database which is an exact copy of an existing schema in the same database. Which is the simplest way to do this? Is there any command Thanks PJ
  3. pjeypal

    Closing a URL Connection

    I have an application which opens a URL connection and i found that even after completing the operation the session is hanging and not getting closed Any suggestions import java.net.URLConnection; import java.net.URL; import java.io.IOException; import java.util.HashMap; import...
  4. pjeypal

    Error when executing a java program

    I am trying to compile this class import java.sql.*; class JdbcTest1 { public static void main (String[] args) { try { // Step 1: Load the JDBC driver. Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); // Step 2: Establish the...
  5. pjeypal

    Refresh connection to database every 5 seconds through a java program

    Hi I am writing a small java program to connect every 5 seconds via the jdbc-odbc bridge driver. Is there any option to refresh connection every 5 secs? Thanks in advance
  6. pjeypal

    Store values returned by a select statement in an array and display it

    I need to list public views, their owners and column names in each view I have written the query to display views and owner names but cant figure out how to display column names for each view under the view. I am adding my script below Could someone help me with this declare viewname...
  7. pjeypal

    Display data in a text file in HTML page in Tabular format

    Hi Can anyone suggest an easy way to display the data in a txt file in tabular format in HTML page dynamically The content of text file is something like this prompt prompt List user information V8 @user column c1 heading "User Information@100" format A30 column c2 heading "User ID@45"...
  8. pjeypal

    Problem using Oracle Thin Driver

    Hi I am using ORacle thin driver to establish connection to Oracle 9.0.1 but found that the connection is extremely slow and i have problems accessing table in database. Does anyone have the coding for using oracle thin driver with oracle 9.0.1 This is my coding...
  9. pjeypal

    Using Apache POI for writing to excel file

    Hi, I am using Apache POI to write data to an excel sheet from oracle table using java.I downloaded zipped file for poi from the site.But i am not able to locate jakarta-poi-1.5.1-final-20020615.jar file anywhere after unzipping the same. How to install the same? Also i need to overwrite an...
  10. pjeypal

    Writing to an excel file from oracle table

    Hi, Importing data to oracle from Excel is working perfectly with the JDBC-ODBC brdige driver.But when i try to export data back from oracle to Excel using the same method its raising exception Exception:[Microsoft][ODBC Excel Driver] Operation must use an updateable query. I'm adding the...
  11. pjeypal

    Exporting and Importing between Oracle database and Excel file

    Hi, I have an XLS file with over 1000s of records which i need to export to an oracle table with the same record structure as excel doc.I wrote this code for transferring data from excel to oracle. import java.sql.*; public class XLSHandler { public PreparedStatement xlsData; public...
  12. pjeypal

    Changing the level of hierarchy in JTree based on a condition

    hi, Hi, I have a dynamic JTree built from records in an oracle database.I created the tree with two fields location and description displayed side by side on the tree, something like this : Root | location :: description . . location4000 :: description4000 There is a third field parent in...
  13. pjeypal

    Editing a leaf in JTree and updating changes to database

    Hi, I have a dynamic JTree built from records in an oracle database.I created the tree with two fields location and description displayed side by side on the tree, something like this : Root | location :: description . . location4000 :: description4000 I want the description field to be...
  14. pjeypal

    Dynamic JTree from database query,how 2 build JTree wth dynamic hierar

    Hi, Can anyone help me with a code for dynamically create a JTree hierarchy using data retrieved from an oracle table. Thanks, Priya

Part and Inventory Search

Back
Top