Forum Replies Created

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

  • RE: Script all data of a table

    When I used it, there was an Error if the @column_names = 0. The word VALUES would concatenate at the end of the table name without a space(i.e. INSERT...

  • RE: Query Where the "WHERE" clause is in multiple rows

    Chris

    Thanks for the idea. I see where you are going. The data structure that I have is a little different than what you have but it is similar...

  • RE: Query Where the "WHERE" clause is in multiple rows

    --Here is some test data to help explain what I'm trying to do.

    --create some sample data

    CREATE TABLE #route (routeId int, priority int, destination int)

    CREATE TABLE #routeData(routeDataId int, routeId int, itemname...

  • RE: Update Source Table

    I guess that I wasn't very clear in my description of the problem but you figured it out! 🙂

    I guess my main question is:

    Is it possible to update the source...

  • RE: Binary data in database

    This has turned into a very interesting discussion. One project that I did controlled the physical files via NT security and managed the links in the DB. The interesting...

  • RE: MULTIPLE ORDER BY in a stored procedure.

    Robert, thanks for the idea. I played with it and it works, I just don't understand how! Looking at the results, you would think that if the CASE...

  • RE: MULTIPLE ORDER BY in a stored procedure.

    Thank you for your suggestions. I will use the CASE in the order by and then I will have two options - one for ASC and one for DESC.

    Thank you...

  • RE: ADO/T-SQL - Using the IN operator in a DELETE

    Thank you. That is what I was missing. I kept fooling with the list I was sending as @ClientList to see how I could get it converted correctly. Since this...

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