Viewing 15 posts - 316 through 330 (of 681 total)
It sounds like you're covering all your bases... not sure what's going on here.
How are you setting your variable value - is it set on creation (in the Variables window...
April 21, 2009 at 9:03 pm
Yes, you are correct that the database name would be left blank if you're using a variable.
Can you check the SourceConnection to make sure you have a valid source specified?
April 21, 2009 at 8:45 pm
Check the case - you had previously noted the name of the variable was InDatabase, but your most recent post shows it as Indatabase. SSIS is case sensitive for...
April 21, 2009 at 8:34 pm
You're right that the conditional split could be used in some cases, but when you have outputs with differing numbers of columns, the script component would be ideal.
April 15, 2009 at 10:37 am
When you say "raw file", are you referring to a file created by the Raw File Destination in SSIS? If so, you can't import this using BCP - it's...
April 13, 2009 at 10:41 am
I've seen this issue pop up before on mapped drives. They are deceptively easy to use but almost always cause problems later.
April 13, 2009 at 10:31 am
Quinn,
Are you using a SQL Server Destination to write the data to your SQL Server database? If so, I recommend changing to an OleDB Destination. The SQL Server...
April 13, 2009 at 9:32 am
As indicated by your posted error message, there are duplicates in your reference data used for the lookup. You can do one of two things to fix this: ...
April 12, 2009 at 9:37 pm
Yes, you could do this with a Script Component. However, if you allow incoming data files to update your metadata, you run the risk of causing some much bigger...
April 12, 2009 at 9:32 pm
It sounds like you've got a mismatch in your variable character types between the source and destination. SSIS won't implicitly change a VARCHAR (ASCII) to NVARCHAR (Unicode) or vice...
April 12, 2009 at 9:25 pm
I agree with GSquared in that, if the UPDATE is the only thing you're doing, one or two SQL statements could be used for this.
If you need to include this...
April 12, 2009 at 9:08 pm
When you install SQL Server 2005/2008, you can also install the Business Intelligence Developer Studio (BIDS) environment, which is essentially a set of templates that allow you to open and...
April 12, 2009 at 9:00 pm
Retrieve fewer columns by using SELECT [column1], [column2], etc, rather than SELECT *. Appropriate indexes will help as well.
For better answers to your questions, include more detail about your...
April 12, 2009 at 8:50 pm
If you execute an SSIS package from the BIDS designer on a workstation that has the SSIS runtime installed and running, the package will be run using the local SSIS...
April 12, 2009 at 8:47 pm
You should remove the line that reads:
OReader.NextResult()
You're actually duplicating the call your making with the reader.Read() at the top of the loop, which results in skipping rows within your data.
hth,
Tim
April 12, 2009 at 8:34 pm
Viewing 15 posts - 316 through 330 (of 681 total)