i have oracle table A and target B. i don't know how many
records. i want get get last record in table A as first record
in target table B. write a sql query?
Answer Posted / pooja
CREATE TABLE B
AS
SELECT *
FROM
(SELECT *
FROM
(SELECT *,ROWNUM R
FROM A)
ORDER BY R DESC)
WHERE R=1;
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What does reusable transformation mean?
How does a rank transform differ from aggregator transform functions max and min?
Explain lookup transformation source types in informatica
Explain the mapping variable usage example in informatica
i had a source containing business,sales,details column and i have to load it to a target but i have some bad records in it , but i have to load 70% of business records and 50% of sales and 95% of details records excluding bad records to achieve this what should be done and what all logic and tx should be used can anyone help? thanks in advance
How to handle decimal places while importing a flatfile into informatica?
How to configure mapping in informatica?
Explian the Process of deployment groups in informatica
What are the different components of powercenter?
server hot-ws270 is connect to Repository B. What does it mean?
What will be the approach?
Does an informatica transformation support only aggregate expressions?
What is target load order?
What are connected or unconnected transformations?
What is the main purpose of Unconnected lookup other than updating slowly changing dimensions? or In which case u use Unconnected lookup?