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

Delete tables (QVD)

Hi all,

I'm creating a table with 'store into' in order to make a later load and concatenate.

how can I, from the script, delete this table when I complete the concatenation?

Thanks,

Boris

1 Solution

Accepted Solutions
tresesco
MVP
MVP

Try like:

EXECUTE CMD.EXE /C del "yourqvd.qvd";

View solution in original post

5 Replies
Anonymous
Not applicable
Author

drop table YourTable ;

tresesco
MVP
MVP

Try like:

EXECUTE CMD.EXE /C del "yourqvd.qvd";

Not applicable
Author

I'm not talking about in memory table, it an already created QVD

edwinmatlapeng
Partner - Contributor III
Partner - Contributor III

drop table 'tablename' should work! this will delete both a memory table and an existing QVD!

Not applicable
Author

Sorry, but it doesn't work.

QV documentation states that drop table is for in memory tables.

Also, I tried a test and it didn't delete the table.

thank you anyway.