I am trying to create a reporting server. I have 2 hosted servers (windows 2003) each with 2 nic cards. I am trying to setup the cross connect between the two so I can sync data directly. Can anyone help with how to set this up or point me to some resource on how to do this?
The two servers...
I need to generate a report with the top 3 zip codes by Location. My tables are Location, Customer, and Address.
I have a Select statement like this:
Select l.name, a.zip, count(a.zip) as count
From location l
inner join customer c on c.locationid = location.id
inner join address a...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.