So I am assuming you have 2 tnsnames, one in each Oracle_Home directory. Have you tried just opening a sqlplus connection and see if you could connect to the Oracle9i db. I would also try opening sqlplus from the Start->Run so as to also see which one it brings up…the 7 or 9 version. I [...]
Everything else being equal, the response times for querying these two tables individually should be nearly identical. The difference would only be whatever time it takes to package the additional 50 fields for routing. That will take some time, probably uncalculable per row; But if you are returning 1,000,000 or so rows, that might be [...]
I only just installed the SQL Server 2005 a few days ago, and haven’t had very much time to look at the setups yet. However it seems to me, that the Management Studio works quite better and is at the first look very easy to use. The basic functions for backing up, attaching and altering [...]
I am not 100 percent sure but I do not think migration from 2.10 to 1.6 is possible. I thought 1.4 was the last release that 2.10 could migrate to.
This may seem like a silly response, but since the 7-E-2 setting is the default, can it be changed? While I find dealing with serial communications on PLCs to be a pain in the butt, I’ve never had to deal with odd settings like that one. Good luck!
I’m assuming you have a situation like this: Policy: PolicyNumber CHAR(…), NameId INTEGER, … Name: NameId INTEGER, Name VARCHAR(…), … Use this query: WITH matches AS( SELECT nameId, COUNT(*) FROM policy GROUP BY nameId HAVING COUNT(*)>1) SELECT n.name, p.policyNumber FROM matches m, name n, policy p WHERE m.nameId=n.nameId AND m.nameId=p.nameId — Sheldon Linker Linker Systems, [...]
Wow! This one is just a treasure chest of things that take time. Rather than go through the whole thing, which could take an hour, I’ll give you some pointers: (1) Don’t compare using UPPER or NVL unless you have to. Consider NOT NULL fields, field stored in upper case, a second field set up [...]
This is typical: ask a question, read it again, think it over and answer your own question. Since every user is running on his own desktop computer, he (and she) uses the memory of his desktop, not any shared memory on the server. However, what about a helpfield that is defined as Public ?
Depends on what you already have on your PC. If you have Microsoft Visio, it will work. Also If you are using Sql Server 2000 for you DB, it has a diagram tool in it. Look at the apps you have before you try to find a third party program.
Although there are a number of ways to do this in a single SQL statement, it’s best to use a cursor loop, since any such SQL statement would rely on order of execution, and that’s called a “pornographic specification”, since it can be version-dependent. Here’s how I’d do it: Assuming: CREATE TABLE myTable( major INTEGER, [...]
The following rudimentary script will show you the basics. You can expand on this to show what you need. select b.sid, b.username, a.sql_text from v$sqlarea a, v$session b where a.address=b.sql_address Oracle’s Enterprise Manager ‘Top Sessions’, ‘Top SQL’ provides a good gui interface.
Have a look in the oracle/admin/[sid]/bdump directory at the alert_[sid].log file. Should see entries of when a database is started or shutdown.
I seem to remember this behaviour when you don’t have the correct environment set up. $ORACLE_HOME amongst others must be set up. Talk to your DBA, there should be a script to set up all your necessary environment.
SAP has a OS/DB migrations guide/checklist and a go-live check that has to be performed before you go live on the new system. I have done this several time for different DB and OS. Seeing that this will be a hetrogenius migration you can run the R/3 Inst. on the DEV system and export the [...]
It should write the beep command to the 5250 session immediately. So if you called it, delayed a few seconds, and then called it again it would beep twice. You could test it with a CL program that calls QsnBeep twice and performs a DLYJOB in between.
Robert, Are you sure you even need these files. By the sound of the vol ser name it is a work volume used for temporary datasets. Maybe you just need to mount it as private and most of the files would be removed on their own. Anyway, I use these control cards : Use the [...]
Hi, 1) a layer 2 switch routes traffic based on the MAC address. 2) a layer 3 switch routes traffic based on the IP address. TechTarget has a great web site for definitions of terms like this, and I encourage you to use it often. The link is: http://whatis.techtarget.com/ At this site, search on the [...]
Have you verified that you have the latest DAO drivers? For development purposes could you make a start with ODBC?
Gosh! Ok, I’m open to speculation – since it’s clear that you’re inviting such things…. Could it be an early Data General machine? By way of identification, are all of the disk drive cables a bundle of twisted pair cables in a ribbon, which look kind of like a newer SCSI cable, but larger? What [...]
I assume from your question, that you’re not using Java within Oracle. You’re “just” using JDBC to access Oracle. In case of performance problems, it important that you identify the wait causes. Is it the DB that’s busy, or your frontend application that’s slowing things down – or a combination. Reasons for performance problems are [...]





