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
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.