Forum Replies Created

Viewing 10 posts - 1 through 10 (of 10 total)

  • RE: Question of the Day for 22 Jan 2004

    Seems to work the oppositie for me

    SELECT * FROM #test1

    WHERE col1

    LIKE '%5%%'

    returns both rows.

    and

     

    SELECT * FROM #test1

    WHERE col1

    LIKE '%5[%]%'

    returns

    some 5% interest

     

  • RE: Question of the Day for 22 Jan 2004

    It seems to me that there is only one right answer and that would be

    SELECT * FROM #test1

    WHERE col1

    LIKE '%5[%]%'

    The reason is because the query should return a...

  • RE: Pet Peeves

    I was reminded last night at the Safeway grocery store about a major pet peeve of mine. Grocery store discount club cards.

    To grocery store:

    What I don't want is to give...

  • RE: SQL Server Developer Edition

    quote:


    Did you look at the License.txt file on your CD?

    Gary Johnson

    Microsoft Natural Language Group

    DBA, Sr. DB Engineer


  • RE: QOD 08/29/2003 answer is incorrect

    I chose answer 1 and was surprised to get it wrong. Surprised because I tested it first by opening 2 query analyzer windows. With window one I set Northwind to...

  • RE: Pet Peeves

    Yes indeed Trea, as crazy as it sounds it is illegal to pump your own gas in the state of Oregon. I think there is or was one other state...

  • RE: Pet Peeves

    My first pet peeve is kinda dumb but it still is really annoying to me. When someone is giving me back change from a purchase I am making, why do...

  • RE: How to Add header & trailer info into Text File

    Woops. Sorry. I forgot to add that you need to add an alias to the first select statement in order to create a column for the DTS task to use....

  • RE: How to Add header & trailer info into Text File

    quote:


    I tried that but it said there is no destination column.. When I take a look at the destination, it doesnt show...

  • RE: How to Add header & trailer info into Text File

    I had the same need as you in that I had to put some data into a text file with a two line header of information. My final step was...

Viewing 10 posts - 1 through 10 (of 10 total)