Answer Posted / shalu
grep is used for finding any string in the file.
syntax - grep <String> <filename>
example - grep 'compu' details.txt
display the whole line,in which line compu string is found.
find is used to find the file or directory in given path,
syntax - find <filename>
example - find compu*
display aal file name starting with compu
| Is This Answer Correct ? | 28 Yes | 2 No |
Post New Answer View All Answers
Under what conditions selecting sorted input in aggregator will still not boost session performance?
what are the best practices to extract data from flat file source which are bigger than 100 mb memory?
Hi, I saw one mapping implemented by my seniors . In Expression transformation they implemented following logic. That is iif(is_date(in_UC_DATINV,'YYYYMMDD'),to_date(in_UC_DATINV,'Y YYYMMDD'),'Inventory Date is either invalid or null') Inventory_Date is validated only for is_date() But not validated for notisnull() . But error says “ either invalid or null “ why? Whether is_date() also check for not isnull() ? or in this logic something is different ? Please answer me . Advance thanks
how lookup transformation is made active in new versions... When to use connected and when to use unconnected lookup and why? which is good for session performance. How to make lookup persistent and how to remove stale data from that lookup. how commit works - when we stop or abort data. Explain in both cases. What is factless fact table and have you ever used it in real time scenarios.
How do you load unique records into one target table and duplicate records into a different target table?
what is the hint? how to use it to reduce the query processing in program?
Tell me about Propagate functions in informatica
Please let me know how to make encryption and decryption with example?
Where is metadata stored?
How to generate sequence numbers without using the sequence generator transformation?
hi friends .i designed mapping in windows but i want to run mapping in linux.should i install the server components in linux?
How are the sources and targets definitions imported in informatica designer?
Did u used latest transformations of 8.6.0? for what?
Explain the pipeline partition with real time example?
5. Consider the following products data which contain duplicate rows. A B C C B D B Q1. Design a mapping to load all unique products in one table and the duplicate rows in another table. The first table should contain the following output A D The second target should contain the following output B B B C C