I am trying to use a cursor in a trigger on a sybase ASE 15.0.3 system running on Solaris. The purpose for this is that I want to know which column of a table is getting updated. This information I then save in an admin table for further lookups.

create trigger test_trigger on my_table for update as

set nocount on

/* declare cursor */
declare @colname varchar(64)

declare column_name cursor for 
    select syscolumns.name from syscolumns join sysobjects on (sysobjects.id = syscolumns.id) where sysobjects.name = 'my_table'

/* open the cursor */
open column_name

/* fetch the first row */
fetch column_name into @colname

/* now loop, processing all the rows
** @@sqlstatus = 0 means successful fetch
** @@sqlstatus = 1 means error on previous fetch
** @@sqlstatus = 2 means end of result set reached
*/
while (@@sqlstatus != 2)
begin    
    /* check for errors */
    if (@@sqlstatus = 1)
    begin
        print "Error in column_names cursor"
        return
    end

    /* now do the insert if colum was updaed  */
    if update(@colname)
    begin
        insert into my_save_table (login,tablename,field,action,pstamp) 
            select suser_name(),'my_table',@colname,'U',getdate() from inserted
    end

    /* fetch the next row */
    fetch column_name into @colname
end

/* close the cursor and return */
close column_name   
go

Unfortunately when trying to run this in isql I get the following error:

 Msg 102, Level 15, State 1:
 Server 'my_sybase_server', Procedure 'test_trigger', Line 34:
 Incorrect syntax near '@colname'.

I did some investigations and found out that line 34 means the following statement:

if update(@colname)

then I tried to just check on 1 column and replaced it by

if update(some_column_name)

That actually worked fine and I don't have any other idea how to fix that. It looks like the update() function somehow not allows to contain a variable. I did not find any additional information on the sybase books or anywhere else in google ect. Does anybody may find a solution for this? Is it may a bug? Are there workarounds for the cursor?

Thanks for any advice

link|improve this question
when you use if update(some_columns_name) the some_columns_name part is between quotes? – aF. Feb 17 at 13:02
No, as per sybase examples i found on the sybase website no quotes are needed. I figured out that it is not possible to use any variables in that update() function. Unfortunately it is also not possible to use dynamic sql because this update needs to run in a trigger and as i use exec() it is no longer in the trigger itself...any other ideas?! – dom Feb 17 at 13:53
Yes, the problem might be there. Are you familiar with dynamic sql? – aF. Feb 17 at 14:54
Yes i am. I tried it and it did not work :-( – dom Feb 17 at 14:57
feedback

1 Answer

The problem is that update(@colname) is something like update('colname') and needs to be update(colname). In order to you achieve that, you need to use Dynamic SQL.

I've already saw the documentation and it's possible to use:

Dynamically executing Transact-SQL

When used with the string or char_variable options, execute concatenates the supplied strings and variables to execute the resulting Transact-SQL command. This form of the execute command may be used in SQL batches, procedures, and triggers.


Check this article for an example on how to use dynamic sql!

link|improve this answer
This is true but the problem is somewhere else: to run dynamic sql you need a exec() functionto execute the command. But this is in sub process somehow and therefore no longer in the trigger itself. then the problem is that this update() function is no long in the trigger and sybase ase gives me an alert... – dom Feb 17 at 14:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.