Viewing 15 posts - 11,611 through 11,625 (of 11,676 total)
I sure hope that the original poster found the solution to his problem two years ago...
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
March 9, 2010 at 1:26 am
Try the following statement when you select your data:
select convert(datetime,replace(myColumn,'.',':')) from myTable
It works for the example that you provided.
Do this in the OLE DB Source, not in a derived column...
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
March 8, 2010 at 8:06 am
GilaMonster (3/5/2010)
da-zero (3/5/2010)
- never use the build-in slowly changing dimensions wizardIf you make such a statement in an interview, any competent interviewer will immediately follow up with 'Why?'
Well, thanks for...
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
March 6, 2010 at 5:00 am
I sure hope that there aren't any spambots searching this forum looking for e-mails 😉
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
March 5, 2010 at 7:11 am
Learned something new today. Thanks for letting us know.
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
March 5, 2010 at 1:36 am
Very common best practices:
- never use *, always select and the columns you need. Not only in OLE_SRC, everywhere. (e.g. lookup component)
Limit the results of the queries with appropriate where...
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
March 5, 2010 at 12:46 am
What I would answer on those questions:
4. Updates: only if corrections are allowed to be made. Otherwise it is just a new fact.
Deletes: if the fact tables contains snapshot, I...
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
March 4, 2010 at 1:20 pm
Not sure this belongs in a BI forum,
but I believe that since you've enclosed the variables between quotes, they become part of the string and they are not interpreted as...
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
March 4, 2010 at 1:13 pm
Do you type in 0.74 yourself or is the data already present in the Excel sheet.
It is possible that the actual value is 0.7933 and that Excel formats it in...
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
March 4, 2010 at 8:06 am
At SQL-IS there are a few articles on how to create packages programmatically. However, I'm not sure they use XML.
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
March 4, 2010 at 3:02 am
Phil Parkin (3/4/2010)
There is no question here.
Also, there is no spoon 😉
(where is my morning coffee?)
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
March 4, 2010 at 2:19 am
First hit on Google when searching for You can not debug or run this project, because the required version of the Microsoft Office application is not installed SSIS script task...
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
March 4, 2010 at 2:13 am
You mentioned a temporary table.
When SSIS starts evaluating your package, the temporary table doesn't exist yet.
Hence, he will find a reference to an object that he cannot find.
Solution: you must...
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
March 4, 2010 at 2:06 am
As I read the description of dtexec at BOL, the statement should take the following form:
dtexec /f mypackage.dtsx /set \package.variables[myvariable].Value;myvalue
This without the Properties.
Can you try that?
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
March 4, 2010 at 12:49 am
In my native language, schema and diagram are synonyms.
You should've asked your question more clearly.
But on to the question:
click on Database in the menu and then choose Generate Relation Schema.
A...
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
March 4, 2010 at 12:15 am
Viewing 15 posts - 11,611 through 11,625 (of 11,676 total)