Forum Replies Created

Viewing 13 posts - 106 through 118 (of 118 total)

  • RE: SSIS loop through Zip files

    I agree with above also if it is always the 15th file you can edit your loop to pick up that specific file name. I would guess that the...

  • RE: temp table in sysobjects

    Correct sql is

    select * from tempdb..sysobjects where name like '%#testvm%'

  • RE: COALESCE Vs ISNULL

    ISNULL and COALESCE though equivalent, can behave differently. An expression involving ISNULL with non-null parameters is considered to be NOT NULL, while expressions involving COALESCE with non-null parameters is considered...

  • RE: Creating Dynamic Outputs in SSIS to an SQL Database

    Are the images not showing up for anyone else?

    Even when I right click and say Show Picture nothing happens.

  • RE: Sending E-Mail from SQL 2008 Express

    Good Article. Two suggestions

    I would make the attribute appear in the same code window as the method. At first it looks confusing because you have

    <Microsoft.SqlServer.Server.SqlProcedure()>...

  • RE: Predict the outcome of the SQL statements

    Good question but I think a better explaination is:

    the default of decimal without parameters is (18,0) thus making 1.09 -> 1 and then the ceiling of 1 is 1

  • RE: Color coding

    This is absured and I will use the same logic Hugo used on the question about creating a table with []... How does the deception in this question help in...

  • RE: Fun with IDENTITY - Part I

    UMG Developer (9/28/2010)


    I agree, nice question, but it would have been even better with a fourth option: 1-Boston;2-New Delhi

    Without that option it was really a test of transactions, not...

  • RE: What will happen?

    This is how we get the date for the current day without time element

    DECLARE @a INT

    DECLARE @b-2 DATETIME

    set @b-2 = GETDATE()-.5

    SET @a...

  • RE: HAVING without GROUP BY

    Thank you for the question and the detailed explaination

  • RE: SSIS Dynamic Package Help

    It sounds like you are going to have to have a script task in your loop to determine which file you have. You can then set a variable and...

  • RE: Can not add reference to microsoft.sqlserver.dtsruntimewrap.dll

    You're right, sorry to lead you astray

    To answer your original question after I added the reference

    Microsoft.SqlServer.DTSRuntimeWrap

    I was able to type the imports statement

    Imports Microsoft.SqlServer.Dts.Runtime.Wrapper

    Now what you can do with...

  • RE: Can not add reference to microsoft.sqlserver.dtsruntimewrap.dll

    I do not see why you need a reference for that. Note that for DataFlow Script Task it is already included.

    What I would try is create two variables...

Viewing 13 posts - 106 through 118 (of 118 total)