Feeds:
Posts
Comments

Archive for February, 2008

SQL – Sum a Union

to get a total value from both query, the only way to do is UNION both query and a Select Statement on top of UNION.
SELECT Sum(Col1) as A, Sum(Col2) as B
FROM ( SELECT Col1, Col2 FROM TableA
UNION Select Col1, Col2 From TableB ) A

Read Full Post »

For those who wish to know more the step to configure SSO in DNN portal, please click here to download the documentation. It covered how to configure in IIS for Intranet environment.

Read Full Post »