I want to use an Openquery using the below select Statement. Also would openquery be faster than the below select statement. LAcalphoto is a linked server.
select * FROM LAcalphoto.DOJviews.dbo.DOB
where timestamp > (select timestamp from Los_Angeles_CALPHOTO.dbo.TIMESTAMPTABLE)
select * FROM LAcalphoto.DOJviews.dbo.DOB
where timestamp > (select timestamp from Los_Angeles_CALPHOTO.dbo.TIMESTAMPTABLE)