thendrickson
Programmer
Hope I do not sound like an idiot but I do not seem to be finding what I need.
I created a view in a 7.31 Informix database to summararize
certain columns.
I now need to select the data from that view using a where clause.
Select * from vifxView where scode = 'ABC-123'
I need to create a procedure that receives the input and returns in the close vicinity of 359 records (or fewer)
I need to call this from SQL server using a linked server.
Performance is horrible enough so joining to the view from within SQL is not a good option. Nor is selecting from the Informix view and filling a SQL Server temp table
I need to return only the records meeting the where clause.
Very simple in SQL Server (perhaps because I have used that extensively), but I am missing a basic concept with Informix I am afraid
I created a view in a 7.31 Informix database to summararize
certain columns.
I now need to select the data from that view using a where clause.
Select * from vifxView where scode = 'ABC-123'
I need to create a procedure that receives the input and returns in the close vicinity of 359 records (or fewer)
I need to call this from SQL server using a linked server.
Performance is horrible enough so joining to the view from within SQL is not a good option. Nor is selecting from the Informix view and filling a SQL Server temp table
I need to return only the records meeting the where clause.
Very simple in SQL Server (perhaps because I have used that extensively), but I am missing a basic concept with Informix I am afraid