Viewing 7 posts - 76 through 82 (of 82 total)
As was the case with me, I expect that many programmers not initially familiar with T-SQL, who start working on the platform will get exposed and then begin to harness...
September 15, 2008 at 8:24 am
Have we been prepared to handle change?
The formula in college is first a program of general classes and then later more specialty classes. The Microsoft certification I'm working on seems...
July 31, 2008 at 12:52 pm
Technical personnel are not always invited to help solve a mission-critical business problem during the initial brainstorming stage. They're often involved later when they can be assigned specific tasks and...
July 31, 2008 at 7:47 am
Regarding number of round trips... In my implementation of spell suggestion, I use a single stored procedure call which uses a single T-SQL statement using a set-based approach even though...
July 21, 2008 at 4:32 pm
I actually verified that there were duplicates. The row count was unexpected. So I followd up with a query checking for duplicates - you know - with a GROUP BY...
June 27, 2008 at 6:03 am
No triggers on table B.
June 27, 2008 at 6:01 am
Trigger Code (object names changed for anonymity):
CREATE TRIGGER u_PartInformation ON PartInformation FOR UPDATE
AS
-- Propagate updates to description fields.
IF UPDATE(part_num) OR UPDATE(headline_id) OR UPDATE(epd) OR UPDATE(catalog) OR...
June 26, 2008 at 8:43 am
Viewing 7 posts - 76 through 82 (of 82 total)