Viewing 15 posts - 526 through 540 (of 18,926 total)
ramjohn8 (12/7/2011)
December 7, 2011 at 9:53 am
matt.newman (12/7/2011)
SqlSpider... (12/6/2011)
Hi Guys,Any one please let me know which one is better in memory utilizations in sql server 2005
Thanks in Advance....
How are you looking to "utilize" memory?
Are you wanting...
December 7, 2011 at 9:52 am
From 40 hours course to top 1-5% of the field took me 10 - 25K hours.
Best source is to read books, read questions here and try to answer in your...
December 7, 2011 at 9:41 am
This is for dependency tracking.
I wouldn't waste any time on this. No impact at all.
December 7, 2011 at 9:34 am
halifaxdal (12/7/2011)
Lynn Pettis (12/6/2011)
Ninja - You'll have to show me what you were trying to accomplish, just not clicking today.
Please don't be tough to Ninja, maybe it was a tough...
December 7, 2011 at 9:33 am
;
WITH CTE (PetID, PetName, DType, DDate, RN)
AS
(
SELECT PetID
, PetName
, DType
, DDate
, ROW_NUMBER() OVER (PARTITION BY PetID, DType ORDER BY DDATE) AS RN
FROM @Pet p1
INNER JOIN @PetDetail p2 ON p1.PetID=p2.PetDetailID
)
--SELECT...
December 7, 2011 at 9:31 am
1 little thing. When you want to pivot data (multiple rows into a single one), you need to do something like this =>
SELECT PetID
, PetName
, Date1 = MAX(CASE WHEN...
December 7, 2011 at 9:26 am
Fraggle-805517 (12/7/2011)
Thanks Ninja. And thanks for mentioning the performance hit. I am sure it will be an awesome one over 120m some odd records. 🙁Tenagra
In that case...
December 7, 2011 at 9:19 am
tony.aguanno (12/7/2011)
sorry but change what to 'to'
Change single quotes (') to double quotes (")
December 7, 2011 at 9:18 am
SELECT DATALENGTH(BigAssColumn) AS BytesUsed FROM dbo.PoorTable
Of course, this will scan the whole table. So however many GBs you have in there it'll be read from disk (assuming not already...
December 7, 2011 at 9:09 am
Pitfalls of Nolock (readuncommitted).
http://sqlblog.com/blogs/andrew_kelly/archive/2009/04/10/how-dirty-are-your-reads.aspx
December 7, 2011 at 9:07 am
Looks correct (assuming SSRS).
What's the issue?
December 7, 2011 at 9:05 am
SQLRNNR (12/7/2011)
mutiny
How can you do that when you're the boss???
December 7, 2011 at 9:02 am
Dev (12/7/2011)
December 7, 2011 at 9:00 am
Viewing 15 posts - 526 through 540 (of 18,926 total)