To convert it to pdf, you just need to set the MODE system parameter to BITMAP, and the DESFORMAT parameter to PDF. For the size, you need to change the Width and Height properties in the Paper Layout sections.
Hi, All other things being equal, Oracle has ALWAYS worked best on SUN. Another thing to consider is that Oracle (corp) says “Oracle (the db) is Oracle is Oracle” meaning that if you say “ABC…XYZ” within Oracle it will result in the same answer regardless of the hardware or OS. PART of the reason for [...]
Oracle 9i is pretty old. I’m not sure if there’s going to be any 64bit software for it. You’ll probably need newer 64bit drivers (10g, or 11). Once you’ve got the drivers setup then a 64bit client can talk to a 32bit server without issue. ——– Actually, there is an edition of Oracle 9i (Release [...]
Oracle has two methods of signon … 1) users and passwrods defined to the Oracle database as in CREATE USER username IDENTIFIED BY pass_word 2) users that Oracle will allow to be authenticated by the operating system as in CREATE USER username IDENTIFIED EXTERNAL the second ones (used to) default to prefixing the userid with [...]
Hi, I believe that you can change that in the INIT.ORA file (or its equivalent (I always have to qualify my Oracle answers because most everyone uses Oracle on a PC-type platform while I worked with it on mainframe using MVS, OS/390, z/OS and ofcourse there is no “init.ora” but we did have the equivalent)) [...]
You don’t to remove data you must either 1) delete from a table (which makes space available for resuse but only to the table and only in the same way as it was originally used (hence index space stays index space and table space stays table space) 2) you truncate the table in which case [...]
I will presume you already know how to write insert as select so that you can insert data from one table to another. That said, the only difficult part of your request is getting data form the excel spreadsheet. The reality is there is no simple way to do this. You must do one of: [...]
The most likely reason your trigger is doing jack is because of this: EXCEPTION – If an exception is raised, exit gracefully WHEN OTHERS THEN NULL; Do not take this as an offence, but this is considered by the oracle community to be the stupidest piece of code anyone can write. Many people do it. [...]
Oracle is widely used because 1) it is a mature database. It offers more than saveing data relationally. It has significant backup/recovery protection for example. It is in fact all those things that you do not see that make is so great. I call it mature, some people call it industrial strength but you get [...]
My first guess would be that the user executing the job is not the same user that you use when testing the code. Thus the job executing user does not in fact have the correct privileges. Run a test job that does nothing but raise_application_error(-20999,’user-’||user); and find out who he thinks he is when he [...]
Based on the information you have provided, I would choose the first model. It is more flexible, scalable, <b>and it is normalized</b>. Let’s talk about the second model. In the CONTEXTS table, the name column is going to refer to the context name, or the property name ? Maybe he wants to add another ‘name’ [...]
by instead of trigger I presume you are refering to a database instead-of-trigger on the view. It has been some time since I have travelded this specific road withs forms, however, I seem to recall a few things are needed to make dml against a complex view with instead of triggers a reality. There should [...]
Have you chosen the IE compatible view option under tools?
Oracle comes with 2 system admin userids; SYS & SYSTEM. At install time, the passwords are MANAGER & CHANGEONINSTALL. The “sample” userid of SCOTT (password TIGER) also has system admin privileges and should either be locked down or the overly powerful authorizations revoked. In addition, individual userids need to be established and authorizations granted to [...]
If you had searched, you would have found that an answer to this same question was posted on April 6th, by ITKE. The answer given was “Oracle 9i is not compatible with vista. That is why you are getting that message “
Assuming that you want to wind up with a bunch of “rows” – each containing one “line” of text, you need to parse it in two steps. First, keep in mind that the field can contain a nearly unlimited amount of text, while the internal limit on VARCHAR and VARCHAR2 length is 32767 characters. Thus, [...]
I’m not completely sure whether this is what you are asking, but, if you want to send the paper size to the report as a parameter, you need to use the PAGESIZE parameter, and the dimensions will be in a string of the form ‘<width> x <height>’. For example, if you are calling the report [...]
-Right-click on the chart -Click on “Axes…” -Select the “Continuous Axis” tab -Set the desired values for “Maximum” and “Minimum” -Click “Ok”
Short answer is no. You will need at least Oracle Forms services. If you want to be able to run your applications on other servers (JBoss, or tomcat for example) you will need to develop using other technologies, such as Oracle ADF. Also, you can avoid the use of the Application server, by developing with [...]
I have found a little hard to find good Oracle Developer tutorials on the web in the past, but here are some links that you might find helpful: <a href=”http://www.sba.oakland.edu/oracle/Oracle/Ora_Tutor/Forms%20Tutorial/Forms%20Tutorial/9iForms_L1.htm”>Tutorial for Oracle10g Forms / Reports</a> <a href=”http://www.oracle.com/webapps/online-help/forms/10g/state?navSetId=_&navId=0″>Oracle Forms official documentation</a> <a href=”http://download.oracle.com/docs/cd/B25016_08//doc/dl/bi/B13895_01/toc.htm”>Oracle® Reports Building Reports</a> <a href=”http://download.oracle.com/docs/cd/B25016_08//doc/dl/bi/B14364_01/toc.htm”>Oracle® Reports Tutorial</a> If you find some specific problems/doubts, [...]





