Comments
Sort by recent activity
Hi,
Thank you for reply.
I was thinking to use your approach. However, some of my tables required DML trigger to update another table such as update stock.
Or, create another project for them as workaround? Any other ways?
Thank you / comments
Hi,
Thank you for reply.
I was thinking to use your approach. However, some of my tables required DML trigger to update another table such as update stock.
Or, create another project for them as wo...
Hi,
I have tried to use dependencies tracker to my database. How could I know what cause my table "circular reference"? It shows my table used by another trigger/view/table. Thats it. But it doesn't show how which table cause the circular ref.
Please advice.
Thank you / comments
Hi,
I have tried to use dependencies tracker to my database. How could I know what cause my table "circular reference"? It shows my table used by another trigger/view/table. Thats it. But it doesn'...
You could use a WHERE clause to reference the other table e.g.
Code:
WHERE LineItem.salesID in (select salesID from Sales where TerminalID = 45)
Hi,
Thank you for reply. As the value of 45 in the sql statement above might vary. Anyway I could replace it with "parameter" so that I could assign value to it during runtime?
WHERE LineItem.salesID in (select salesID from Sales where TerminalID = @lnTerminalID)
Thank you / comments
You could use a WHERE clause to reference the other table e.g.
Code:
WHERE LineItem.salesID in (select salesID from Sales where TerminalID = 45)
Hi,
Thank you for reply. As the value of 45 in ...