Activity overview
Latest activity by davehorton
I needed this too, and did it by using the generic SQL Statement generator. That has the disadvantage of needing an explicit connection, I do not know why it does not default to "current DB" but there it is... For example, I use this query: SELECT ID FROM DBO.FK_TABLE WHERE ACTIVATE = TRUE The problem I ran into was having to manually hack the config file when I wanted to populate different DB on a different server... but hopefully this does what you need... Good Luck! / comments
I needed this too, and did it by using the generic SQL Statement generator. That has the disadvantage of needing an explicit connection, I do not know why it does not default to "current DB" but th...