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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by rochana

  1. rochana

    Alternative to SQL UNION

    Hi You can also create a temporary table with the same query you have and manipulate it as you wish. SELECT a, b, c into NEW_TEMP_TABLE from ( SELECT a, b, c FROM tbl_A, tbl_B WHERE (some conditions) UNION SELECT a, d AS b, e AS c FROM tbl_C WHERE (some conditions) ) s1 rochana
  2. rochana

    How to crack the error code

    Hi Everyone! In my stored procedure I check for any errors during . If there are any errors I log them. (by checking @@ERROR) What my problem is, the error message that's been logged contain place holders like %s, %l, %d,etc. along with the error message. How can I get the full error message...

Part and Inventory Search

Back
Top