Expand my Community achievements bar.

Announcing the launch of new sub-community for Campaign Web UI to cater specifically to the needs of Campaign Web UI users!
SOLVED

unzip .zip file in data loading activity

Avatar

Level 2

Hi

 

I want to unzip a zipped file in data loading activity.

I checked pre-process the file option and tried various commands but the data load activity is giving error every time.

 

Following are the commands I have tried:

gunzip -c <%=vars.filename%>

gunzip <%=vars.filename%>

gzip -d <%=vars.filename%>

gzip -S <%=vars.filename%>

zip -d <%=vars.filename%>

etc.

 

What would be the correct command to unzip the file first and then load it?

1 Accepted Solution

Avatar

Correct answer by
Level 2

Hi

 

If it helps someone, I found the solution.

 

You can use the following command.

zcat <%=vars.filename%>

 

 

Thanks

View solution in original post

1 Reply

Avatar

Correct answer by
Level 2

Hi

 

If it helps someone, I found the solution.

 

You can use the following command.

zcat <%=vars.filename%>

 

 

Thanks