For efficiency, you want to try to do this all in a single query, without variables and IFs. Don’t return CRLFs to Crystal. Let Crystal do the formatting. Process as follows: SELECT CASE WHEN current.address IS NULL THEN mailing.address ELSE current.address END address, CASE WHEN current.address IS NULL THEN mailing.city ELSE current.city END city, CASE [...]
I would suggest you pose this question on the asktom site. Tom Kyte would be an excellent resource (from Oracle) to address this question. He was at the PHLOUG meeting last night and shared some excellent tips on 10g R1 & 2 of the database. http://asktom.oracle.com
You probably have a previous installation of Oracle that has not been removed, or a partial installation that you have to manually remove. backup your system, Make sure that Oracle is uninstalled, manually delete all directories created for Oracle, edit the environment variables to remove Oracle entries, edit the system registry to remove all Oracle [...]
Good morning, Sam. Well, it may not be quite that straight forward. Part will depend on the version of Oracle you’re using, which type(s) of SQL authentication, which platform you’re on, which modules you may have implemented (Apps, RAC, etc.) and lastly, your backup solution. (I’m probably missing some, but this is all I can [...]
Thank you for visiting ITKE. We are happy to help you with solving specific IT questions, but need as much information as possible to do so. Let us know about the problem you are trying to solve, how you are approaching it and what work you’ve done so far, and we can help guide you [...]
If you’re trying to upload to a flat file that already exist the system won’t override it automatically. You have to delete the flat file before uploading if you changed the record length.
You could make this work right in the SQL statement: select id, @res:= case when price > @previous then 1 when price < @previous then 0 else if(@res is not NULL,@res,0 ) end as res, @previous as last_price, @previous:=price as this_price from tt; – end sql Produces: id res last_price this_price 1 1 905 905 [...]
To show several authors for one paper you could group your report by paper. Place the paper in the group header and the author name in the group details. For your second question, you can pull in all resumes for one person by creating a report that utilizes a parameter. Ask for the name or [...]
Hi…. have a look here: http://www.oracle.com/technology/deploy/availability/htdocs/DataGuardRemoteMirroring.html As it is no block-level-based replication it makes no difference if the storage is SAN or NAS. You can mix NAS on DR-site with SAN at production side. regards, volker
.tif files are generally quite large and may be to large for your server. To remedy this have your IT increase the size of out-going files or change the the extention to .doc. This should be the answer. I have had this problem with large photo and vidio files. It is best to increase the [...]
I have been using a program called ScriptLogic that addresses what you wish to accomplish. I am able to set up desktops, outlook settings and other profile type settings that you can customize by user, groups, and even the type of login source (OS, workstation, server, etc… ) Check it out at ScriptLogic.com. I am [...]
You have to install ILE C/400. You are trying to implement functionality that does not exist in your old system. The only solution we have found that works reliably is for the remote server to call an SQL stored procedure. RPG and CL do not return result sets. You can go back to FTPing batch [...]
To give a vague answer to a vague question, probably. It depends, to a large extent, on what type of resultset you’re starting with. Check these out for more details. http://www.samspublishing.com/articles/article.asp?p=26251&seqNum=7&rl=1 http://www.csee.umbc.edu/help/oracle8/java.815/a64685/oraext3.htm
the user you are using to connect to the database with crystal report has its temporary tablespace set to SYSTEM change that ASAP and any other user who also has its temporary tablespace set to SYSTEM change them so that they use the real temporary tablespace which is probably TEMP “ALTER USER username TEMPORARY TABLESPACE [...]
What will happen is that the data at the address of A in the calling program will be mapped by the data description of C in the LINKAGE SECTION, the data at the address of B will be mapped to the A description and the data at C will be mapped to the B description. [...]
Do you have a performance problem ? Have you measured anything to determine what the cause of performance problem is ? Seperate or faster servers only help when there’s a CPU bottleneck. Ken
Hi Columbus. The DBMS_JOB package should do the trick. See documentation on Oracle Supplied PL/SQL Packages and Types Reference for details on parameter requirements. http://download-west.oracle.com/docs/cd/B10501_01/server.920/a96521/jobq.htm#9499
Assuming you are running the job by yourself and not using something like CA7 to run the job, you will have to “RESTART” at the job step that creates the temp data set. Because once the original job terminated the temp data set is gone, you will have to recreate it. On the job card [...]
You now have to log in as Domain Administrator. Put the PC in the domain and log in as Domain administrator. You have to first pre-stage the server, then from a command prompt on another member server or domain controller, type nltest /server:name of your server.your domain/trusted_domains. Hope that helps Thuso





