Viewing 15 posts - 7,666 through 7,680 (of 15,381 total)
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...
July 8, 2013 at 9:00 am
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?
July 8, 2013 at 8:19 am
briancampbellmcad (7/8/2013)
July 8, 2013 at 8:18 am
You have some serious ' mismatches in your where clause.
Try this:
' WHERE ' + @ArchiveSourceDateField + ' <= ''' + cast(datepart(mm, @ArchiveCutOffDate) as varchar) + '/' + cast(datepart(dd, @ArchiveCutOffDate) as...
July 8, 2013 at 8:17 am
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.
July 8, 2013 at 8:04 am
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...
July 8, 2013 at 8:01 am
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...
July 8, 2013 at 8:00 am
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...
July 8, 2013 at 7:40 am
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...
July 8, 2013 at 7:38 am
Saujib (7/2/2013)
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...
July 8, 2013 at 7:20 am
ulisseslourenco (7/2/2013)
Sean Lange (7/2/2013)
ulisseslourenco (7/2/2013)
I have a question: Is allowed use exec statement into a function? I ask that because I have to return...
July 2, 2013 at 3:26 pm
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...
July 2, 2013 at 3:22 pm
Saujib (7/2/2013)
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...
July 2, 2013 at 3:21 pm
mcopa (7/2/2013)
July 2, 2013 at 3:14 pm
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...
July 2, 2013 at 2:28 pm
Viewing 15 posts - 7,666 through 7,680 (of 15,381 total)