Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Chaining Left Outer Joins?
Message
From
11/04/2005 15:39:14
 
 
To
All
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Title:
Chaining Left Outer Joins?
Environment versions
Visual FoxPro:
VFP 8 SP1
Database:
Visual FoxPro
Miscellaneous
Thread ID:
01003460
Message ID:
01003460
Views:
71
I'm trying to create a local view by chaining a few Left Outer Joins in grandparent-parent-child fashion. The join fields are all non-null integer primary keys, with the parent key in the child record (one to many). The VFP view designer builds, displays, saves, loads and browses correctly, but when I use the view in actual code, it throws error 1494: view definition has been changed.

The error occurs as soon as a second LOJ is added, even if no fields from the child table are added. I've tried NVLing to integer values, but that doesn't work. How can I get view that VFP is giving me available in the program without an error?

SELECT grand.grandid, parent.parentid, child.childid ;
FROM mydbc!grand ;
LEFT OUTER JOIN mydbc!parent on grand.grandid = parent.grandid ;
LEFT OUTER JOIN mydbc!child on parent.parentid = child.parentid
Next
Reply
Map
View

Click here to load this message in the networking platform