Viewing 15 posts - 1,771 through 1,785 (of 15,381 total)
hlsc1983 (2/23/2016)
subject_id(pk) int ,
subject_name varchar(),
subjectTHET bit,
subjectTHPA bit,
subjectPRET bit,
subjectPRPA bit,
Each subject may have four types of grades associated with it.(subjectTHET, subjectTHPA, practicalET, practicalPA)
the four...
February 23, 2016 at 8:04 am
Ed Wagner (2/23/2016)
Sean Lange (2/23/2016)
I am shocked at how many people (9% at time of this post) said there would be 4 rows. :w00t:Excellent question Steve.
That is interesting, isn't it?...
February 23, 2016 at 7:40 am
I am shocked at how many people (9% at time of this post) said there would be 4 rows. :w00t:
Excellent question Steve.
February 23, 2016 at 7:15 am
Is this procedure using transactions? They can seriously bloat your logs if they are large. Kind of grasping for straws here. Are you able to get an actual execution plan...
February 22, 2016 at 3:22 pm
marin-231997 (2/22/2016)
many thanks for the quick reply.
It is a 3rd party software (interface engine) that processes the CSV file and sets the value in the placeholders before running...
February 22, 2016 at 9:31 am
giszzmo (2/22/2016)
This doesn't work. I only need the year part and it's not a char.
Can you explain "doesn't work"? What doesn't work? The code posted by LinksUp looks like...
February 22, 2016 at 9:22 am
marin-231997 (2/22/2016)
I have encountered following problem lately:
when an insertion script is done via
INSERT INTO myTable (col1,col2,col3) VALUES ('TEST1','TEST2',NULL)
the value NULL will be somehow automatically embedded in square...
February 22, 2016 at 9:19 am
Luis Cazares (2/22/2016)
Sean Lange (2/22/2016)
TSQL Tryer (2/22/2016)
ALTER PROCEDURE [dbo].[usp_test_Arrears_BrokenArrangement]@PolicyId INT, @AccountId INT, @PolicyNodeId INT, @output BIT OUT
AS
BEGIN
SET NOCOUNT ON;
SET @AccountId = 1
DECLARE @CurrentArrangement as bit
DECLARE @LastSystemActionId...
February 22, 2016 at 9:13 am
BL0B_EATER (2/22/2016)
Sean Lange (2/22/2016)
BL0B_EATER (2/22/2016)
Anyone here have / had some experience with the Surface Pro 4? If so what are your thoughts on it?
My wife has one as her work...
February 22, 2016 at 8:59 am
I do think your logic could be greatly simplified into a single select statement instead of all these variables though. A simple case expression could make this a lot simpler.
February 22, 2016 at 8:20 am
TSQL Tryer (2/22/2016)
ALTER PROCEDURE [dbo].[usp_test_Arrears_BrokenArrangement]@PolicyId INT, @AccountId INT, @PolicyNodeId INT, @output BIT OUT
AS
BEGIN
SET NOCOUNT ON;
SET @AccountId = 1
DECLARE @CurrentArrangement as bit
DECLARE @LastSystemActionId as int
DECLARE @ActionDate as...
February 22, 2016 at 8:18 am
TSQL Tryer (2/22/2016)
Yes I did try but kept getting errors as I'm obviously using the SET in the wrong place.
Perhaps if you share what you tried or even the error...
February 22, 2016 at 8:06 am
Of course you can. Did you try it?
February 22, 2016 at 7:48 am
Ed Wagner (2/22/2016)
Sean Lange (2/22/2016)
BL0B_EATER (2/22/2016)
Anyone here have / had some experience with the Surface Pro 4? If so what are your thoughts on it?
My wife has one as her...
February 22, 2016 at 7:43 am
BL0B_EATER (2/22/2016)
Anyone here have / had some experience with the Surface Pro 4? If so what are your thoughts on it?
My wife has one as her work laptop now. She...
February 22, 2016 at 7:30 am
Viewing 15 posts - 1,771 through 1,785 (of 15,381 total)