Viewing 5 posts - 1 through 5 (of 5 total)
I am suggesting this as per my understanding of the problem
Write a stored procedure or a query inner joining all the three tables OrderHeader, OrderDetails and Orderchoices. Bind the stored...
July 30, 2007 at 7:41 am
You can also use ISNULL check for the datecolumns :
ISNULL(dbo.flightinfo.end_date,'') = ISNULL(b.end_date,'')
thereby avoiding an additional condition as
OR
(
dbo.flightinfo.end_date IS NULL AND b.end_date IS NULL
)
July 30, 2007 at 7:30 am
While the linked server is the best option for that, do not forget to give the credentials on which the linkedserver should run which otherwise would give you a security exception....
July 30, 2007 at 7:14 am
Did u set the intergrated security on in the datasource property?
June 25, 2007 at 7:11 am
Yeah,
This is a really good article and it reflects the thoughts going on in the minds of developers who have been working day and night on projects which ultimately are...
April 30, 2007 at 7:13 am
Viewing 5 posts - 1 through 5 (of 5 total)