Display all files which have size more 3KB in given directory/folder.
Answer / 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 |
1.How to read multiple file from sequential stage. 2.If a file doesn't arrive or doesn't exists in sequential stage how do u handle this. 3.What do you do before taking data from source to staging area. 4. I have a remove duplicate stage and transformer stage.what will u do for optimizeing the performance of the job.
What are stage variables, derivations and constants?
in aggregator , how can i get the sum in readable format
INPUT file 'A' contains: 1 2 3 4 5 6 7 8 9 10 input file 'B' contains: 6 7 8 9 10 11 12 13 14 15 Output file 'X' contains: 1 2 3 4 5 Output file 'Y' contains: 6 7 8 9 10 Output file 'Z' contains: 11 12 13 14 15 How can we implement this in a single ds job?
what is datastage job Monitoring
I have 3 jobs A,B and C , which are dependent each other. I want to run A & C jobs daily and B job run only on sunday. how can we do it?
Difference between data warehousing and olap?
what is the use of surogate key in datastage
What is the difference between lookup and sparse lookup?
What is a ds designer?
hi this is kiran i have one table i want divide the table with two different table like even rows and odd rows how can i do this one tell me plzz
Hi, My source is oracle(eno,ename,sal,commision,...), my requirement is like this, if there is a null values in commission col i want to keep it as null,and for the remaining first two characters of the value in my target. Plz help me