Skip to main content

TableAdapter Configuration problem while attaching storedProcedure with temp table in Typed Dataset

TableAdapter Configuration problem while attaching storedProcedure with temp table  in Typed Dataset

We create typed dataset (.xsd) for reporting (crystal report), 

 If  i am binding stored procedure with simple select query then it will configure TableAdapter properly
and returns the data columns in the select query of stored procedure.
But the problem is that when we are returning the data from temporary table (#temp) from our stored procedure, then it will throw error message ( The wizard TableAdapter configuring error: 
Generating Select Statement problem
while selecting #temp table) as here #temp table is temporary table created to return result & after that table is destroyed.

So to over come this error (problem) just add following lines into your stored procedure before creating & selecting data from temporary table.

IF 1=0 BEGIN
SET FMTONLY OFF
END

these lines will remove the specified error.

Hope this will help you .....
Thank you..

Comments

Popular posts from this blog

Creating package in Oracle Database using Toad For Oracle

What are Packages in Oracle Database A package is  a group   of procedures, functions,  variables   and  SQL statements   created as a single unit. It is used to store together related objects. A package has two parts, Package  Specification  and Package Body.

Resolving 'Setup Account Privileges' error while installing SQL Server

A new installation of Microsoft SQL Server 2012 or Microsoft SQL Server 2008 R2 fails You see the following error message when you try to install a new instance of SQL Server 2012 or SQL Server 2008 R2: Rule "Setup account privileges" failed.

Creating Oracle stored Procedures using TOAD for Oracle

In a database management system, a  stored procedure  is a set of Structured Query Language (SQL) statements with an assigned name that's stored in the database in compiled form so that it can be shared by a number of programs. The use of  stored procedures  can be helpful in controlling  access to data, preserving  data integrity  and  improving  productivity.