Viewing 15 posts - 9,226 through 9,240 (of 13,876 total)
You can capture the current iteration's file path in a user variable.
Have a look at the Variable Mappings section here[/url] and let us know if you need more info.
June 26, 2014 at 1:51 am
antonio.estima 4150 (6/25/2014)
I have an activity that was created using SSIS 2008 R2, which consists of copying a file from a server within the network to a server...
June 25, 2014 at 8:20 am
imani_technology (6/24/2014)
I decided that using a simple backup/restore might not be the best idea for staging. Why? Because:
1) We are backing up from one server on one...
June 24, 2014 at 12:28 pm
You have some bizarre looking char dates there.
Are you looking to do INSERTS, or INSERTS and UPDATES or INSERTs, UPDATEs and DELETEs for your incremental load?
Do you have such columns...
June 19, 2014 at 10:17 am
Stuart Davies (6/18/2014)
June 18, 2014 at 5:25 am
If you script the stored proc as CREATE from SSMS, you will see something like this at the start:
set ansi_nulls on
go
set quoted_identifier on
go
If you make sure that your set options...
June 18, 2014 at 12:14 am
Beatrix Kiddo (6/17/2014)
June 17, 2014 at 4:22 am
imani_technology (6/16/2014)
Thanks for the reply. I think we will need to do the backup/restore once or twice a day. What's the best way to automate this?
Via a SQL...
June 17, 2014 at 12:47 am
imani_technology (6/16/2014)
We are using SSIS 2012, which has the project deployment model. Will having several packages affect the deployment vs. one package?
Yes it will. One project = one ispac...
June 17, 2014 at 12:38 am
ronan.healy (6/16/2014)
well i way trying to use a dervied column
Please note: the column is 'derived', not 'dervied' 🙂
June 17, 2014 at 12:30 am
Anamika (6/15/2014)
In my ETL feed i need to identify whether the data is missing for continuous 5 hours. What could be the efficient way of doing this in SSIS....
June 15, 2014 at 11:44 pm
May I thank you all for the comments and insight, especially Jeff for the detailed and interesting response.
I shall continue omitting the superfluous BEGIN/END, though I won't complain too much...
June 13, 2014 at 7:24 am
ChrisM@Work (6/11/2014)
CREATE TABLE #temp (colint INT, colvarchar VARCHAR(10), colcomputed AS CAST(colvarchar AS INT))INSERT INTO #temp (colint, colvarchar) SELECT 1, '10'
SELECT * FROM #temp
CREATE INDEX ix_colcomputed ON #temp (colcomputed)
SELECT colcomputed FROM...
June 11, 2014 at 7:56 am
Add a computed persisted int column, add index and join on that?
June 11, 2014 at 7:00 am
Viewing 15 posts - 9,226 through 9,240 (of 13,876 total)