问题描述
我们无法在天蓝色日期仓库中创建触发器,请找到代码。下面的错误消息。
We are unable create trigger in azure date warehouse please find the code. below error message .
我们尝试了在Microsoft文档中提到的样本触发器,它也无效。
we tried sample trigger which mentioned in Microsoft docs that is also not working.
CREATE TRIGGER dbo.testtable
ON 插入后删除,删除,更新后的dbo.testtable
更新测试表设置[datetime] = getdate();
结束
消息103010,级别16,状态1,行211
行中的解析错误:2,列:1 :'CREATE'附近的语法不正确。
从micrsoft docs中获取的示例代码抛出上述相同的错误。请提供在数据仓库中创建触发器的确切语法。
Sample code taken from micrsoft docs throwing same error mentioned above. Please provide the exact syntax for creating trigger in data ware house.
创建TRIGGER提醒1
ON stud_marks 在插入,更新后,
AS RAISERROR('通知客户关系',16,10);
GO
推荐答案
这篇关于无法在Azure Data wareHouse中创建触发器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!