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: *

  1. comgrit

    How to create a cursor which the table name is dynamic

    Hi, I'm trying to create a cursor within a procedure that have a tablename as parameter. This example is showing what I intend to do: create or replace procedure test (p1 varchar2) as cursor c1 (tabname IN varchar2) is select distinct prod_code from tabname; c1_rec c1%ROWTYPE...
  2. comgrit

    Getting XML data into a SQL database

    Hi, I have a silimar request - getting an XML data file and would like to import it into a table in an Oracle database. Any advise of where to start with. Thanks in advance. Comgrit
  3. comgrit

    Help needed : Error attribute defined twice : language

    Thanks for the advice. However, the issue is not really the code itself. I finally found that there are something wrong in the underlying RDBMS access. now it is solved. Without changing this code.
  4. comgrit

    Help needed : Error attribute defined twice : language

    Hi, I'm implementing a J2EE application that has been run successfully in QA. Now I'm moving it to production. The same JSP that worked in QA do not work in production. Here's error message. ========================================= 500 Internal Server Error OracleJSP...
  5. comgrit

    OracleJSP Error -- attribute defined twice: language

    Greetings, I have a problem about inconsistency of 2 environment. The system consist of : QA Environment: Oracle RDBMS 8.1.7.4 (in #1 HP-UX box) Oracle 9IAS running J2EE 1.2 (in #2 HP-UX box) Production Environment: Oracle RDBMS 8.1.7.1b (in #3 HP-UX box) Oracle 9IAS running J2EE 1.3 (in #4...
  6. comgrit

    ls with timestamp

    Thank you very much. This is really help as to get me starts. I can take care of the rest.
  7. comgrit

    ls with timestamp

    I'm trying to extract the filename and date/time stamp of each file in YYYYMMDDHHMMSS format. For example $ ls -l total 26 -rw-rw-r-- 1 idwcq idwcq 0 Jun 3 13:30 os30_mdai_fw.stopfw drwxrwxrwx 2 idwcq idwcq 1024 May 14 23:58 temp drwxrwxrwx 2 idwcq...
  8. comgrit

    Set parameters to format the output

    You can find all the detail explaination of the SQL*Plus SET command in the SQL*Plus User Guide and Reference - one of the Oracle documentation. in the reference -> command reference section. comgrit
  9. comgrit

    Select distinct problem

    Sometime I found that using GROUP BY clause provide me more flexibility over DISTINCT
  10. comgrit

    SQL*Loader or PLSQL (Referential Integrity)

    What I normally do with this situation is to create the tmp_site in which it has no referencial integrity. Once loaded, then I assign the network_id, and insert from tmp_site to site. You can also do it via SQL*Loader - but I found that working with sql scripts is more easier (at least for...
  11. comgrit

    This recordset is not updateable

    i guess you link the Oracle table through ODBC, if that's the case, when you link the table, Access will ask you to select some of the field to be use as primary key on Access. You have to choose the unique combination of the key so that when ODBC send update request to Oracle, it will know...
  12. comgrit

    Oracle Discoverer and Oracle 8

    You need to use Oracle Discoverer Admin 4.1 to first create the EUL (End User Layer) before you can use the Discover to create the query against your Oracle8. The Admin edition is a separate Windows Application.
  13. comgrit

    Palm v - digitiser problem

    hard reset will do the work - but only temporary, after a while it will become out again. Depends on how bad the connector is.
  14. comgrit

    Palm v - digitiser problem

    this is quite normal for an old (more than 2-3 years) unit. It has something to do with the battery connection and/or display connection inside the unit. I have mine resolved by send it to the service shop who has expertise in cracking the Palm Unit. Not quite sure if you would have that...
  15. comgrit

    Sony Clie Resolution

    check the 'Prefs' application, then choose the HiRes tab, and make sure that the 'Enable High Resolution Assist' has the check marked before it.
  16. comgrit

    Oracle SQL*Loader

    this is nothing to do with Oracle SQL*Loader - it is more on how Windows manage the DOS batch file. I don't have the Win2000 to test with. But i think it might worth to try the PIF file that point to the BAT file instead. Good luck.
  17. comgrit

    How to determine the macro/query that assigned .....

    Help needed, we are trying to debug a MS Access 2.0 (pretty old) application with lot of customized toolbar. I would like to know if there is anyway to find out which macro (among 200++) that linked to a specific button on the custom toolbar. I have search the help, but only topic available is...
  18. comgrit

    Loading from .xls file in SQL*Loader

    If the data is not too much and it is one time task, sometimes I found that an ODBC connection might be easier than SQL*Loader. Here's what I did - 1.Create a blank MS Access database. 2. Create linked table in MS Access pointed to the destination table in Oracle. * make sure that you select...
  19. comgrit

    Oracle 9iAS vs. JRUN

    Detlef, Thank you very much. Your suggestion makes a lot of senses. The more I think through, the more I agree with you.
  20. comgrit

    Oracle 9iAS vs. JRUN

    I would like to understand the key differences between choosing 9iAS and JRUN to be an application server. I'm responsible for deliver an web application that interact with an Oracle RDBMS running on HP-UX. One of the key requirement of the system is to have the web front-end. The company...

Part and Inventory Search

Back
Top