Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. j355ga

    many-to-many join

    So you are getting a product join then or is it a performance problem? You didn't explain what the problem is or what you want to accomplish. I don't know exactly what you are trying to do, but I think you might need to normalize your tables to 3rd normal form.
  2. j355ga

    many-to-many join

    There are many solutions. General solutions that come to mind: 1. Do nothing - does the NUPI cause a performance slowdown? If not then leave it. 2. Add another column to the NUPI to decrease skew. You didn't say what the other cols are but this might work if you add a NUSI on the original...
  3. j355ga

    How to install ODBC Driver 3.05.00.09?

    You can download the demo version from teradata.com. This includes the ODBC drivers.
  4. j355ga

    SQL Help!!!

    select col1, col2 from foo qualify rank() over (partition by col2 order by col1, col2) =1 order by 1
  5. j355ga

    Store Procedure Declaration

    I am not sure why you want this SP, but anyways the WHILE needs a DO as well as an END WHILE. As in WHILE x > 0 DO something END WHILE;

Part and Inventory Search

Back
Top