Viewing 15 posts - 91 through 105 (of 118 total)
Linda 44925 (11/4/2010)
SELECT Projects.ProjName, (Employees.EmpName) AS EmpName, SUM([Employees Project Log].Hrs) AS TotalHrs
, RANK() OVER
(PARTITION BY Projects.ProjName ORDER...
November 4, 2010 at 9:54 am
How are you determining if your configuration is usable or not? If you are trying to verify if a connection can be established or not, I would recommend using...
November 4, 2010 at 9:47 am
What is the value of N? Peter's approach is a good one, but from my experience it can be very time consuming to configure everything to work programmatically -...
November 4, 2010 at 9:37 am
I would definitely remove the chart. I also typically convert my excel files to CSV files. If I'm getting files from business, I request that they are in...
November 4, 2010 at 9:21 am
There is a solution property called Run64BitRuntime. You can set it to false to run in 32 bit mode. Note - I wrote 32 bit, not 34 🙂
November 3, 2010 at 6:26 pm
PaulB-TheOneAndOnly (8/12/2010)
1st rule... Avoid many-to-many relationships. When you bump into a many-to-many that means a bridge table is missing. So, the answer is yes, bridging is the solution.
I agree. ...
November 3, 2010 at 2:19 pm
Hard to completely understand your problem, but:
Create a Class Dimension. ClassKey will be included into your fact table which will indentify which measure is being used.
November 3, 2010 at 12:51 pm
PugMaster (7/7/2010)
Sorry datawarehouse newbie question! I am not sure how to maintain the relationship between Fact and Type 2 Dimension.
i.e if a new row is inserted into a dimension table...
November 3, 2010 at 12:31 pm
I've run into the same thing, although in a slightly different application. I built an ODS using the merge statement for each of the tables that were needed for...
November 3, 2010 at 12:07 pm
Thanks for the additional info, but this is still difficult to diagnose without more information. My advice would be to create a test package and get rid of everything...
November 3, 2010 at 11:20 am
It sounds to me like it is a problem with your lookup(or Execute SQL Task that is used to insert records into your table) and not your update statement. ...
November 3, 2010 at 9:35 am
I use master packages in virtually all of my projects. You need to create your master package and then use the Execute Package task that will call of your...
November 3, 2010 at 9:27 am
mhassanshahbaz (11/2/2010)
3)in "error table", dirty data (00,11,01,10,001,M) should be converted in 0,1
How do you know the true value of your dirty data? For example, how do you know if...
November 3, 2010 at 9:06 am
Are you using package configurations or an expression for your connection manager to the file? Sounds like your package is reading the hardcoded path in BIDS, but then reverting...
November 3, 2010 at 8:40 am
Year and month only isn't an acceptable form of a date datatype in SQL Server. You'll have to store a day too (I just default it to the first...
November 2, 2010 at 3:23 pm
Viewing 15 posts - 91 through 105 (of 118 total)