Archive
Posts Tagged ‘Informix’
Executing Informix DB Stored Procedure in SSRS
November 14, 2015
Leave a comment
Recently we got a requirement to pull the data from IBM Informix DB and prepare report using SSRS.
For who does not know what is Informix, refer here
Below are Stored Procedure details
Name: sp_getcustomersbycity
Description: Accepts date range and City codes as parameters and returns Customer result set.
Query Execution Syntax in SSRS:
{
call sp_getcustomersbycity(‘2015-09-30 20:00:00′,’2015-10-31 19:59:59′,’0′,’HYD,BLR’,null)
}
🙂
Categories: SSRS
Informix, SSRS, Stored Procedure