Viewing 15 posts - 151 through 165 (of 286 total)
Alan Spillert (7/19/2013)
Yes, data will be divided, but IO activity will also hit all the drives. My attempt is to optimize application performance by spreading out the IO activity.
If...
July 22, 2013 at 1:07 pm
Alan Spillert (7/18/2013)
July 19, 2013 at 2:04 pm
riya_dave (7/19/2013)
i need while loop
Is it because you don't know how to do it without a loop?
July 19, 2013 at 1:51 pm
Voide (7/11/2013)
Have you tried rebooting?
PHYData DBA
"I feel sick what should I do?"
Have you tried to use a scalpel? 🙂
July 11, 2013 at 4:33 pm
It depends.
If you have a query which reads 1 record from that table each time you run it, but it runs 35K per minute, then it's beter to create an...
July 11, 2013 at 4:11 pm
brendan woulfe (7/8/2013)
July 9, 2013 at 11:14 am
Oracle765 (6/18/2013)
Hi allyes i agree, i am not sure about the left out join thats what has confused me a bit.
Read this http://msdn.microsoft.com/en-us/library/ms191472(v=sql.105).aspx
June 19, 2013 at 1:45 pm
Statistics cannot be perfect, doesn't matter if you update it with fullscan or sample 1%. It should be better with more sample data, but it's not guaranteed. There are a...
June 12, 2013 at 10:49 am
Denise McMillan (6/10/2013)
proc_id dtime proc_num result
70360 ...
June 11, 2013 at 5:57 pm
ChrisM@Work (6/7/2013)
UPDATE D SET
Track_ID = P.Track_ID,
Territory_ID = P.Territory_ID,
Major = P.Major
FROM Staging.Track_Play D
INNER JOIN Staging.Track_Mapping P
ON P.ISRC = D.ISRC_Code
AND P.Event_Date...
June 7, 2013 at 2:55 pm
GilaMonster (6/7/2013)
bslchennai (6/6/2013)
Yes, i have to take care of all null values because in our database we should not insert null values on indexed columns.
Why not? What's the problem...
June 7, 2013 at 2:49 pm
CptCrusty1 (6/6/2013)
The problem now is that when the folder with the text files has the newest ("Im") and the oldest ("42")
How existence of different files in a folder can impact...
June 7, 2013 at 2:41 pm
I'm using this one. Note that size is in MB.
SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED
SET LOCK_TIMEOUT 10000
DECLARE @PageSize int
SET @PageSize = 8
SELECT
tbl.object_id,
CASE WHEN SUBSTRING(OBJECT_NAME(tbl.object_id),1,1) =...
June 7, 2013 at 2:17 pm
vs.satheesh (6/7/2013)
I am give select * means its retrieving with in two seconds.But I am specify column...
June 7, 2013 at 1:42 pm
Viewing 15 posts - 151 through 165 (of 286 total)