Display all files which have size more 3KB in given directory/folder.
Answer Posted / nish
Since it is posted under Datastage; I'm assuming it has something to do with Unix/Linux.
to solve your problem we make use of the 'find' command and its specifications
find /mydir -size +6 -print
1block =512B
3kb =6 Blocks
-size +6 will list files that are greater than 3kb
-print will print them out
/mydir is your folder
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How will you load you daily/monthly jobs datas in to Fact and Dimension table using datastage.
How a server job can be converted to a parallel job?
Difference between data warehousing and olap?
how to run a sequential file stage in parallel if the stage is used on the TARGET side
What is the difference between datastage and informatica?
What are the important features of datastage?
I/p : F1 table have A,B,C,D,E and F2 table having C,E,V i need output 0utput1: ABD output2: V any one suggest me this
What is the importance of the exception activity in datastage?
How rejected rows are managed in datastage?
If you want to use the same piece of code in different jobs, how will you achieve it?
What is the use of datastage director?
What is the difference between datastage and datastage tx?
How to find value from a column in a dataset?
1.what is repartionoing technique? 2.what deliverables transferred to client using datastage? 3.how to write loop statements using nested loop sequence?
1)s.key generate 1 to 700 records today. tomorrow another 400 will updated how to update the records using s.key generator? 2)source is like :-- DB --> T/F stage1 --> seq1file T/f 1 is linking with T/F2 ---> seq 2 how to load the data? in source i given some conditions those r going in seq1. The another data will going to seq2 how to do this ?