I'm in need of guidance, I'm trying to query data and do a join to display that data as one, but from two different SQL servers.
One part of the info is all subscriber information, the other server contains the e-mail userid and pw credentials.
With out going into to much detail we use ldap for e-mail correspondence. Hence the SQL backend for credential validation.
subscriber SQLserver
use rrdb
go
declare @sub subnumber
select @sub = '%########%'
select * from subsinfo where subnumber like rtrim(ltrim(@sub))
select * from subservices where subnumber like rtrim(ltrim(@sub))
select * from subtier where subnumber like rtrim(ltrim(@sub))
The e-mail info info that I'm trying to join is
e-mail SQL server
select * from object_attributes where vc_val=###
I'm sure this is very simple for someone that is well versed in SQL.
All assistance is appreciated.
Thanks,
Marty
One part of the info is all subscriber information, the other server contains the e-mail userid and pw credentials.
With out going into to much detail we use ldap for e-mail correspondence. Hence the SQL backend for credential validation.
subscriber SQLserver
use rrdb
go
declare @sub subnumber
select @sub = '%########%'
select * from subsinfo where subnumber like rtrim(ltrim(@sub))
select * from subservices where subnumber like rtrim(ltrim(@sub))
select * from subtier where subnumber like rtrim(ltrim(@sub))
The e-mail info info that I'm trying to join is
e-mail SQL server
select * from object_attributes where vc_val=###
I'm sure this is very simple for someone that is well versed in SQL.
All assistance is appreciated.
Thanks,
Marty