Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6380115
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T02:13:33+00:00 2026-05-25T02:13:33+00:00

I have a table in Sql Server that contain an int field price that

  • 0

I have a table in Sql Server that contain an int field price that allow nulls.
I have created the following stored procedure:

CREATE PROCEDURE [dbo].[proc_test]
AS
    select a.id, a.product, case when a.price is null then 0 else a.price end
    from tblOne a
    ...

I have also created a linq to sql file that uses proc_test.

The problem is that auto generated linq to sql code in: designer.cs has a nullable price variable and Crystal Reports dosen’t allow nullable variables.

PS: I’m not allowed to change the structure of tblOne.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T02:13:34+00:00Added an answer on May 25, 2026 at 2:13 am

    Use the IsNull() function instead of the case expression. Therefore change your stored procedure to be:

    CREATE PROCEDURE [dbo].[proc_test]
    AS
        select a.id, a.product, isnull(a.price, 0)
        from tblOne a
        ...
    

    Note:

    Coalesce is not suitable in this situation:

    An expression involving ISNULL with non-null parameters is considered
    to be NOT NULL, while expressions involving COALESCE with non-null
    parameters is considered to be NULL. In SQL Server

    http://msdn.microsoft.com/en-us/library/ms190349.aspx

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an SQL Server 2005 table that has a varchar(250) field which contains
I have a table in a sql server 2008 database that contains bunch of
I have a table which contains my ads that can be searched in sql-server-2008.
I have a table in SQL server that has the normal tree structure of
I have a History Table in SQL Server that basically tracks an item through
I have a table on SQL Server 2005 that was about 4gb in size.
Ok I have a table in my SQL Server database that stores comments. My
I have an user defined table function in SQL Server that aggregate data from
I have a table in a SQL Server 2005 database with a trigger that
I have a junction table in my SQL Server 2005 database that consist of

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.