Viewing 15 posts - 31 through 45 (of 56 total)
I'd try the dimension relationships. Make sure that measure group and dimensions have relationship in the dimension usage page.
January 15, 2013 at 4:30 am
The secure/best method is to not save the password in config file and use Windows Authorization. If that's not possible, save in the config and restric access to that folder.
Details:...
January 15, 2013 at 4:26 am
Hi,
What you're currently doing is called a Type 1 update. This is the most easy of all. Although, instead of updating all columns you can look for only the columns...
October 15, 2012 at 2:09 pm
Hi there! i would recommend starting from these resources. These are not "live scenarios" you asked for, but learn a topic and practice on your machine. I think that itself...
September 11, 2012 at 8:44 am
Look at the remarks section here: http://msdn.microsoft.com/en-us/library/ms184325.aspx
When using ISNULL, check and replacement expressions should be of compatible data types.
September 11, 2012 at 8:32 am
Try this, it will give you a start.
SELECT DeptName
, [2001]
, [2002]
, [2003]
, [All]
FROM (
SELECT DeptName
, startyear = isnull(cast(year(StartDate) AS CHAR(4)), 'All')
, Cnt = Count(empid)
FROM StaffHistory
GROUP BY DeptName
, year(StartDate)
WITH rollup
) src
pivot(sum(Cnt)...
September 10, 2012 at 9:01 pm
Create table. This will be very simple if AMonth is a date column. I made this change.
CREATE TABLE [dbo].[test1](
Ayear smallint NOT NULL ,
AMonth date NOT NULL,
AGroup varchar(3) NOT NULL ,
MonthlyAmt...
August 31, 2012 at 11:30 am
Not tackling this article. I'm extremely sorry for hanging onto this one for a very long time and dropping the ball, Steve!
May 23, 2012 at 3:02 pm
Did you look at the below link:
http://msdn.microsoft.com/en-us/library/ms153586(v=sql.105).aspx
SSRS reports can be called from a ASP.net application.
January 25, 2012 at 8:32 pm
If you are asking if SSAS uses tempDB, No. SSAS doesn't use TempDB for querying.
TempDB might be used when source data is processed to SSAS.
January 25, 2012 at 8:27 pm
There is no way unless you have pre-captured this data. There is SSAS flight recorder, but you may not have any luck there too.
I would suggest enabling SQL profiler trace...
January 20, 2012 at 10:45 am
Not an expert advice 🙂
How about a simple star schema with three dimensions: Calendar, Branch, Metrics, and fact table called FactGoals.
Measure in the fact table can be GoalValue.
Add an...
January 20, 2012 at 10:19 am
From what i understand, you will have to play with dimension usage and ignoreunrelateddimensions propert of a measure group.
Please try to provide any examples of your cube.
Does the following problem...
January 17, 2012 at 7:26 am
Viewing 15 posts - 31 through 45 (of 56 total)