06. marts 2013 - 09:21Der er
4 kommentarer og 1 løsning
Merge
Hej
Jeg får fejlen "an expression of non boolean type specified in a context where a condition is expected"
BEGIN TRAN; MERGE UNIT_SW_TABLE AS T USING UNIT_TABLE AS S ON (T.UNIT_SW_TABLE_UNIT_TABLE_ID_SET = S.UNIT_TABLE_ID) WHEN MATCHED THEN --UPADTE WHEN NOT MATCHED THEN -- Insert statements for procedure here INSERT INTO UNIT_SW_TABLE(unit_sw_table_unit_table_id_set, unit_sw_table_os_table_id_set, unit_sw_table_browser_table_id_set, unit_sw_table_mail_table_id_set, unit_sw_table_antivirus_table_id_set) VALUES (@para_unit_id,@para_os_id,@para_browser_id,@para_mail_id,@para_antivirus_id); ROLLBACK TRAN;
I dette særtema ser vi på, hvordan cloud og AI bliver fundamentet for virksomhedernes digitale forretning, og hvordan de nye muligheder for automatisering og forretningsværdi kan udnyttes uden at miste overblik, sikkerhed og menneskelig kontrol.
BEGIN TRAN; MERGE UNIT_SW_TABLE AS T USING UNIT_TABLE AS S ON (T.UNIT_SW_TABLE_UNIT_TABLE_ID_SET = S.UNIT_TABLE_ID) WHEN MATCHED THEN UPDATE SET unit_sw_table_OS_tABLE_id_set = @para_os_id, unit_sw_table_browser_table_id_set = @para_browser_id, unit_sw_table_mail_table_id_set = @para_mail_id, unit_sw_table_antivirus_table_id_set = @para_antivirus_id WHEN NOT MATCHED THEN -- Insert statements for procedure here INSERT (unit_sw_table_unit_table_id_set, unit_sw_table_os_table_id_set, unit_sw_table_browser_table_id_set, unit_sw_table_mail_table_id_set, unit_sw_table_antivirus_table_id_set) VALUES (@para_unit_id,@para_os_id,@para_browser_id,@para_mail_id,@para_antivirus_id); ROLLBACK TRAN;
Tilladte BB-code-tags: [b]fed[/b] [i]kursiv[/i] [u]understreget[/u] Web- og emailadresser omdannes automatisk til links. Der sættes "nofollow" på alle links.