473,799 Members | 2,926 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

asp.net report DbSource

I'm running into a frustrating problem.

ASP.NET 2.0 web application, against SQL'05, I'm trying to run a report
against a 'table provider' (query) that excutes well within SQL MGT studio,
and within the data environment.

However, when the report is executed in a web report viewer, the report
engine comes back with:

An error has occurred during report processing.
Exception has been thrown by the target of an invocation.
Failed to enable constraints. One or more rows contain values violating
non-null, unique, or foreign-key constraints.

Ideas?

Jul 17 '06 #1
5 3354
Hi David,

The query is producing data of a format that is inconsistent with the schema
for the DataTable in which it is being stored for the report.

Check that the DataTable schema allows nulls for nullable columns in the
query output and make sure that your query returns enough result sets and
records
to fill all related tables in the DataSet so that foreign key constraints
are not violated, or just set the DataSet.Enforce Constraints property to
false.

- Dave Sexton

"David L." <Da****@discuss ions.microsoft. comwrote in message
news:80******** *************** ***********@mic rosoft.com...
I'm running into a frustrating problem.

ASP.NET 2.0 web application, against SQL'05, I'm trying to run a report
against a 'table provider' (query) that excutes well within SQL MGT
studio,
and within the data environment.

However, when the report is executed in a web report viewer, the report
engine comes back with:

An error has occurred during report processing.
Exception has been thrown by the target of an invocation.
Failed to enable constraints. One or more rows contain values violating
non-null, unique, or foreign-key constraints.

Ideas?

Jul 19 '06 #2
Hi Dave

The same query performs just fine in any other consumer. I was able to use
the exact same query with SQL'05 reprting services, and with an asp grid. The
only one breaking is the report viewer.

Also, I was unable to find the location where I can apply the
DataSet.Enforce Constraints in code, can you give me a pointer?

Thanks

"Dave Sexton" wrote:
Hi David,

The query is producing data of a format that is inconsistent with the schema
for the DataTable in which it is being stored for the report.

Check that the DataTable schema allows nulls for nullable columns in the
query output and make sure that your query returns enough result sets and
records
to fill all related tables in the DataSet so that foreign key constraints
are not violated, or just set the DataSet.Enforce Constraints property to
false.

- Dave Sexton

"David L." <Da****@discuss ions.microsoft. comwrote in message
news:80******** *************** ***********@mic rosoft.com...
I'm running into a frustrating problem.

ASP.NET 2.0 web application, against SQL'05, I'm trying to run a report
against a 'table provider' (query) that excutes well within SQL MGT
studio,
and within the data environment.

However, when the report is executed in a web report viewer, the report
engine comes back with:

An error has occurred during report processing.
Exception has been thrown by the target of an invocation.
Failed to enable constraints. One or more rows contain values violating
non-null, unique, or foreign-key constraints.

Ideas?


Jul 19 '06 #3
Hi David,

Since you can't find the DataSet I must assume that you have configured a
strong-Typed DataSet and associated its TableAdapter with an
ObjectDataSourc e for your report, correct?

Unfortunately you don't have access to the underlying DataSet until after it
has been created and filled. Your best bet is to try to narrow down which
DataColumn is causing the trouble and fix the schema.

Another option is to bind the ObjectDataSourc e to a DataSet and fill the
DataSet in your code-beside file. This way, you can set EnforceConstrai nts
to true, although I really do think you should just fix the schema instead.

- Dave Sexton

"David L." <Da****@discuss ions.microsoft. comwrote in message
news:FC******** *************** ***********@mic rosoft.com...
Hi Dave

The same query performs just fine in any other consumer. I was able to use
the exact same query with SQL'05 reprting services, and with an asp grid.
The
only one breaking is the report viewer.

Also, I was unable to find the location where I can apply the
DataSet.Enforce Constraints in code, can you give me a pointer?

Thanks

"Dave Sexton" wrote:
>Hi David,

The query is producing data of a format that is inconsistent with the
schema
for the DataTable in which it is being stored for the report.

Check that the DataTable schema allows nulls for nullable columns in the
query output and make sure that your query returns enough result sets and
records
to fill all related tables in the DataSet so that foreign key constraints
are not violated, or just set the DataSet.Enforce Constraints property to
false.

- Dave Sexton

"David L." <Da****@discuss ions.microsoft. comwrote in message
news:80******* *************** ************@mi crosoft.com...
I'm running into a frustrating problem.

ASP.NET 2.0 web application, against SQL'05, I'm trying to run a report
against a 'table provider' (query) that excutes well within SQL MGT
studio,
and within the data environment.

However, when the report is executed in a web report viewer, the report
engine comes back with:

