Forum Replies Created

Viewing 15 posts - 316 through 330 (of 1,086 total)

  • RE: Exec problem

    Rather than EXEC(@sql), could you PRINT @sql and show us the results? 

    Thanks

     

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

  • RE: Exec problem

    What is the error that is generated? 

    (Also, why are you doing this?) 

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

  • RE: Database design

    I am with RGR'us on this!  You will end up jumping through hoops not only to populate a single table, but retrieving the data will become a nightmare - not...

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

  • RE: Basic question about links to Access database

    Nope - not a bit.  It was a poor assumption on my part that this application had an Access front end.   

    If you...

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

  • RE: Old style Join conversion

    Last query defnetely cannot return expected result.

    It does return the expected results...

     

    Agreed about the table scan and use of index or statistics - yours is a better query. ...

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

  • RE: Basic question about links to Access database

    Try this: go to the query that is failing.  Look at it in Design View.  You will see in the upper left hand corner, (I am doing this from memory,...

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

  • RE: Old style Join conversion

    I do not think that returns the requested results...

     

    DECLARE @Table1 TABLE( id1 integer,

                                          data1 integer)

    DECLARE @Table2 TABLE( id2 integer,

                                          data2 integer)

    INSERT INTO @Table1...

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

  • RE: Old style Join conversion

    Glad to help!    [I just updated the post by thinking about why the results returned as they did - I wrote a...

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

  • RE: Old style Join conversion

    The more I think about this, the more it makes sense.  Microsoft states that old join style using *= will return "ambiguous" results.  This is a proof case! 

    You have an additional...

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

  • RE: return all records using CONTAINS

    I have tried two possible solutions, as I am not sure if you are always using lastname in your query... (I couldn't really test this, since our database is not...

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

  • RE: Some of your dopiest (sp) Newbie goof ups

    I cut my teeth learning programming during a C class.  The teacher was incredible in showing fundamentals! He ended up being able to teach 3 semesters... it was the best! ...

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

  • RE: column value to be splitted and stored in various varaibles

    LOL..., good one! 

     

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

  • RE: column value to be splitted and stored in various varaibles

    "You keep thinkin' Sundance..., that's what you do best."   

     

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

  • RE: column value to be splitted and stored in various varaibles

    yeah - I had this one laying around and answered too quickly...  

     

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

  • RE: column value to be splitted and stored in various varaibles

    This will pump each value into a #TempTable.  You can alter this to pass each variable back after it is seperated or you could create your own #TempTable in your...

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

Viewing 15 posts - 316 through 330 (of 1,086 total)