|
When I trie to run a sql command through odbc return this error:
General error;- 9400 POS(1) System error: AK cachedirectory full
The script basically:
INSERT INTO Table1 (field1,...) SELECT 1 AS field1, ...
>General error;- 9400 POS(1) System error: AK cachedirectory full
then I re-write as:
CREATE TABLE TEMP.TMP AS SELECT 1 AS field1, ...
>ok
INSERT INTO Table1 (field1,...) SELECT * FROM TEMP.TMP
>General error;- 9400 POS(1) System error: AK cachedirectory full
Any idea?
|