An error has occurred during report processing.
Exception has been thrown by the target of an invocation.
Failed to enable constraints. One or more rows contain values violating
non-null, unique, or foreign-key constraints.

Ideas?



Jul 19 '06 #4
Hi Dave

It's still odd to me that the table adapter fills a grid without a murmur
and failes on the report. And, the base query is used by SQL'05 reporting
services as is without any issues. I believe that there is a bug in the
reporting engine, I wish MS will step in here.

See below

"Dave Sexton" wrote:
Hi David,

Since you can't find the DataSet I must assume that you have configured a
strong-Typed DataSet and associated its TableAdapter with an
ObjectDataSourc e for your report, correct?
yes
Unfortunately you don't have access to the underlying DataSet until after it
has been created and filled. Your best bet is to try to narrow down which
DataColumn is causing the trouble and fix the schema.
that's the part that stumps me, I looked at the data, there is no issue of
null values, even though, the query does create duplicates of a primary key
from a master list.
Another option is to bind the ObjectDataSourc e to a DataSet and fill the
DataSet in your code-beside file. This way, you can set EnforceConstrai nts
to true, although I really do think you should just fix the schema instead.
Thanks, I'll keep this in mind.
- Dave Sexton

"David L." <Da****@discuss ions.microsoft. comwrote in message
news:FC******** *************** ***********@mic rosoft.com...
Hi Dave

The same query performs just fine in any other consumer. I was able to use
the exact same query with SQL'05 reprting services, and with an asp grid.
The
only one breaking is the report viewer.

Also, I was unable to find the location where I can apply the
DataSet.Enforce Constraints in code, can you give me a pointer?

Thanks

"Dave Sexton" wrote:
Hi David,

The query is producing data of a format that is inconsistent with the
schema
for the DataTable in which it is being stored for the report.

Check that the DataTable schema allows nulls for nullable columns in the
query output and make sure that your query returns enough result sets and
records
to fill all related tables in the DataSet so that foreign key constraints
are not violated, or just set the DataSet.Enforce Constraints property to
false.

- Dave Sexton

"David L." <Da****@discuss ions.microsoft. comwrote in message
news:80******** *************** ***********@mic rosoft.com...
I'm running into a frustrating problem.

ASP.NET 2.0 web application, against SQL'05, I'm trying to run a report
against a 'table provider' (query) that excutes well within SQL MGT
studio,
and within the data environment.

However, when the report is executed in a web report viewer, the report
engine comes back with:

An error has occurred during report processing.
Exception has been thrown by the target of an invocation.
Failed to enable constraints. One or more rows contain values violating
non-null, unique, or foreign-key constraints.

Ideas?



Jul 19 '06 #5
Hi David,
that's the part that stumps me, I looked at the data, there is no issue of
null values, even though, the query does create duplicates of a primary
key
from a master list.
Well the error is definitely being thrown by the DataSet although it might
not be specific to null values. Is there more than one DataTable in your
DataSet with DataRelations that provide foreign-key constraints? As a
simple test try removing those DataTables from the DataSet that are not
being used in the report.

Duplicate primary keys could very well be the issue here as well if you have
defined a unique constraint on your key column by setting Unique to true in
the .xsd designer or setting the key column as the primary key. Removing
those constraints, if they exist, might solve your problem although you
should probably make a new schema for your report data void of any
constraints that might be causing the error, not only as a test but for
runtime as well.

- Dave Sexton

"David L." <Da****@discuss ions.microsoft. comwrote in message
news:8D******** *************** ***********@mic rosoft.com...
Hi Dave

It's still odd to me that the table adapter fills a grid without a murmur
and failes on the report. And, the base query is used by SQL'05 reporting
services as is without any issues. I believe that there is a bug in the
reporting engine, I wish MS will step in here.

See below

"Dave Sexton" wrote:
>Hi David,

Since you can't find the DataSet I must assume that you have configured a
strong-Typed DataSet and associated its TableAdapter with an
ObjectDataSour ce for your report, correct?

yes
>Unfortunatel y you don't have access to the underlying DataSet until after
it
has been created and filled. Your best bet is to try to narrow down
which
DataColumn is causing the trouble and fix the schema.

that's the part that stumps me, I looked at the data, there is no issue of
null values, even though, the query does create duplicates of a primary
key
from a master list.
>Another option is to bind the ObjectDataSourc e to a DataSet and fill the
DataSet in your code-beside file. This way, you can set
EnforceConstra ints
to true, although I really do think you should just fix the schema
instead.

Thanks, I'll keep this in mind.
>- Dave Sexton

