Viewing 15 posts - 10,996 through 11,010 (of 11,678 total)
Can you be more specific?
You are using SSIS right? What are you trying to accomplish?
I believe it is worth taking a look at the following URL:
http://msdn.microsoft.com/en-us/library/aa259187(SQL.80).aspx
Look at the section explaining...
October 20, 2010 at 3:10 am
You are combining two different filters at once in the conditional split.
1. Are the values different?
2. Is the value null?
Since you nested filter 1 into filter 2, filter 1 doesn't...
October 20, 2010 at 3:06 am
The OLE DB Command doesn't work that way.
It is fired for every row in the dataflow. So, the update statement of the last row will determine what is updated.
Instead, it...
October 20, 2010 at 3:00 am
According to this issue on Connect, SSIS indeed truncates the milliseconds:
October 20, 2010 at 1:15 am
If you are handy with T-SQL, you can create a loop over some dynamic T-SQL that will accomplish the same thing.
October 20, 2010 at 12:55 am
Phil Parkin (10/20/2010)
Modify your script task slightly to not insert the final <CR><LF>? Or is that too obvious?
Relax. The week is almost in the middle. It is almost weekend 🙂
October 20, 2010 at 12:53 am
Is there a question?
Please see the link in my signature and reformulate your question. Help us to help you.
October 20, 2010 at 12:52 am
Nice question. I got it right because I just checked what rights I have on the development server and what rights I have on the production server.
October 20, 2010 at 12:22 am
I believe the most elegant way is the following:
use a task first to check if the necessary file is present (this can be a script task or whatever).
Store the result...
October 19, 2010 at 12:46 pm
You can only use SQL Server Destination if the destination is on the same server.
This BOl article explains why:
October 19, 2010 at 12:41 pm
I can't immediately find the "error" either.
But what are you trying to accomplish?
Or you trying to format a string to another string that looks like a date, or are you...
October 19, 2010 at 12:36 pm
I have to agree with Brandie.
Scripting isn't really necessary to solve this problem. SSIS (or T-SQL) offers enough elegant possibilities to handle this.
You can use the IDENTITY property as said...
October 19, 2010 at 12:23 pm
As you said, SSIS can't provide the documentation you need out of the box.
You can check out BI documentor, but I haven't found real evidence on their site that it...
October 19, 2010 at 12:20 pm
Option 1 isn't that reliable. For really really large tables (e.g. number of records > 2^31-1) it will produce an error. To be 100% sure, COUNT_BIG should have been used.
October 19, 2010 at 3:20 am
Viewing 15 posts - 10,996 through 11,010 (of 11,678 total)