Viewing 15 posts - 13,291 through 13,305 (of 13,876 total)
The first UNION that you did filtered out the second row because it was identical to the first. Your second UNION has rows which are not identical - so they...
October 12, 2005 at 9:39 am
Me neither - can't you just give them a longer description? This is building complexity that seems over the top. Are your users particularly (hmmm, what's a nice way of...
October 12, 2005 at 7:34 am
I don't think it's as simple as just clicking a 'process all files in folder' check box - unfortunately.
Here's an article that might be of use to you though -...
October 12, 2005 at 2:26 am
OK - I think I was on the right track except for the JOIN:
CREATE PROCEDURE sproc_getTestRequest
AS SELECT tr.[TestRequestNo],
tr.[TestFolderNo],
tr.[TestRequestObjective],
tr.[TestRequestDescription],
tr.[RequestType],
tr.[TestRequestSentDate],
tr.[TestRequestReceivedDate],
tr.[ExpectedPartsReceivedDate],
tr.[RequestedStartDate],
tr.[RequestedCompletionDate], p.*
FROM TestRequest tr...
October 10, 2005 at 12:00 pm
IsNumeric is available in SQL Server:
select IsNumeric('Hello'), IsNumeric(42)
October 10, 2005 at 9:12 am
It sounds to me like you need something like this:
SELECT tr.[TestRequestNo],
tr.[TestFolderNo],
tr.[TestRequestObjective],
tr.[TestRequestDescription],
tr.[RequestType],
tr.[TestRequestSentDate],
tr.[TestRequestReceivedDate],
tr.[ExpectedPartsReceivedDate],
tr.[RequestedStartDate],
tr.[RequestedCompletionDate], p.*
FROM TestRequest tr left join Project P on tr.TestRequestNo =...
October 10, 2005 at 9:04 am
No problem - though this is a SQL Server place really.
I have a friend who is a Notes developer - I'll ask him & see whether he's got any ideas.
Phil
October 10, 2005 at 8:35 am
Hmmmm - if this is about SQL Server administration, I'm a chicken tikka massala.
But I've done some Notes in the past. When you open the Notes connection, are you connecting...
October 8, 2005 at 6:00 am
15 seconds - on Big Blue maybe, but not on my laptop, where it ran like an arthritic dog! Got bored and killed it before it finished!! Thanks Jeff!
October 7, 2005 at 3:19 pm
Try running
exec sp_who2
from Query Analyser and see whether the information displayed there identifies your users.
So you do not want to track the fact that a record (or records) have been...
October 7, 2005 at 2:48 pm
The question does not state whether or not the GUID is a clustered PK - I therefore assumed it was not.
October 7, 2005 at 2:38 pm
Triggers sound like the way to go - I'm assuming that you're thinking of creating two or three tables along the lines of:
AuditInsertDelete(AuditInsertID, Date, Action, Table, user, field1, field2, etc)
AuditUpdate(AudotUpdateID, date, table,...
October 7, 2005 at 2:33 pm
Good. You two have already had the discussion that I was about to get into!
October 7, 2005 at 2:19 pm
Why did you need to use a cursor? Perhaps we can find a (fast) set-based approach if you provide more info.
October 6, 2005 at 7:38 am
Viewing 15 posts - 13,291 through 13,305 (of 13,876 total)