Viewing 15 posts - 9,061 through 9,075 (of 13,876 total)
Karan_W (9/26/2014)
Thanks Phill.Any suggestion what I should try now to resole this issue?
Source is not Unicode, target is not Unicode.
So something in the package must be trying to use...
September 26, 2014 at 3:31 am
Karan_W (9/26/2014)
Apologies for delay response.
Into SSIS the data type for these column is
text stream [DT_TEXT]
The below string I am retrieving sand inserting to database table.
AA1;20110809;AA55;1009.0000;C15;20110809;AA4;1010.0000;
Is this Unicode string? Please...
September 26, 2014 at 12:28 am
Grant Fritchey (9/25/2014)
September 25, 2014 at 8:03 am
ronan.healy (9/25/2014)
I tried a few different column delimiters like tab vertical and coma but still doesn't come in...
September 25, 2014 at 7:43 am
September 25, 2014 at 7:37 am
Please expand on this statement:
because i will be doing this for about 60 tables and those values might change.
Will these tables contain the same columns / datatypes?
September 24, 2014 at 8:46 am
Use the following query for your dataflow source:
select b.GROUP_ID, b.NAME, b.STATE
from TableB b
join TableA a on b.GROUP_ID = a.GROUP_ID
where a.STATUS = 'Ready'
September 23, 2014 at 10:24 pm
Use the INSERT/SELECT syntax from my second example.
September 23, 2014 at 8:53 am
Or
INSERT INTO dbo.T1 (column_2)
select col2 from YourTable
September 23, 2014 at 8:48 am
Just do the INSERT without using any CREATEs or DROPs:
INSERT INTO dbo.T1 (column_2)
VALUES ('Explicit value');
September 23, 2014 at 8:46 am
susmitha117 (9/23/2014)
Hi Phil,yes i am using for each loop
Are you assigning the file name to a variable? If not, create yourself a variable and ensure that the file name gets...
September 23, 2014 at 7:21 am
Are you using a Foreach loop to process the file?
September 23, 2014 at 5:40 am
brad.mccollum (9/19/2014)
I notice that when searching for "SQL Server Data Tools" on the system to begin working on an SSIS...
September 20, 2014 at 2:53 am
DB_Andrew (9/19/2014)
Here is the fix for VS 2010 and VS 2012.FIX: SSIS 2012 XML Source task cannot load data from a URI
http://support.microsoft.com/kb/2991526
Enjoy!
And for those who would rather just click...
September 20, 2014 at 2:50 am
I'll be honest, your post is a little tough to decipher 🙂
It seems that you have source data in a table which may or may not have entries for every...
September 20, 2014 at 2:48 am
Viewing 15 posts - 9,061 through 9,075 (of 13,876 total)