Viewing 15 posts - 106 through 120 (of 157 total)
If the Column Names being used in the Where clause are not in any other tables, then you might want to remove the tableName and just use column Names instead..like...
March 24, 2010 at 4:26 pm
Try using your SQL as part of expression and Use that Variable as your source in OLE DB source/ execute SQL task.. That way you will be able to see...
March 24, 2010 at 3:57 pm
Did you try using the actual Table Name instead of alias... That might just do it.. If it does not work try using [TablName].[ColumnName] instead.. This might sound silly...
March 24, 2010 at 3:50 pm
Since you have a separate import for each server and just have to add the Server Name.. Did you try using Derived Column to add your server name?.. each import...
March 23, 2010 at 9:40 am
Tom Bakerman (3/22/2010)
divyanth - It is a single stored procedure that executes the 7 steps I described above.
Since you say that its only a single Sp . I would recommend...
March 23, 2010 at 9:33 am
are you using same stored procedure to insert rows into two different tables.. If so did you try inserting them using data flow task with one source(SP) and two destinations.....
March 21, 2010 at 10:08 pm
COlumnA cannot be BLANK if the ColumnB has one of the value (Alpha,beta,Ray,john,text)
I have always seen that conditional split acts weirdly when checking for NULL columns..I have also seen...
March 18, 2010 at 10:13 am
I would take the approach that Elliot suggests
"likely do a query from each that subsets the table down to as little information as possible and write it to a...
March 18, 2010 at 10:00 am
This passes the value through with the sign, however it is now rounding, so I need to figure out how to pass through the decimals and the sign
This might help
Bring...
March 18, 2010 at 9:52 am
I would suggest using a script task because it helps you split them as you need. Even derived Column will do but using script task will give you more flexibility.....
March 18, 2010 at 9:30 am
I use the below script to check file existence on a FTP server.. This should work for you..It uses two variables FileExists and FTPPwd... after the Script task use FileExists...
March 16, 2010 at 9:17 am
I agree with Dan. There are multiple ways of doing that.. the other way would be to write a distinct(year) in Execute SQL task in a way that it returns...
March 15, 2010 at 1:51 pm
ganeshlohani (3/11/2010)
However, lat me explain you again in simple case.
SSIS PackageA has 3...
March 11, 2010 at 2:43 pm
udaya_1222 (3/10/2010)
March 11, 2010 at 9:11 am
udaya_1222 (3/10/2010)
Can anyone give me a some idea to eliminate duplicate records without using sql functions and by only using transformations.
You can use sort Transformation and check the option "Remove...
March 10, 2010 at 11:27 am
Viewing 15 posts - 106 through 120 (of 157 total)