Viewing 15 posts - 1,741 through 1,755 (of 15,381 total)
MyDoggieJessie (2/25/2016)
You'll immediately see the problem query in the original execution plan doing the 1.14 billion rows between the Table Spool and the Nested Loop
Think you forgot to attach the...
February 25, 2016 at 12:54 pm
TSQL Tryer (2/25/2016)
/****** Object: Table [dbo].[test] Script Date: 25/02/2016 16:01:36 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[test](
[CalendarPeriodId] [int] NOT NULL,
[CalendarId] [int]...
February 25, 2016 at 9:06 am
Vallu (2/25/2016)
February 25, 2016 at 9:03 am
This would be a lot better if your sample data was readily consumable (insert statement). Also, the actual execution plan as a file instead of a screen shot would be...
February 25, 2016 at 8:57 am
Please don't cross post. http://www.sqlservercentral.com/Forums/Topic1764179-147-1.aspx
February 25, 2016 at 7:19 am
Please don't cross post. http://www.sqlservercentral.com/Forums/Topic1764179-147-1.aspx
February 25, 2016 at 7:19 am
Sergiy (2/24/2016)
patrickmcginnis59 10839 (2/24/2016)I got 2 rows if I set xact_abort on, maybe that's his default?
Yep, spot on.
Isn't it anyone's default?
Same as ANSI_NULLS?
I don't change either of those typically. Of...
February 24, 2016 at 3:15 pm
hlsc1983 (2/24/2016)
February 24, 2016 at 12:26 pm
hlsc1983 (2/24/2016)
The reason why i am using exam_year is because the marksheet that the system must finally print reads something like this:...
February 24, 2016 at 12:07 pm
hlsc1983 (2/24/2016)
k regarding foreign keys, i have understood it this way. correct my mistakes.Subjects table, Students table and Gradetype table will have one to many relationship with Marks table.
Sort of....
February 24, 2016 at 10:58 am
hlsc1983 (2/24/2016)
February 24, 2016 at 10:29 am
hlsc1983 (2/24/2016)
regarding...
February 24, 2016 at 9:18 am
hlsc1983 (2/24/2016)
Even means even semester- II, IV and VI semesters.
Regular papers means student appears it for the first time.
Compartmental means the student has...
February 24, 2016 at 8:58 am
jakebeliveau (2/24/2016)
tindog (2/24/2016)
SELECT NT_ID,
100 * Frequency / (SUM(Frequency) OVER ()) PercentageOfTotal
FROM ........
ETA:...
February 24, 2016 at 8:39 am
hlsc1983 (2/24/2016)
Master_marks table with the following columns:
student_id int,
subject_id int,
marks int,
odd_even bit,
reg_comp bit,
exam_year int, '( year is associated with the year of examination and not student)'
gradeID int,
and...
February 24, 2016 at 8:27 am
Viewing 15 posts - 1,741 through 1,755 (of 15,381 total)