Viewing 15 posts - 661 through 675 (of 1,229 total)
It appears from my understanding that this could very well be quite complex maintenance wise. In your design, could you not snowflake out the course # to include the...
December 17, 2015 at 1:18 pm
GilaMonster (12/15/2015)
December 17, 2015 at 12:44 pm
shank-130731 (12/15/2015)
INSERT...
December 17, 2015 at 12:42 pm
Banbo Bird (12/14/2015)
Create table T1
(
pid INT primary key identity(1,1),
name varchar(10),
amount int
)
Create table T2
(
sid INT primary key identity(1,1),
subnum int,
flag varchar(5),
...
December 17, 2015 at 12:31 pm
danny.delgado 65386 (12/14/2015)
WITH Cnt AS (
select Count(Distinct UserID) as Entitled_Users, DATEFROMPARTS(YEAR(t.WhenAddedToGroup),MONTH(t.WhenAddedToGroup),1) as When_Added_To_Group
from HVDMembership t
where FirstName not...
December 14, 2015 at 7:23 pm
I expanded the code a bit and added more rows to list for month and year as two separate columns
CREATE TABLE #Temp (When_Added_To_Sec_Group DATE , UserID INT)
INSERT #Temp Values...
December 14, 2015 at 7:21 pm
Rod at work (12/11/2015)
Eric M Russell (12/10/2015)
MMartin1 (12/10/2015)
Eric M Russell (12/10/2015)
Rod at work (12/9/2015)
Good advise Eric, thanks.
In many cases the interviewer doesn't really know what they're asking about, and this...
December 11, 2015 at 10:40 am
Eric M Russell (12/10/2015)
December 10, 2015 at 4:08 pm
Eric M Russell (12/10/2015)
Rod at work (12/9/2015)
Good advise Eric, thanks.
In many cases the interviewer doesn't really know what they're asking about, and this would be the guys who asked a...
December 10, 2015 at 3:17 pm
Good points there. Consider asking a deep programming question that you have solved before, but doesn't happen everyday. You probably would not remember right there on the spot exactly how...
December 7, 2015 at 6:30 pm
Interviews, like tests, dont measure what you know, just what you dont know. When the criteria becomes harder, more difficult questions, the more likely you are to pass up a...
December 7, 2015 at 5:42 pm
=IIF(Fields!Category.Value = "Actual" AND Fields!Periodic.Value <5,"red","black")
Maybe with
=IIF(Fields!Category.Value < Fields!Periodic.Value ,"red","black")
?
If actual is less than budgeted I would think that is a good thing. I would highlight it...
December 3, 2015 at 6:01 pm
If you are seeing the new data source under the data sources folder, but the preview still complains of a reference to the old source, try clicking the save button....
December 3, 2015 at 5:44 pm
Get me? (11/24/2015)
December 3, 2015 at 5:24 pm
Just curious, to move on to the next step... the default behavior is for the current job step to complete reporting success. Are these steps you refer to in the...
December 3, 2015 at 4:58 pm
Viewing 15 posts - 661 through 675 (of 1,229 total)