Forum Replies Created

Viewing 15 posts - 631 through 645 (of 1,086 total)

  • RE: threaded forum style ''''order by''''

    Very nice!  Thank you.  As I said, my "limited" understanding of recursive design and configuration.  This will be very useful to read and learn. 

    I wasn't born stupid - I had to study.

  • RE: select / join query?

    Very impressive!  This will take me a bit to figure out...   

    The LEFT OUTER JOIN is throwing me....

    I wasn't born stupid - I had to study.

  • RE: threaded forum style ''''order by''''

    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...

    I wasn't born stupid - I had to study.

  • RE: threaded forum style ''''order by''''

    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...

    I wasn't born stupid - I had to study.

  • RE: threaded forum style ''''order by''''

    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...

    I wasn't born stupid - I had to study.

  • RE: select / join query?

    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...

    I wasn't born stupid - I had to study.

  • RE: How to make a column an IDENTITY using ALTER COLUMN?

    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...

    I wasn't born stupid - I had to study.

  • RE: How to JOIN 3 views Into 1 View???

    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...

    I wasn't born stupid - I had to study.

  • RE: Remi, Noel, sushila, Frank, etc....

    LOL.  Excellent response.   

    I wasn't born stupid - I had to study.

  • RE: threaded forum style ''''order by''''

    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,...

    I wasn't born stupid - I had to study.

  • RE: Remi, Noel, sushila, Frank, etc....

    Sorry its not more exciting... 

    I wasn't born stupid - I had to study.

  • RE: Remi, Noel, sushila, Frank, etc....

    That's a worthwhile trade off.  Thanks. 

    I wasn't born stupid - I had to study.

  • RE: Splitting and aggregating a field with commas

    Funny.    You handed me one of your most common one's just hours ago... 

    I wasn't born stupid - I had to study.

  • RE: Remi, Noel, sushila, Frank, etc....

    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...

    I wasn't born stupid - I had to study.

  • RE: Splitting and aggregating a field with commas

    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...

    I wasn't born stupid - I had to study.

Viewing 15 posts - 631 through 645 (of 1,086 total)