Viewing 7 posts - 1 through 7 (of 7 total)
Thanks for the response.
I was so dumb I was not thinking in the other way .
It is so simple. Thnx a lot. 🙂
June 15, 2012 at 3:39 am
I have used the data conversion transformation.
It's giving me this following error:
"[Data Conversion [46]] Error: Data conversion failed while converting column "amount" (44) to column "Copy of amount" (140). ...
June 15, 2012 at 3:16 am
Ohh Yes..!!
I am using the invoice_date field.
DELETE FROM tableA
FROM tableA a
INNER JOIN (SELECT DISTINCT invoice_date FROM tableB) b
ON (a.invoice_date = b.invoice_date)
But this query deleting all the...
May 3, 2012 at 2:43 am
That link really helps.
The tables are not heavily indexed. I am using UnionAll, RowCount, DerivedCoulmn transformations.
I guess I have to use something like this query to insert new rows:
Delete src
...
May 3, 2012 at 1:39 am
This is the SQL: SELECT b.comp_code,
a.cust_code,
b.cust_name,
d.country_code,
e.country_desc,
a.item_code,
c.item_desc,
a.order_no,
a.reference_a_no,
a.reference_b_no,
a.po_no,
a.position_no,...
May 2, 2012 at 8:34 am
To extract last 9months data it is taking around 1hour.
And I am not using any complex queries only using few Left outer joins. The Main table has 4 million...
May 2, 2012 at 8:04 am
Viewing 7 posts - 1 through 7 (of 7 total)