Viewing 15 posts - 13,261 through 13,275 (of 13,841 total)
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
Perhaps you could add an extra field to the table you are inserting into - call it BatchID or something similar - then you just need to work out how...
October 6, 2005 at 7:18 am
Have you tried running in debug to try and isolate exactly when the error appears?
October 6, 2005 at 7:12 am
As you can see from Chris' example, the subquery cannot execute without the parent query - this is what 'corelated' refers to.
An independent subquery can run in isolation, eg
select *...
October 6, 2005 at 3:20 am
How are you loading the data at the moment?
1.5GB every two hours is lots less than 150GB a day - I don't understand!
Does the data need to be available to...
October 4, 2005 at 8:30 am
Please do not submit the same post in multiple forums - follow this link to see my suggested approach, which expands a little on Andy's.
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=9&messageid=225706
October 4, 2005 at 3:16 am
Viewing 15 posts - 13,261 through 13,275 (of 13,841 total)