Viewing 15 posts - 631 through 645 (of 1,086 total)
Very nice! Thank you. As I said, my "limited" understanding of recursive design and configuration. This will be very useful to read and learn.
August 24, 2005 at 1:26 pm
Very impressive! This will take me a bit to figure out...
The LEFT OUTER JOIN is throwing me....
August 24, 2005 at 10:39 am
What do you get? I ran this and it looked like what you wanted... (Note: message 3 should display before message 2 - I did that on purpose to make...
August 24, 2005 at 9:58 am
Try adding the following to my original query:
INSERT INTO #Messages( PK, ConnectorKey, Message, MessageDate)
VALUES( 5, 4, 'Third Message 2nd Addendum', '8/22/2005 4:54:52 PM')
I think you will find...
August 24, 2005 at 9:49 am
I think you may have not understood my ConnectorKey field. That is what makes this recursive. Plus, I put message 3 in before message two to show that mine should...
August 24, 2005 at 9:43 am
Are you trying to join two tables which do not actually have foreign keys by joining them based upon the timestamp being within, (not sure about this) one hour?
In...
August 24, 2005 at 9:06 am
Can't you make a new Identity Column. SET IDENTITY_INSERT tablename OFF. Then insert the existing data and SET IDENTITY_INSERT tablename ON? (This is...
August 23, 2005 at 8:25 pm
I am sorry - I have not been following this as I should have.
Salvatore, could you post what sushila asked. That would probably give us the best approach at...
August 23, 2005 at 11:06 am
Here's another possible approach. It is very similar to Adrienne's.
CREATE TABLE #Messages( PK integer,
ConnectorKey integer,
Message varchar(50),
MessageDate datetime)
INSERT INTO #Messages( PK, ConnectorKey, Message,...
August 22, 2005 at 5:43 pm
That's a worthwhile trade off. Thanks.
August 22, 2005 at 2:51 pm
Funny. You handed me one of your most common one's just hours ago...
August 22, 2005 at 2:49 pm
Thanks. I knew I should have taken the time to include the other processes.
There are a lot of business rules and I cannot really go into them all; in...
August 22, 2005 at 2:45 pm
I worked for a financial agency, (you would know the name) and we were getting lots of data in from many sources. Every time, I would be told this was...
August 22, 2005 at 2:20 pm
Viewing 15 posts - 631 through 645 (of 1,086 total)