Forum Replies Created

Viewing 15 posts - 7,666 through 7,680 (of 15,381 total)

  • RE: AddWithValue issue - Update the current field content ASP.Net/SQL

    Honestly I think you are doing this the hard way. You should not store the total of your cart, you should instead calculate it based on the items in your...

  • RE: Delete Table Variable

    Rakesh.Chaudhary (7/8/2013)


    Hi,

    Thanks yes its working fine , I was doing some mistake last time..

    So now do you want to get rid of the cursor?

  • RE: syntax of building a hyperlink

    briancampbellmcad (7/8/2013)


    Thanks in advance for any help... I am trying to build a query that will have as one of its resulting columns a hyperlink built from a site name...

  • RE: Problem using date comparison in Dynamic SQL Please help

    You have some serious ' mismatches in your where clause.

    Try this:

    ' WHERE ' + @ArchiveSourceDateField + ' <= ''' + cast(datepart(mm, @ArchiveCutOffDate) as varchar) + '/' + cast(datepart(dd, @ArchiveCutOffDate) as...

  • RE: Running Total Query

    Take a look at this article. http://www.sqlservercentral.com/articles/T-SQL/68467/%5B/url%5D

    Make sure you follow the caveats if you decide to use this approach.

  • RE: Hierarchy repeating levels

    Hi and welcome to the forums. In order to help we will need a few things:

    1. Sample DDL in the form of CREATE TABLE statements

    2. Sample data in the form...

  • RE: SELECTING A CASE VALUE ???

    Not much in the way of details to work with here. I took a shot in the dark. See if this gets you close.

    select * from

    (

    select ROW_NUMBER() over(partition by...

  • RE: Suggestions about ERD needed

    You probably are not getting any replies because you have the rest of us at an extreme disadvantage here. We can't see your screen and we have no idea what...

  • RE: Delete Table Variable

    What Gail posted will delete all rows from your table variable.

    If you want to make your process a lot faster maybe you should consider getting rid of the cursor? Cursors...

  • RE: table creation on one table referenced by many tables

    Saujib (7/2/2013)


    thank you very much.

    What if, provider and service location address will change per claim.

    Or the user while creating the claim should have the ability to modify provider and...

  • RE: Put first line as column name

    ulisseslourenco (7/2/2013)


    Sean Lange (7/2/2013)


    ulisseslourenco (7/2/2013)


    Thanks for respond me.

    I have a question: Is allowed use exec statement into a function? I ask that because I have to return...

  • RE: Calculating date in time.

    f9c882q 61644 (7/2/2013)


    I really meant 120 days instead of 3 months.

    So the expiration data in your example would NOT show up because it is further than 120 days. However, the...

  • RE: table creation on one table referenced by many tables

    Saujib (7/2/2013)


    let me rephrase my requirement.

    User is creating a claim for a patient/member (patient address) and provider is doctor(doctor billing address) and service location (where patient was treated).

    address is common...

  • RE: Finding unused fields

    mcopa (7/2/2013)


    That was my fear. If you already have code that will do this that would be great!!!! FYI-they don't want to delete/drop anything. They are working...

  • RE: Finding unused fields

    What an awesome graphic and corresponding article Lowell. That closely mimics my gut feeling about nearly everything I have ever written. I guess that means that on average 45% of...

Viewing 15 posts - 7,666 through 7,680 (of 15,381 total)