If your target database is on a Windows machine, you can put a setting in the registry that will help. \\HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\ will have multiple "HOMEx" keys for each Oracle home installed. Find the one corresponding to your database and add a key (on the right side) called...
Yes, the query I posted will do just that. Outer joins using the (+) notation denotes the dependant/child table, and the "h.employeeid IS NULL" says only show records in employee where there is no match in history.
I was going off of the sql-pseudo code orginally posted:
It's similar to your...
In Oracle you have another option:
SELECT e.* FROM employees e, employee_history h
WHERE e.employeeid = h.employeeid(+)
AND h.employeeid IS NULL;
JoeB
Use smaller fonts to save disk space...
I have been trying so many things I'm not sure what I have tried and what I have not. Here is my code:
<html>
<head>
<script type="text/javascript">
var xmlhttp;
var xmlDoc;
var xmlRec = 0;
function loadXMLDoc(start_p)
{
if (window.XMLHttpRequest) // code for Mozilla, etc.
{...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.