Imported data is missing in the table

taqdeer
Tera Contributor

Hi All,

I have imported data into a table 7 days ago. I see that data is missing now. Table has become empty. I understand that there will be schedule cleanup for import sets once in a wee. but that is to delete the import set information not the data right? Can any one please tell me what would have been happened?

1 ACCEPTED SOLUTION

Joshton1
Tera Guru

Hello Taqdeer,

The data in the import set table is also cleaned,

You can refer the script include - "ImportSetCleaner "called from the Scheduled job - Import set Deleter .

The clean() Function called, queries the import sets first and then if import set is available it also has a call for removeData and then that calls TableClean,

--------------------------

clean : function() {
var isets = this._queryIsets();

while(isets.length > 0) {
this._removeData(isets);

-------------------------

So to conclude yes the data is also cleaned form the import set extended table which is your staging table. 

 

Thanks,

Joshton

 

View solution in original post

7 REPLIES 7

Joshton1
Tera Guru

Hello Taqdeer,

The data in the import set table is also cleaned,

You can refer the script include - "ImportSetCleaner "called from the Scheduled job - Import set Deleter .

The clean() Function called, queries the import sets first and then if import set is available it also has a call for removeData and then that calls TableClean,

--------------------------

clean : function() {
var isets = this._queryIsets();

while(isets.length > 0) {
this._removeData(isets);

-------------------------

So to conclude yes the data is also cleaned form the import set extended table which is your staging table. 

 

Thanks,

Joshton

 

taqdeer
Tera Contributor

Thanks Joshton... šŸ™‚

Karim Kabbara
Kilo Contributor

Hi,

Is there a way to just delete the ā€œImport Set Rows" and retain ā€œSetsā€ and ā€œImport Set Runsā€?

Thanks in advance!

Karim