Viewing 15 posts - 1,756 through 1,770 (of 3,489 total)
Directly from Hardware and Software Requirements for Installing SQL Server 2016:
Installation of SQL Server 2016 is supported on x64 processors only. It is no longer supported on x86 processors
October 10, 2016 at 1:11 pm
Didn't we already have this discussion? Is this not a repetition of this earlier thread?
I am under the impression that either you are describing something incorrectly or your design...
October 9, 2016 at 6:02 pm
Sounds like you need a Matrix on your report, but it would be a lot easier to solve with some data.
Can you post some sample data?
A create table statement and...
October 9, 2016 at 10:33 am
If she's trying to learn DAX (which you can use in Excel, which she probably knows already), then get Rob Collie's book -- it's on his website powerpivotpro.com I...
October 7, 2016 at 10:26 pm
Why not just use ROW_NUMBER() and then add a constant to it and do the whole update in one go? I don't think you need a cursor for this...
October 7, 2016 at 10:22 pm
Would that make it too easy? (StudentID, LockerID, StartLease, EndLease) or similar?
October 7, 2016 at 4:00 pm
Isn't this as simple as
School--(1,M)--Locker--(1,M)--LockerAssignment--(M,1)---Student
and
LockerAssignment--(M,1)--SchoolYear
From that you can join the tables and get all the current locker assignments etc.
October 7, 2016 at 9:28 am
You can't test your SQL properly, because your table doesn't contain the right records. I added a new record to the table so that both CID and MID are both...
September 28, 2016 at 10:29 pm
Proper punctuation is a beautiful thing. Why no semi-colons at the end of your statements?
This worked for me:
--Create Test Table
CREATE TABLE [dbo].[Null_Table](
[CID] [int] NULL,
[MID] [int] NULL
) ON [PRIMARY];
GO ...
September 28, 2016 at 7:13 pm
I have both editions of that book. That was the first really good book I found on DAX.
Somewhere here I have F&R's book, which is a bit mind-blowing, but they're...
September 28, 2016 at 10:48 am
You mean destroy the RBAR side, the side that's good at writing cursors and such?
September 27, 2016 at 3:30 pm
Martin,
That's what I was afraid of... My brain might explode.
you know you're in for a rough ride when Ferrari & Russo freely admit that "DAX is hard"... uh oh.
September 26, 2016 at 10:00 pm
I think that will work... Gotta re-read that part of the book. A few times. and then try it, and then read a few more times. And then maybe read...
September 26, 2016 at 4:10 pm
If the reason for your loop is to implement a running total, why not just use a Window function and do something like
SUM( <column to be summed> ) OVER...
September 26, 2016 at 3:03 pm
Since your UDF returns a table, you could probably use CROSS APPLY to pass values from the other table (the source for the two parameters) and then return the whole...
September 26, 2016 at 2:35 pm
Viewing 15 posts - 1,756 through 1,770 (of 3,489 total)