Viewing 15 posts - 4,231 through 4,245 (of 8,731 total)
Change the FAST_FORWARD option to FORWARD_ONLY STATIC.
September 10, 2015 at 11:19 am
Ed Wagner (9/10/2015)
BWFC (9/10/2015)
Eirikur Eiriksson (9/10/2015)
Stuart Davies (9/10/2015)
Ed Wagner (9/9/2015)
djj (9/9/2015)
Ed Wagner (9/9/2015)
DonlSimpson (9/9/2015)
Luis Cazares (9/9/2015)
Ed Wagner (9/9/2015)
crookj (9/9/2015)
Jim_K (9/9/2015)
ZZartin (9/9/2015)
eccentricDBA (9/9/2015)
BWFC (9/9/2015)
Eirikur Eiriksson (9/9/2015)
whereisSQL? (9/9/2015)
ClassyGlossy
Magazine
cartridge
Cartilage
Shark
Jaws
Sea
World
Globe
Travel
Lodge
Cast Iron
guarantee
Warranty
Extended
Expanded
Universe
September 10, 2015 at 9:44 am
Your WHERE clauses are converting your LEFT JOINs on Status and Borrower into INNER JOINs.
September 10, 2015 at 9:32 am
I would initially change this:
FROM Dbo.[VDSMeetingInformation] VMI
INNER JOIN dbo.[DelimitedSplit8K](@fund_id,',') fnsplt ON VMI.FundID =(CASE WHEN fnsplt.item IS NULL THEN VMI.FundID ELSE fnsplt.item END)
WHERE VMI.customerID = @customer_id
AND VMI.MeetingDate BETWEEN @Start_date AND...
September 10, 2015 at 9:27 am
Did you considered Koen's suggestion?
I reformatted your conditions to make it clear what you're doing.
IF NOT EXISTS (
SELECT...
September 10, 2015 at 9:16 am
LoudClear (9/10/2015)
ChrisM@Work (9/10/2015)
http://sqlblog.com/blogs/aaron_bertrand/archive/2009/10/06/bad-habits-to-kick-order-by-ordinal.aspx
Yes, my argument has heretofore been
From above article: "Invariably, someone at some point is going to come in and add a column, remove a column, or change...
September 10, 2015 at 8:07 am
Is there any difference when using clustered indexes instead of heaps?
September 10, 2015 at 7:57 am
The underscore is a single character wildcard.
You need to change your condition to one of these options:
select distinct specialty
FROM [dbo].[Import_ClaimData]
where specialty like '%[_]%'
order by 1 desc
select distinct specialty
FROM [dbo].[Import_ClaimData]...
September 9, 2015 at 1:43 pm
Sean Lange (9/9/2015)
sharonsql2013 (9/9/2015)
3 columns 1 row
You know that when you don't bother to put in any effort into providing details it ends up coming across as though you want...
September 9, 2015 at 1:03 pm
Do you realize that the STUFF function is not the one concatenating the rows? The stuff function is only replacing the first character (a comma) with an empty string.
Try understanding...
September 9, 2015 at 12:54 pm
This is a violation to the first normal form. Avoid storing several concatenated values and use an appropriate design for this.
In order to be able to do what you want,...
September 9, 2015 at 12:02 pm
My crystal ball is showing a query like this:
WITH CTE AS(
SELECT ROW_NUMBER() OVER( PARTITION BY Patient
...
September 9, 2015 at 11:09 am
cory.bullard76 (9/9/2015)
September 9, 2015 at 10:12 am
Just add more conditions:
case when inscomp.payor = 'COMMERCIAL' then INSCOMP.BINNO
when inscomp.payor = 'Grant' then INSCOMP.BINNO
when inscomp.payor = 'Part D' then...
September 9, 2015 at 9:38 am
Ed Wagner (9/9/2015)
crookj (9/9/2015)
Jim_K (9/9/2015)
ZZartin (9/9/2015)
eccentricDBA (9/9/2015)
BWFC (9/9/2015)
Eirikur Eiriksson (9/9/2015)
whereisSQL? (9/9/2015)
ClassyGlossy
Magazine
cartridge
Cartilage
Shark
Jaws
Sea
World
September 9, 2015 at 9:35 am
Viewing 15 posts - 4,231 through 4,245 (of 8,731 total)