I want to save a screen capture as a pdf file. I want the
user to select Save As and then the program would capture
the current screen and paste it into a pdf file. I'm trying
to use the print function but it needs a dw to print. I
don't want to print a dw I want the screen - I've already...
update job_function
set user_initials =
(Select user_profile.user_initials from user_profile where inserted.user_id = user_profile.user_id)
where job_function.user_id = inserted.user_id
and job_function.function_code = inserted.function_code
The column prefix 'inserted' does not match with a...
I'm trying to create an after insert trigger.
....
AFTER INSERT AS
BEGIN
update job_function
set job_function.user_initials =
(Select up.user_initials from user_profile upwhere inserted.user_id = up.user_id)
However, it is updating all of the rows - I only want it to update the row I am...
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.