Viewing 15 posts - 661 through 675 (of 1,233 total)
As the name implies, staging is just that. The data is not meant to be a permanent fixture, otherwise call it a operation data store. If the goal is auditing...
December 30, 2015 at 2:12 pm
SQL-DBA-01 (12/30/2015)
Soemthing is wrong here in the question. I guess the choice should be "only 1".orderstatus can not be changed to "OrdeNotes" as summarynote is dependent on OrderNotes!!
+1
I avoided...
December 30, 2015 at 1:49 pm
This looks like more of a math problem. You need to be able to define the function that represents the curve of travel. I am sure once you have that...
December 18, 2015 at 10:56 am
Michael L John (12/17/2015)
GilaMonster (12/17/2015)
MMartin1 (12/17/2015)
Does the SELECT 1 provide a big performance gain or just prevents a call to the disk that may get delayed?
Neither. It's there to...
December 17, 2015 at 4:51 pm
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
Viewing 15 posts - 661 through 675 (of 1,233 total)