Viewing 15 posts - 3,721 through 3,735 (of 6,036 total)
> I should tell you that I don't use the square brackets on everything... my "personal preference" is to avoid names with special characters simply because I hate typing the...
July 26, 2007 at 10:48 pm
Search this forum for "split function".
Pick one you like the most and convert your @IDPARAM to temp table.
Then you can get rid of dynamic SQL:
UPDATE D
SET
RETURNED = 1,
RETURNED_DATE = GETDATE(),
RETURNED_BY...
July 26, 2007 at 7:51 pm
It's better to do it in function.
Search this forum for "concatenate" and choose one of functions posted here.
July 26, 2007 at 7:44 pm
> Some other folks mentioned language, which I agree is something very important.
I don't see any language related problems here.
So, let's cut the crap.
> Oh, well.. To be...
July 26, 2007 at 5:24 pm
Did you try to compare it to performance of a query on properly designed tables?
July 26, 2007 at 4:23 pm
Wrong use of quotes.
Here's what you need to fix:
... left(c.coursenumber,3)+'.'+right(c.coursenumber,3)+' '+replace(c.coursetitle, ' '' ', ' '''' ') as CourseTitle, ...
And
TRUNCATE TABLE tmpCourseNumbers
is much more effective than
delete from tmpCourseNumbers
July 26, 2007 at 4:17 pm
1. It's you who initiated this fall. Noone was trying turn to personal points before you.
2. Your scenario is rubbish.
If name can be created it can be used -...
July 26, 2007 at 2:20 pm
Probably space in studentmaster .orderset_sys
July 25, 2007 at 8:48 pm
Sorry, I missed that link to SP text on 1st page.
There are too many flaws in that procedure.
For example, if table contains columns "Country" and "CountryCode" and "Country" is not...
July 25, 2007 at 7:19 pm
... THEN ISNULL(St.StateDescription, up.propertyValue) END ...
July 25, 2007 at 5:54 pm
... created by a trigger on that table.
You need only to have column with unique index on it for function names.
This will allow you to see if your internal formula...
July 25, 2007 at 4:29 pm
> kind of degeneration these discussions can fall into.
So, please don't initiate that fall.
> Did I use a space? a space plus back-space plus space?
I hope you can explain how...
July 25, 2007 at 4:06 pm
I believe you did not even try my suggestion.
You cannot achieve anything while you stick with loops.
July 25, 2007 at 2:15 pm
> Best practice #1:
> Always use objectnames that *don't* have to use square brackets in order to not crash your code []
You cannot always follow this rule.
As you said: it...
July 25, 2007 at 6:04 am
I hope you can point to a document which tells exactly what we're suppose to do and what we're not suppose to do with names of identifiers.
July 24, 2007 at 7:35 pm
Viewing 15 posts - 3,721 through 3,735 (of 6,036 total)