Viewing 15 posts - 7,261 through 7,275 (of 13,876 total)
uzn2010 (4/13/2016)
No, excel file did not change. No columns added or renamed. Everything is same.
OK, thanks.
Now, regarding this part of the error message:
There may be error messages posted before this...
April 13, 2016 at 9:11 am
uzn2010 (4/13/2016)
April 13, 2016 at 8:35 am
richardmgreen1 (4/13/2016)
Hi PhilYes, each file goes into its own table and is further processed by SQL separately.
That's a good start.
Do the source files and target tables have the same formats?...
April 13, 2016 at 8:34 am
richardmgreen1 (4/13/2016)
I've got an SSIS package that loads 140+ files sequentially.
I want to make it process the files in parallel (for example, 4 at a time) by checking the...
April 13, 2016 at 8:10 am
Nikku (4/13/2016)
I have one predefined excel sheet where multiple columns are present in scattered form.
I want to load data for respective column in respective excel cell dynamically. Those headers...
April 13, 2016 at 7:59 am
doasidont (4/13/2016)
Aside from Print Scr, is there a way to print the Object Explorer window?Thanks.
Not that I know of.
April 13, 2016 at 7:57 am
Manic Star (4/13/2016)
April 13, 2016 at 7:56 am
Has the format of the Excel file changed at all? Sheet name different? Column names different? New columns added?
April 13, 2016 at 6:52 am
dallas13 (4/12/2016)
Thanks.I did similar thing using Findstring as patindex and charindex is not working in sql 2014
SUBSTRING(@[User::Filename_to_be_deleted], FINDSTRING(@[User::Filename_to_be_deleted], "-", 1)+1, 8)
PATINDEX and CHARINDEX both work just fine in T-SQL...
April 13, 2016 at 6:45 am
michael.mcclure (4/12/2016)
Putting a delay in after the file is create solved the issue.
If you're not satisfied with this slightly inelegant solution, you could try putting all of your file-creation stuff...
April 12, 2016 at 2:46 pm
RV16 (4/12/2016)
I have begin_date as datetime datatype in sql server.
I am trying to create report.
In that, I just want to show only date as begin_dte. So I used...
April 12, 2016 at 2:44 pm
dallas13 (4/12/2016)
April 12, 2016 at 2:37 pm
Something like this may help:
DECLARE @Filename_to_be_deleted VARCHAR(100);
DECLARE @FileDate DATE;
SET @Filename_to_be_deleted = 'abc_vg-20161204.txt';
SET @FileDate = SUBSTRING(@Filename_to_be_deleted,
...
April 12, 2016 at 1:25 pm
uzn2010 (4/12/2016)
I'm using derived column transformation editor to remove leading zeroes from the number. Can anyone help me how to do it?
Numeric data imported from Excel does not have leading...
April 12, 2016 at 12:13 pm
Are you able to provide sample DDL, data with DML and desired results, as described in the link in my signature? It would make things clearer.
April 12, 2016 at 9:58 am
Viewing 15 posts - 7,261 through 7,275 (of 13,876 total)