Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
Can you or how can you join a resident table to a sql server table? I have the below query but does not work and not sure if it can be done?
EngCalendar2:left join (EngCalendar2)
LOAD personid as [Engineer ID];
SQL SELECT p.personid
From SCHDimension.dbo.dimOUTUser p
WHERE JobTitle = 'IC';
This is the error I get:
Table not found
left join (EngCalendar2)
LOAD personid as [Engineer ID]
Thanks
Denis
Hi,
Try put tha command NOCONCATENATE before table EngCalendar2:
Ex.:
NOCONCATENATE
EngCalendar2:
LOAD [Engineer ID],
CalendarKey,
[Eng Date],
.....
Does exists any table create before you declare the table EngCalendar2???
Hi Eduardo,
be sure you don't have already another table like EngCalendar2 named for example EngCalendar but having exactely the same structure.
If it is, EngCalendar2 is seen like EngCalendar and store in EngCalendar. That makes EngCalendar2 doesn't exists
best regards
christian