onyxtacular
IS-IT--Management
I'm new to ssis and need some help. I have a csv file I need to use as a parameter to get some information and then update it.
Here's how it looks in crystal reports...
SELECT "Order_Master"."ORDNUM_10", "Order_Master"."TYPE_10", "Order_Master"."STATUS_10", "Order_Master"."CUSORD_10"
FROM "GNC5"."dbo"."Order_Master" "Order_Master"
WHERE "Order_Master"."STATUS_10"<'4' AND "Order_Master"."TYPE_10"='MS'
ORDER BY "Order_Master"."CUSORD_10"
\\gnc6\msclose\mscloseonyx.xls
SELECT `Sheet1_`.`startON`, `Sheet1_`.`endOR`
FROM `Sheet1$` `Sheet1_`
It combines both queries and gives me the output and I strap on a query
update GNC5.dbrder_Master set STATUS_10 = '4' where
OR ORDNUM_10 = ' '
I'm trying to get ssis to do all the above steps to streamline the process
I read the flat file in and I can can run the query, but I can get them to do it together. I think once I can get past that part the rest would fall in line.
Thanks!!
Here's how it looks in crystal reports...
SELECT "Order_Master"."ORDNUM_10", "Order_Master"."TYPE_10", "Order_Master"."STATUS_10", "Order_Master"."CUSORD_10"
FROM "GNC5"."dbo"."Order_Master" "Order_Master"
WHERE "Order_Master"."STATUS_10"<'4' AND "Order_Master"."TYPE_10"='MS'
ORDER BY "Order_Master"."CUSORD_10"
\\gnc6\msclose\mscloseonyx.xls
SELECT `Sheet1_`.`startON`, `Sheet1_`.`endOR`
FROM `Sheet1$` `Sheet1_`
It combines both queries and gives me the output and I strap on a query
update GNC5.dbrder_Master set STATUS_10 = '4' where
OR ORDNUM_10 = ' '
I'm trying to get ssis to do all the above steps to streamline the process
I read the flat file in and I can can run the query, but I can get them to do it together. I think once I can get past that part the rest would fall in line.
Thanks!!