Viewing 15 posts - 9,196 through 9,210 (of 13,876 total)
I really don't understand the issue here.
Perhaps someone else in the forum can help you.
If you have source and target columns whose data types do not match, you may need...
July 10, 2014 at 12:02 am
Just for fun, you could also try DROP/CREATE.
July 9, 2014 at 12:03 pm
It's unlikely to be the reason in this case, but a server-level DDL trigger could probably make this happen.
July 9, 2014 at 11:37 am
gajayku (7/9/2014)
July 9, 2014 at 8:20 am
Database tables do not have an order. What is the problem, exactly?
July 9, 2014 at 8:13 am
neltonk (7/7/2014)
July 7, 2014 at 5:24 am
Evil Kraig F (7/3/2014)
July 4, 2014 at 4:36 am
sql server developer (7/3/2014)
I'm trying to load data from multiple files into SQL server using Foreach Loop Container in SSIS 2008. All the files are in the same format...
July 3, 2014 at 12:43 pm
I really wouldn't do that bit in SSIS.
Do it in T-SQL instead as a UNION. Something like this:
select participant_key
,participant_key2
,participantPosition = 1
,participant_1
,participant_rate
,participant_rate_high
,source
,date
from dbo.stage
union all
select participant_key
,participant_key2
,participantPosition = 2
,participant_2
,participant_2_rate
,participant_2_high
,source
,date
from dbo.stage
where participant_2 is not...
July 3, 2014 at 12:39 pm
No doubt Gail will fix your problem more elegantly, but here is one idea (untested). In your script:
1) Define a temp table with the same structure as TableA.
2) Call the...
July 3, 2014 at 12:20 pm
Using a Script Task (for Step 2) you mean? If Delay Validation is set to False it would error out, but would not be able to provide a nice message...
July 3, 2014 at 8:25 am
Lempster (7/3/2014)
It is possible to create a dynamic Excel destination...
July 3, 2014 at 3:32 am
gajayku (7/2/2014)
Excel file depends on user input. I cannot say what type of columns exists in the excel file. I can get the columns at run time.
SSIS depends on static...
July 2, 2014 at 8:25 am
gajayku (7/2/2014)
Thanks for quick response. Let assume that I have schema of both source and destination in the following formats.
In excel File, I have columns (Id, Name, Salary) and...
July 2, 2014 at 7:25 am
gajayku (7/2/2014)
I m integrated the mvc application with SSIS package. I m sending the excel file from mvc application to SSIS package. I need to transform excel file data to...
July 2, 2014 at 7:07 am
Viewing 15 posts - 9,196 through 9,210 (of 13,876 total)