Viewing 15 posts - 211 through 225 (of 2,612 total)
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...
December 31, 2008 at 7:00 am
If you drag the variable from the variables list in the expression builder, you can avoid these problems.
December 31, 2008 at 5:57 am
Variables in expressions are case sensitive. You need to capitalize the "U" in "User":
"sp_OracleInterface_InvoiceNoTemp '" + @[User::StartDate] + "','" + @[User::EndDate]
December 31, 2008 at 5:56 am
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...
December 30, 2008 at 7:45 pm
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...
December 30, 2008 at 11:27 am
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...
December 30, 2008 at 8:54 am
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...
December 30, 2008 at 6:43 am
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.
December 30, 2008 at 5:36 am
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...
December 30, 2008 at 4:54 am
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.
December 29, 2008 at 12:57 pm
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...
December 29, 2008 at 12:22 pm
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.
December 29, 2008 at 12:19 pm
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...
December 29, 2008 at 11:17 am
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...
December 29, 2008 at 6:08 am
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...
December 29, 2008 at 6:02 am
Viewing 15 posts - 211 through 225 (of 2,612 total)