Viewing 15 posts - 3,571 through 3,585 (of 11,678 total)
You can connect a fact table to as many dimension tables as you like. There's no technical limit on that.
You just have to make sure that it make sense to...
March 6, 2014 at 6:28 am
I don't think there is a hard-coded limit.
But if your number of dimensions is going over 30, you might want to investigate of some dimensions can't be combined.
Regarding facts: if...
March 6, 2014 at 6:20 am
That should be possible yes:
March 6, 2014 at 5:29 am
In that case I would write my own parameter selection boxes and call the report using an URL with the parameters supplied.
March 6, 2014 at 4:58 am
AdityaSingh (3/6/2014)
hy there, I got looped on submit button.and could not find any option to delete my post.
Sorry if this bothered you
It didn't bother me.
It could bother me if...
March 6, 2014 at 4:56 am
It would be much easier to write a query to answer your problem (and test it) if you would provide table DDL and sample data.
See the first link in my...
March 6, 2014 at 4:54 am
Grant Fritchey (3/6/2014)
March 6, 2014 at 4:40 am
SELECT ID, Code, StudentName, Age, Term, NumberOfSubject
FROM
(
SELECT ID, Code, StudentName, Age, Term, NumberOfSubject, RID = ROW_NUMBER() OVER (PARTITION BY Code ORDER BY ID)
...
March 6, 2014 at 4:35 am
Please do not crosspost. It wastes peoples time and fragments replies.
Original thread with replies can be found here:
http://www.sqlservercentral.com/Forums/Topic1548128-8-1.aspx
March 6, 2014 at 4:27 am
This can easily be achieved by using NTILE.
DECLARE @parts INT = 5;
SELECT
StartDate= MIN([Date])
,EndDate= MAX([Date])
FROM
(
SELECT
[Date]
,Parts = NTILE(@parts) OVER (ORDER BY [DateOfYear])
FROM [dbo].[myDateTable]
WHERE [Year] = 2014
) tmp
GROUP BY Parts;
March 6, 2014 at 4:26 am
MysteryJimbo (3/6/2014)
Koen Verbeeck (3/5/2014)
Pfff, than you have never been in Belgium before 😀
If we wouldn't be having the most traffic jam congested cities in the world, you could drive through...
March 6, 2014 at 4:19 am
These are some serious rounding errors and it will not be easy to solve them.
You can add extra precision, but what if you divide 100 by 3? Even float won't...
March 6, 2014 at 4:08 am
Please do not crosspost. It wastes peoples time and fragments replies.
Original thread with replies can be found here:
http://www.sqlservercentral.com/Forums/Topic1548135-1550-1.aspx
March 6, 2014 at 4:02 am
paul.knibbs (3/6/2014)
MysteryJimbo (3/6/2014)
Great Britain (UK minus Northern Ireland) itself is about 8 hours east to west and about 16 hours north to south depending on your location and traffic. ...
March 6, 2014 at 3:57 am
If I'm not mistaken sa is a SQL Server account, meaning it does not map to a domain/local user which you can give permissions on resources.
March 6, 2014 at 3:38 am
Viewing 15 posts - 3,571 through 3,585 (of 11,678 total)