Forum Replies Created

Viewing 15 posts - 211 through 225 (of 2,612 total)

  • RE: form an expression in a SSIS variable

    You should have in elipsis in the expression property for a variable.

    As far as the error, it is because your date variables are of date data types and you cannot...

  • RE: form an expression in a SSIS variable

    If you drag the variable from the variables list in the expression builder, you can avoid these problems.

  • RE: form an expression in a SSIS variable

    Variables in expressions are case sensitive. You need to capitalize the "U" in "User":

    "sp_OracleInterface_InvoiceNoTemp '" + @[User::StartDate] + "','" + @[User::EndDate]

  • RE: Corporate Software Development

    RE-reading my post, I may have sounded a bit harsh - sorry about that.

    The point I was trying to make about the cube walls is that while this may not...

  • RE: cannot insert null value

    set @ID = @@identity;

    This is your problem.

    Look up @@identity in books online.

    It will be empty unless you have just inserted into a table with an identity column.

    It is there to...

  • RE: Corporate Software Development

    I've had everything from private offices to working in basically an open fish-bowl with several other developers. I don't really care either way. I think any company making...

  • RE: No ENUM in MSSQL...Workaround with CHECK?

    You could do this with a check constraint, but the best solution would be to create another table with the "T" and "P" values as the primary key - and...

  • RE: Are the posted questions getting worse?

    Very true, if you have to judge a tool by the number of people that misuse it, Analysis Services must be a total failure as well.

  • RE: Are the posted questions getting worse?

    I am always amazed at the number of people that have trouble with getting SSIS to insert new rows and update existing ones.

    For small tables, the Slowly Changing Dimension transformation...

  • RE: Is it safe to use "update syscolumns set colstat"

    I agree - really bad idea.

    Use an ALTER TABLE script or copy the data into another table. Don't try to do this manually in the system tables.

  • RE: Calling Sybase stored proc

    I would recommend you add an annotation to your project to note that you have used an expression. Nothing in the SSIS designer really helps you find them and...

  • RE: Calling Sybase stored proc

    The expression looks ok.

    Hard-code a value into the SQL Statement (it will use this to figure out the meta-data) in the source component and remove the parameter information.

  • RE: Calling Sybase stored proc

    Rather than using a query with parameters (?), use an expression to build the query.

    I am not sure which Sybase OLEDB driver you are using, but the couple I have...

  • RE: foreach loop container

    Put a sequence container around the 4 tasks. Have the 4 tasks fail with their default settings. Set the sequence container ForceExecutionResult to success.

    This should make the task...

  • RE: SP & Web Service

    You are in a SQL 2005 forum.

    For SQL 2000 you have a couple of options that I can think of. It will depend heavily on what the web service...

Viewing 15 posts - 211 through 225 (of 2,612 total)