Viewing 15 posts - 2,911 through 2,925 (of 15,381 total)
Luis Cazares (5/1/2015)
Jeff Moden (5/1/2015)
May 1, 2015 at 2:29 pm
Ed Wagner (5/1/2015)
Sean Lange (5/1/2015)
Jeff Moden (5/1/2015)
May 1, 2015 at 12:57 pm
Jeff Moden (5/1/2015)
May 1, 2015 at 12:30 pm
You should stop using the text datatype. It has been deprecated for a decade and is a serious pain to deal with. You have to cast/convert it to varchar(max) every...
May 1, 2015 at 12:22 pm
diogo_1984 (5/1/2015)
ALTER PROCEDURE
@product = ' 'ORANGE LEMON'...
May 1, 2015 at 12:15 pm
Sam Garth (5/1/2015)
CREATE TABLE #Courses (RandomID INT, PersonID INT, CourseTitle NVARCHAR(200), CourseDate DATETIME)
INSERT INTO #Courses
VALUES
(1,1,'Maths','2015-05-01 15:30'),
(2,1,'Science','2015-05-01 15:30'),
(3,1,'Science','2015-05-01 15:30'),
(4,1,'Science','2015-06-01 15:30'),
(5,1,'Maths','2015-04-01 15:30'),
(6,2,'Science','2015-05-01 15:30'),
(7,3,'Science','2015-05-01 15:30'),
(8,4,'Science','2015-05-01...
May 1, 2015 at 9:42 am
diogo_1984 (5/1/2015)
I have an application I write a textbox: 'SQL SQL' MICROSOFT 'SQL SQL'
When I click a button, I wanted to receive as...
May 1, 2015 at 9:24 am
waseemshaikh345 (5/1/2015)
May 1, 2015 at 9:21 am
Scott-144766 (4/30/2015)
It would have helped greatly if the error message had referred to the trigger which failed rather than a different stored procedure.
No kidding. This is yet another reason why...
April 30, 2015 at 8:32 am
Steve Jones - SSC Editor (4/29/2015)
Thanks for the update.I hate triggers.
I agree!!! Especially hate them when they don't have the proper datatypes and causes issues like this. They are also...
April 30, 2015 at 7:30 am
For anybody else wanting to look at this I formatted it and put it in a code window so it is legible.
CREATE PROCEDURE [Spr_Insert_CR_Property_Seizure] (@XmlDoc NTEXT)
AS
BEGIN
DECLARE @iDoc INT
DECLARE @Unit_ID INT
DECLARE...
April 30, 2015 at 7:27 am
And one last suggestion, you should NOT store calculated data like CumulativeGPA. You should instead calculate that as you need it. This is like storing Age, as soon as you...
April 29, 2015 at 9:13 am
Sean Lange (4/29/2015)
This pretty obviously homework. Did this structure come from your professor or did you design it? What is the actual assignment?
Your tables are severely lacking in normalization. You...
April 29, 2015 at 9:12 am
mm7861 (4/29/2015)
SELECT DateKey,...
April 29, 2015 at 9:03 am
mm7861 (4/29/2015)
I am using a calendar table. The code is intended for a stored procedure that will populate the calendar table.
No there are two links I posted. The first one...
April 29, 2015 at 8:10 am
Viewing 15 posts - 2,911 through 2,925 (of 15,381 total)