Viewing 15 posts - 6,526 through 6,540 (of 7,600 total)
Ouch -- partitioning would be ideal for that situation.
Depending on exact circumstances, you might be able to change the current table to be a view that's defined as a concatenation...
June 21, 2013 at 3:15 pm
While performance could be adversely affected, possibly severely, the really big problem, at least for a DBA, with data and logs for the same db on the same drive is...
June 21, 2013 at 3:07 pm
You could implement some type of SNAPSHOT isolation level. That will prevent the types of errors you get with (NOLOCK) and prevent readers from being blocked by writers.
See Books...
June 21, 2013 at 2:59 pm
Lynn Pettis (6/12/2013)
mmartin1 (6/12/2013)
gmac 41947 (3/1/2013)
Hi,I use
DATEPART(month, myDate)or
MONTH(myDate)the resut is: 2 (if myDate is 2013.02.03). I would like return: 02
Do you have any solution for this?
Thans!
try this
declare @MyDate datetime
set...
June 12, 2013 at 2:41 pm
WHERE
',' + column + ',' LIKE '%[^a-z0-9]LC[^a-z0-9]%'
Add other char(s) if/as needed; for example, if you prefer that underscore, such as in "LC_AXIS", not be a "word"...
June 12, 2013 at 1:57 pm
Evil Kraig F (6/6/2013)
ScottPletcher (6/6/2013)
At...
June 7, 2013 at 9:26 am
Evil Kraig F (6/6/2013)
ScottPletcher (6/6/2013)
Evil Kraig F (6/6/2013)
ScottPletcher (6/6/2013)
Dird (6/6/2013)
Sean Lange (6/6/2013)
MID?
Yeah, the Q as a whole is a bit meh. I assume he means AVG (to go with the...
June 6, 2013 at 3:54 pm
Evil Kraig F (6/6/2013)
ScottPletcher (6/6/2013)
Dird (6/6/2013)
Sean Lange (6/6/2013)
MID?
Yeah, the Q as a whole is a bit meh. I assume he means AVG (to go with the MIN/MAX functions) which I...
June 6, 2013 at 3:43 pm
Dird (6/6/2013)
Sean Lange (6/6/2013)
MID?
Yeah, the Q as a whole is a bit meh. I assume he means AVG (to go with the MIN/MAX functions) which I don't see as a...
June 6, 2013 at 3:33 pm
Sean Lange (6/6/2013)
ScottPletcher (6/6/2013)
Given table1 with columns "id" and "value", where each id has 1 to 3 values/rows in the table:
Describe the essentials of a single query (no subquery,...
June 6, 2013 at 3:29 pm
Ask them::
Given table1 with columns "id" and "value", where each id has 1 to 3 values/rows in the table:
Describe the essentials of a single query (no subquery, CTE, etc.) to...
June 6, 2013 at 3:01 pm
Keep in mind that float is an imprecise data type, and the value actually stored in the table may not be exactly the same as the value that was inserted.
May 30, 2013 at 3:49 pm
GilaMonster (5/22/2013)
ScottPletcher (5/22/2013)
It wasn't "out of context" -- you made an absolute statement, which thus applies to any context.
An absolute statement that you chose to ignore parts of.
I said shrink...
May 22, 2013 at 2:30 pm
GilaMonster (5/22/2013)
ScottPletcher (5/22/2013)
GilaMonster (5/21/2013)
Shrink alone can't speed up a query.Isn't that an overly broad assertion?
Only when you quote me out of context.
If, for the sake of argument, some/all of the...
May 22, 2013 at 2:15 pm
Purely fyi, I personally think a cross apply that names the value being used makes the code much easier to follow and easier to change later. For example:
Select
*
from...
May 22, 2013 at 12:57 pm
Viewing 15 posts - 6,526 through 6,540 (of 7,600 total)