When using ROLAP + Real time the AS is sending an SQL statement to the SQL
server wich is looking like:
DECLARE @OlapEvent BIGINT;
SELECT @OlapEvent = ObjIdUpdate(11);
SELECT (@OlapEvent & convert(bigint, 0xffff000000000000)) /
0x0001000000000000 AS Status,
(@OlapEvent & convert(bigint, 0x0000ffff00000000)) / 0x0000000100000000 AS
DbId,
@OlapEvent & convert(bigint, 0xffffffff) AS ObjId;
Does anyone know what is ObjIdUpdate(..) and what is doing? I could not find
any information about it?.
Does anywone know how SQL server is notifying the AS about the changes in
one table (msdtc)?
Can this mechanism be used in other purposes?
Is it a sync or async notification?
Where can I find more info about it ?
Thanks,
radix