Viewing 15 posts - 4,651 through 4,665 (of 5,103 total)
... coloured pictures and charts that management wants to see ...
I get that A LOT is the part of my job I don't really like but they sign my...
February 26, 2004 at 4:03 pm
I looks like your problems far outperform my guesses
February 26, 2004 at 3:59 pm
yep , I will go the sp route and maybe computed columns if at all possible!
February 26, 2004 at 3:55 pm
if there are no locks for a process id then that row won't be present in the result set!
February 26, 2004 at 3:19 pm
WOW, That's why validation and QA are NEEDED
February 26, 2004 at 3:10 pm
you may do something from a trigger at the table level Like:
DBCC INPUTBUFFER(@@SPID) to determine what was run but only the first 255 char will be returned
is that what you...
February 26, 2004 at 3:09 pm
Yep, Like every great thing, is based on the hard effort of a lot of people
February 26, 2004 at 3:01 pm
Alter Table rr
ADD CONSTRAINT DF_rr_s DEFAULT 'N' FOR s
February 26, 2004 at 2:53 pm
This type of scenario is also very used in Datawarehousing, so keep that in mind
February 26, 2004 at 2:47 pm
If you run profiler you can corroborate that
February 26, 2004 at 2:35 pm
Frank's link is one of the most complete descriptions I have seen for this kind of opperations
February 26, 2004 at 2:32 pm
Is this what you are after?
DELETE FROM tblMMStudentTestScores
FROM #MMTestsToDelete DL
Where (tblMMStudentTestScores.TestShortName = 'HMRM' OR
tblMMStudentTestScores.TestShortName = 'HMLM')
AND
(tblMMStudentTestScores.Permnum = DL.MTPermnum AND
tblMMStudentTestScores.TestShortName = DL.MTTestShortName)
February 26, 2004 at 2:25 pm
If you need ALL the Fields then here it goes :
SELECT T.*
FROM
#TempResults T
Join
( Select DISTINCT Q.FileId, Q.Filename
From #TempResults) Q
On Q.FileId =T.FileId and Q.Filename...
February 26, 2004 at 2:13 pm
if all you want is FileID and File name as the output then
Select DISTINCT Q.FileId, Q.Filename
From
( Your Query) Q
order by Q.FileID, Q.FileName
February 26, 2004 at 1:48 pm
SWEET !!!
February 26, 2004 at 1:37 pm
Viewing 15 posts - 4,651 through 4,665 (of 5,103 total)