Viewing 15 posts - 11,641 through 11,655 (of 11,676 total)
Pfeuw, this thread has finally ended 🙂
When I delevop my packages, the OLE DB Destination usually gives an error or warning during design when I map a dataflow column to...
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
February 26, 2010 at 12:39 pm
I don't know what your mappings are in the OLE DB Destination, but if you map the data viewer column Time to the column Time in your destination table, it...
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
February 26, 2010 at 7:39 am
Datetime is the correct datatype for SQL Server and (DT_DBTIMESTAMP) is the correct data type for SSIS. Since you're working with SQL Server 2005, don't convert the values to (DT_DBTIME),...
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
February 26, 2010 at 6:30 am
In a previous post you said that the destination is a database timestamp field.
Do you mean that you use the datatype timestamp in SQL Server? Because that should be the...
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
February 26, 2010 at 5:45 am
Griffster (2/26/2010)
DATEADD("ss",TIME / 10000000,(DT_DBTIMESTAMP)"01 Jan 1900")where TIME is the DT-I8 field I'm converting and the destination is a database timestamp field.
So basically a combination of wschampheleer's solution and my solution...
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
February 26, 2010 at 5:11 am
Or, to give you another method, you can use a script component the compose the e-mail message, store it in a variable and then use the Send Mail Task.
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
February 26, 2010 at 12:18 am
You can use the RAW File Destination to write your update lines to a RAW file.
But I think it won't give monstreous performance gains above a (global) temp table.
But I'm...
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
February 25, 2010 at 6:42 am
Paul_Harvey (2/24/2010)
This is accepted by the Derived COlumn transformation, but when I debug the package it fails with the following:
[Derived Column [4862]] Error: SSIS...
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
February 25, 2010 at 2:56 am
I've read all four parts of the article and I've found it very interesting and useful.
Thx
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
February 25, 2010 at 1:49 am
divyanth (2/24/2010)
"\" is treated as an escape character .... You always need to add another "\" to escape the other one...it should be C:\\Sample
I thought this was only necessary in...
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
February 24, 2010 at 1:00 pm
True, you can do almost everything with a script component/task, but there are solutions that don't require scripting.
Some people aren't comfortable with VB.NET or C# and what if the guy...
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
February 24, 2010 at 12:59 pm
wschampheleer (2/24/2010)
Looks like the first part is time in seconds: ((12 * 60) + 52) *60) + 39 = 46359.
Well, that's genious. Why didn't I think of that? :hehe:
Griffster (2/24/2010)
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
February 24, 2010 at 12:53 pm
steveb. (2/24/2010)
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
February 24, 2010 at 5:47 am
You can use SQL Server Profiler to monitor all the queries against your cube.
With the right options specified, you can filter out most of the events that you don't need.
But,...
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
February 24, 2010 at 5:42 am
Forget about my previous post. I've tried to convert the number using the time_t specification, but it gives an overflow. Which actually makes sense. There are about 31536000 seconds in...
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
February 24, 2010 at 12:22 am
Viewing 15 posts - 11,641 through 11,655 (of 11,676 total)