Viewing 15 posts - 9,241 through 9,255 (of 13,882 total)
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
Is this a run-time error or a validation error?
When you recreated the package in 2008, did you do it from scratch, or did you try to reuse/copy/whatever bits of your...
June 8, 2014 at 10:41 pm
rockstar283 (6/7/2014)
Not possible.. You know the importance of an identity column right 🙂
I know what an IDENTITY column is, of course.
It seems that you are doing ETL from a source...
June 8, 2014 at 1:31 am
...Or you could just remove the IDENTITY definition from the target table 🙂
June 7, 2014 at 5:14 am
PurpleLady (6/5/2014)
June 5, 2014 at 10:33 am
Is Integration Services installed on the server?
June 5, 2014 at 9:39 am
I can get that exact error by doing something like this:
declare @sTime varchar(5) = ' 2359'
select convert(smalldatetime, stuff(@sTime, 3, 0, ':'))
So I'm wondering whether there might be some dodgy...
June 5, 2014 at 4:55 am
.. you could also consider using a File System Task for doing the copy.
June 4, 2014 at 11:33 am
What do the cmd files do?
Please post the text of the error message.
June 4, 2014 at 8:18 am
Put everything that depends on the file's presence in the FEL container - so that appears to be all tasks.
Your file-existence-check script is rendered superfluous.
June 4, 2014 at 8:16 am
Viewing 15 posts - 9,241 through 9,255 (of 13,882 total)