Viewing 15 posts - 1 through 15 (of 36 total)
CirquedeSQLeil (12/17/2009)
novice_coder (12/17/2009)
GilaMonster (12/17/2009)
novice_coder (12/17/2009)
We will probably have about 3-5 million records by the end of next year. I guess then I will have to think about partioning.
That's not...
December 17, 2009 at 12:45 pm
GilaMonster (12/17/2009)
novice_coder (12/17/2009)
We will probably have about 3-5 million records by the end of next year. I guess then I will have to think about partioning.
That's not a lot...
December 17, 2009 at 12:19 pm
Wandrag (12/16/2009)
novice_coder (12/16/2009)
I am a beginner at Database design and need some help in managing big data table in SQL Server 2008. Right now the database has about 20...
December 17, 2009 at 9:24 am
Bru Medishetty (12/16/2009)
What Apurva has suggested would be my suggestion, use database partitioning and have...
December 16, 2009 at 8:53 pm
Apurva (12/16/2009)
December 16, 2009 at 8:43 pm
Gianluca Sartori (8/11/2009)
Whats the reason for putting one filter in ON cluase and the other filter in WHERE clause? why not both in ON or both in WHERE?
If you...
August 11, 2009 at 1:53 pm
novice_coder (8/11/2009)
Lynn Pettis (8/11/2009)
You could use isnull(tb.ID,0), but that still doesn't match with anything in your sample data.
ohhh I didnt realise that changing NULL to 0 wont help either. so...
August 11, 2009 at 1:35 pm
Lynn Pettis (8/11/2009)
You could use isnull(tb.ID,0), but that still doesn't match with anything in your sample data.
ohhh I didnt realise that changing NULL to 0 wont help either. so what...
August 11, 2009 at 1:24 pm
Lynn Pettis (8/11/2009)
select
*
from
dbo.TableA ta
...
August 11, 2009 at 11:20 am
Lynn Pettis (8/11/2009)
August 11, 2009 at 10:47 am
Lynn Pettis (8/11/2009)
novice_coder (8/11/2009)
Gianluca Sartori (8/11/2009)
SELECT *
FROM TableA
LEFT JOIN TableB
ON...
August 11, 2009 at 10:00 am
Gianluca Sartori (8/11/2009)
SELECT *
FROM TableA
LEFT JOIN TableB
ON (TableA.ID1=TableB.ID1 AND TableA.ID2=TableB.ID2...
August 11, 2009 at 9:04 am
novice_coder (8/11/2009)
I have 2 tables TableA and TableB. I want to display all the records of TableA that are not present in TableB.
General syntax to do this is:
SELECT *
FROM TableA
LEFT...
August 11, 2009 at 8:59 am
novice_coder (8/6/2009)
Matt Wilhoite (8/6/2009)
//EDIT...
August 6, 2009 at 8:59 am
Viewing 15 posts - 1 through 15 (of 36 total)