Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
I need to delete set of bulk values from data model.say for example ID from data model.set of ID's to be deleted is available in Excel.
can any one suggest me?
First load the .csv file and then use where not exists:
csv:
load id from csv;
Table:
load * from QVD where not exists(id);