Viewing 15 posts - 9,061 through 9,075 (of 13,881 total)
Koen Verbeeck (9/29/2014)
The YEAR function (and MONTH and DAY) only work on date data types, not on strings.You'll get these errors when your input column is a string data type.
They...
September 29, 2014 at 3:56 am
If your input data is in a string, you cannot use date functions on it.
Use substring to extract the parts of the string you are interested in and do...
September 29, 2014 at 3:55 am
ronan.healy (9/29/2014)
21/03/2018
I keep getting an error. do I have to convert it I tried the following code to try and convert it but...
September 29, 2014 at 3:34 am
antonela (9/26/2014)
September 26, 2014 at 8:22 am
Not relevant to your question, but I would also be interested to know why you are using a global temp table (##) rather than a local one (#)?
September 26, 2014 at 7:15 am
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
Viewing 15 posts - 9,061 through 9,075 (of 13,881 total)