Viewing 15 posts - 8,461 through 8,475 (of 13,882 total)
Anshul Parmar (4/24/2015)
Package 1 –
It is not a good practice to create a database and tables in SSIS packages.
I'll suggest if it is an initial load, create all databases and...
April 24, 2015 at 4:39 am
vipin_jha123 (4/24/2015)
yes true, but if in case we duplicate bbxkey come in source then how to avoid this .
De-duplicate your source before merging, or find a better match key.
April 24, 2015 at 2:32 am
Is there any way in merge itself to avide this issue.
Sure. Always match on a unique key (must be unique in both source and target).
April 24, 2015 at 1:27 am
Do you mean a fixed-width file?
I've never heard of a fixed-length file before.
April 23, 2015 at 8:31 am
One way of achieving this is by creating your source query such that you get one row per job code history. So, get results that look like this:
(EmployeeNumber, FirstName, LastName,...
April 23, 2015 at 12:31 am
think the metadata for source and destination over data flow task cannot be changed at runtime.
This is correct. It needs to exist at design time.
April 22, 2015 at 5:54 am
axissolutionspl (4/22/2015)
Do you mean SQL 2014.? Yes, I think so. But I have not try myself. I am relatively newbie in BIML too.
Well, technically I mean SSDT 12.x.x.x, which is...
April 22, 2015 at 4:34 am
axissolutionspl (4/22/2015)
Yes there is a bit of learning, but if you just use his example as starting point is not...
April 22, 2015 at 3:11 am
Jay Hammer (4/21/2015)
Since I was building my SSIS package from an existing package (similar use case, ETL data and export data to a...
April 21, 2015 at 1:00 pm
OK, I'll give you an outline. There will be many ways of achieving this, some of which will have fewer calls to the DB engine, but here is just one....
April 21, 2015 at 12:56 pm
p.shabbir (4/21/2015)
Thanks for the quick response. I know that one DFT per file will do but, what if we have more files(Say 50 or 100 files). It will be...
April 21, 2015 at 11:08 am
p.shabbir (4/21/2015)
Hi Experts,Is it possible to load multiple flat files into table without using foreach loop container :-)? if so, please let me know how?
Appreciate any replies.
Thanks in advnc.
Sure, just...
April 21, 2015 at 10:44 am
Minnu (4/21/2015)
using below script to export the select statement result to .xls
declare @sql varchar(8000)
select @sql = 'bcp "select * from Databases..Table" queryout c:\bcp\Tom.xls -c -t, -T -S' + @@servername
exec...
April 21, 2015 at 6:28 am
vignesh.ms (4/21/2015)
I have SSIS project with me, I can run as it is. But, when I try to edit the script task;
shows an error : The name 'zipfile' does...
April 21, 2015 at 6:24 am
The temp table 'hack' changed in SSIS 2012. Use EXECUTE WITH RESULT SETS, see here.
April 21, 2015 at 3:25 am
Viewing 15 posts - 8,461 through 8,475 (of 13,882 total)