I have a Dynamic Properties Task in a SQL Server 2000 DTS package (someone else designed it, now I'm upgrading it to SSIS). It has a list of global variables and when I double click the Value on one, it comes up with a new popup window I've never seen before, "Add/Edit Assignment". This ADA window has Source, Connection and Query. In query, it has the weirdest thing...
Does anyone know what's going on with the ~ thing? I've never seen this before in T-SQL.
Thanks,
Catadmin - MCDBA, MCSA
"No, no. Yes. No, I tried that. Yes, both ways. No, I don't know. No again. Are there any more questions?"
-- Xena, "Been There, Done That"
Code:
SELECT SUM(~A.CancelFlag * A.Premium) AS 'Premium'
FROM Table1 A
INNER JOIN Table2 B
ON A.VPID = B.VPID
Does anyone know what's going on with the ~ thing? I've never seen this before in T-SQL.
Thanks,
Catadmin - MCDBA, MCSA
"No, no. Yes. No, I tried that. Yes, both ways. No, I don't know. No again. Are there any more questions?"
-- Xena, "Been There, Done That"