You have to modify your TNSNAMES.ORA file in your Developer’s oracle home. If you can connect from your database installation SQL*Plus, you just need to copy the contents of your database’s oracle home tnsnames file to the Developer’s oracle home one.
Yes, of course, u may download the Oracle 10g XE for 64 bit version.
You could use the DDE package, to call the browser sending the url as a parameter. Here's an example:declare nExplorer pls_integer; vCommand varchar2(200) := 'path/to/your/browser' || ' ' || 'www.yourpage.com'; Begin nExplorer := dde.app_begin(vCommand,dde.app_mode_normal); end;
Which Oracle 10G Server or Client ? You couldn’t mention.
System.cursor_record is a system variable, that represents the number of the record where the cursor is located at any given time, for example, say you have a block with 5 data records (tabular). If you click on any item of the first record, the cursor_record system variable’s value would be ’1′. If you press the [...]
<i>How can I run this process without prompting for the variable?</i> You bypass prompting by supplying values for the replacement variables. In your example, you pass in a value for a replacement variable named &CUST; but the only replacement variable in your QM query is named &SELECT. You might change your STRQMQRY SETVAR() parameter to [...]
Hi Helppleaseit, Check out <a href=”http://www.orafaq.com/wiki/ORA-12541″>Oracle’s wiki page</a> for more information on error messages. Hope this helps! - Melanie
The older Forms release that was certified to work with Oracle database 10g r1 is Developer 6i. If it is 10g r2 even developer 6i might not work correctly. OTOH, when asking for help it is always recommended to post the complete and exact error messages (I guess the error message is not ‘orainst sorry’).
check for a login.sql in your ORACLE_HOME directory. Sounds like something is changing your date_format for the session.
Hi Fsdfsdfsdfsdfasdfsd, Is this what you’re looking for? <a href=”http://www.dba-oracle.com/m_library_cache_hit_ratio.htm”>Oracle Library Cache Hit Ratio</a> & <a href=”http://www.cryer.co.uk/brian/oracle/tuning_tlc.htm”>Oracle how to tune the library cache</a> - Melanie
There are several oracle partners offering this kind of work (check out the Oracle Partner web-site for Forms). The challenges of a migration are covered within the PITSS.CON knowledge-base which enables you to concentrate on the test effort of the converted Forms.
Deb4u, this question seems to be related to this one (which you posted yesterday): <a href=”http://itknowledgeexchange.techtarget.com/itanswers/to-display-not-exit-data/”>To display not exit data in oracle</a> If you want to provide more details or ask for clarification, please continue the discussion in the same thread. Also, you should specify the Oracle version you are using, since the answer to [...]
Deb4u, this seems to be the same question as this one (which you posted yesterday): <a href=”http://itknowledgeexchange.techtarget.com/itanswers/to-display-not-exit-data/”>To display not exit data in oracle</a> If you want to provide more details or ask for clarification, please continue the discussion in the same thread.
you can’t do this only use good text editor to copy ur SQl commands
You will probably need to create a table with the months of the year, and outer-join it to your main table. Or, you could use an in-line view or subquery factoring (depending on the Oracle version) to achieve the same result. Here’s an example: <pre>WITH months AS (SELECT 1 mm,’JANUARY’ month FROM dual UNION SELECT [...]
To connect/disconnect Forms applications to/from the database, you have to use the <b>LOGON</b> and <b>LOGOUT </b>built-in procedures.
I’m not sure to understand what you are asking, but in Oracle, the physical files used to store the data are called DATAFILEs. They could be located in any folder, but in ‘default’ installations they are inside a directory called ‘oradata’ inside the oracle home. These files can only be accessed by the DBMS. You [...]
Here’s an option: <pre>SELECT * FROM your_table ORDER BY TO_DATE(’01′||month||year,’DDMONYYYY’);</pre> If you really want them in descending order (your example shows them in ascending order) just add the DESC keyword at the end of the query.
Try something like this: <pre>SELECT TO_CHAR(entry_date,’month-yyyy’), column_x, column_y, column_z FROM your_table WHERE entrty_date >= ‘&start_date’;</pre>
sqlplus username@database name





