bojimuncher
IS-IT--Management
Hey all,
Not sure what I am doing wrong with this join for some reason I am unable to link 2 different tables that have a matching linked field.
I used the following queries to make sure that there were matching fields..
(returns 2738 rows - showing customer sales data)
(returns 1 row - showing additional customer information)
But once I try to create a view or even just combine the data via a select statement...
Pervasive just shows me the progress bar until it finally crashes and I have to close the PCC.
What am I doing wrong?
Thanks,
Stan
Not sure what I am doing wrong with this join for some reason I am unable to link 2 different tables that have a matching linked field.
I used the following queries to make sure that there were matching fields..
SQL:
select * from table1 where cust = 27070
SQL:
select * from view1 where cust = 27070
But once I try to create a view or even just combine the data via a select statement...
SQL:
select * from Table1 left outer join View1 on Table1.Cust = View1.Cust
Pervasive just shows me the progress bar until it finally crashes and I have to close the PCC.
What am I doing wrong?
Thanks,
Stan