"David L." <Da****@discuss ions.microsoft. comwrote in message
news:FC******* *************** ************@mi crosoft.com...
Hi Dave

The same query performs just fine in any other consumer. I was able to
use
the exact same query with SQL'05 reprting services, and with an asp
grid.
The
only one breaking is the report viewer.

Also, I was unable to find the location where I can apply the
DataSet.Enforce Constraints in code, can you give me a pointer?

Thanks

"Dave Sexton" wrote:

Hi David,

The query is producing data of a format that is inconsistent with the
schema
for the DataTable in which it is being stored for the report.

Check that the DataTable schema allows nulls for nullable columns in
the
query output and make sure that your query returns enough result sets
and
records
to fill all related tables in the DataSet so that foreign key
constraints
are not violated, or just set the DataSet.Enforce Constraints property
to
false.

- Dave Sexton

"David L." <Da****@discuss ions.microsoft. comwrote in message
news:80******* *************** ************@mi crosoft.com...
I'm running into a frustrating problem.

ASP.NET 2.0 web application, against SQL'05, I'm trying to run a
report
against a 'table provider' (query) that excutes well within SQL MGT
studio,
and within the data environment.

However, when the report is executed in a web report viewer, the
report
engine comes back with:

An error has occurred during report processing.
Exception has been thrown by the target of an invocation.
Failed to enable constraints. One or more rows contain values
violating
non-null, unique, or foreign-key constraints.

Ideas?




Jul 19 '06 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
3717
by: CSDunn | last post by:
Hello, I have a situation with MS Access 2000 in which I need to display report data in spreadsheet orientation (much like a datasheet view for a form). If you think of the report in terms of what a spreadsheet might show, the column names will actually be dynamic, based on data from a SQL Server 2000 database. The row data will also come from the same database. So in this case, I will have a main report and a subreport. I've already tried...
1
17681
by: Nathan Bloomfield | last post by:
Does anyone know if there is any documentation which relates to Access2k + ? or can anyone help adjust the code? I am having trouble converting the DAO references. TITLE :INF: How to Create a Dynamic Crosstab Report PRODUCT :Microsoft Access PROD/VER:1.00 1.10 OPER/SYS:WINDOWS
6
3683
by: Bob Alston | last post by:
I am looking for Access reporting add-in that would be easy to use by end users. My key focus is on selection criteria. I am very happy with the Access report writer capabilities. As far as development of reports, it is certainly fine in my book. But for end-users, with little experience or training, it would be nice to have an easy way to handle various selection criteria, perhaps with relatively stock reports. I see easy to use by...
1
16391
by: lorirobn | last post by:
Hi, I have a report that works just fine. Now I would like to add the capability to choose selection criteria to limit what is displayed. I created several reports that do this, but they used VBA to create SQL statements, then apply them. Now that I have been using Access/VBA for awhile, I am wondering if there is a simpler way to do this than coding these long sql statements. My report has a query as its record source. Can I just...
1
7516
by: monskie | last post by:
Hello to all, I have a problem which could be trivial to you guys. This concerns opening several crystal reports on the a crystal viewer on an ASPX page by calling window.open. My application. 1.) 2 webforms - 1 main web form that filters that dataset - 1 reportviewer web form that displays the filtered dataset.
6
9432
by: Dave | last post by:
On my form I have combo boxes. These combo boxes, after updating them, populate respective listboxes that are located below the combo boxes on the same form. I am trying to use a "generate report" button located on my form to print all of the list box values (that have been updated via selection from combo boxes) from the form to the report. I've tried using a macro with the code: Macro Name: cmdGenerateReport : On Click Action:...
3
18721
by: creative1 | last post by:
Here is how you create a complex data report that involves parent and child commands and you can update information at runtime. Its pretty straight forward to work with simple queries; however, working with complex reports is tricky Assumption: Reader of this article have basic knowledge of creating data reports. Creating a Parent-Child Command and create a DataReport Suppose we have a database called company with two tables ...
12
3544
by: Studiotyphoon | last post by:
Hi, I have report which I need to print 3 times, but would like to have the following headings Customer Copy - Print 1 Accounts Copy - Print 2 File Copy -Print 3 I created a macro to print the report three times, but do not know how
11
7342
by: Gord | last post by:
When I open a certain report, it runs some code that generates the records that will be displayed in that report. This works fine. When I go to print preview the report it appears that the code is run again? This is causing certain error problems. 1 Why does the code run for a print preview when the report already exists? 2 What command do I use in code to find out if a report (or any other object for that matter) is already...
0
9687
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9541
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10482
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10251
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10225
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
1
7564
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6805
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5463
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
3
2938
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.