Viewing 15 posts - 9,001 through 9,015 (of 13,876 total)
compufreak (10/20/2014)
select distinct p.FormulaTypeID,p.FinancialYearID,p.VersionID,p.ProjectName,f.Formulafrom tb_Projects p
inner join tb_FormulaTypes f on p.FormulaTypeID=p.FormulaTypeID
this is still not pulling the right results 🙁
We don't know your tables, your data, your business...
October 20, 2014 at 7:06 am
OK, I think I worked it out. Do you mean something like this? By the way, please include sample DDL next time.
if object_id('tempdb..#Order', 'U') is not null
...
October 20, 2014 at 5:15 am
winston Smith (10/20/2014)
OrderID ItemName UnitPrice Quanity
1 ...
October 20, 2014 at 4:55 am
compufreak (10/20/2014)
Hi PhilI looked at the two tables and only an ID Field is common between these two.
there seems to be no description field at all.
Then where were you hoping...
October 20, 2014 at 1:33 am
Do you have a table somewhere which includes both the code and the description?
October 20, 2014 at 12:30 am
May I ask why you are using a cursor for this?
October 17, 2014 at 6:41 am
Gabriel P (10/15/2014)
So pretty much we're stuck with either Script Task or Derived Columns?
I'm not sure how a script task would help you here.
I think you may mean a script...
October 16, 2014 at 12:20 am
coreyjbaum (10/14/2014)
October 15, 2014 at 12:27 am
The CREATE TABLE will need to be a dynamic Execute SQL task which happens before the data flow (obviously).
October 14, 2014 at 10:52 am
rocky_498 (10/13/2014)
October 13, 2014 at 12:06 pm
Sounds like you need to set the Excel sheet name dynamically via an SSIS Expression. Or are you doing that already?
October 13, 2014 at 11:38 am
Are the tab names in the spreadsheets all the same?
--Edit: ignore that – I just read your post more carefully
October 13, 2014 at 11:35 am
ByronOne (10/13/2014)
Thanks Phil for responding so quickly...That's exactly what I'm looking for...
And thank you for posting back so positively 🙂
October 13, 2014 at 11:33 am
Based on your description, a script task is not what you need for this job.
Have a look here for an example of how to import a fixed width flat file...
October 13, 2014 at 10:53 am
Viewing 15 posts - 9,001 through 9,015 (of 13,876 total)