Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Resident table load (table not found)

This issue is driving me bonkers since it seems like it should be obvious.  On the below, it is failing with a Table not found error on "test2".  "Test" does load successfully though.  Anything I'm missing here?

Thanks

Justin

test:

LOAD * INLINE [

    Field1

    test

];

test2:

LOAD Field1 RESIDENT test;

STORE * FROM test2 into test2.qvd;

1 Solution

Accepted Solutions
Not applicable
Author

Ah, got it.  If you are loading the same fields from another table it will just concatenate to the original one.  Looks like using NOCONCATENATE is the answer.

View solution in original post

1 Reply
Not applicable
Author

Ah, got it.  If you are loading the same fields from another table it will just concatenate to the original one.  Looks like using NOCONCATENATE is the answer.